Home
last modified time | relevance | path

Searched refs:formatlen (Results 1 – 25 of 83) sorted by relevance

1234

/dports/www/mod_php81/php-8.1.1/ext/standard/
H A Dpack.c238 size_t formatlen; in PHP_FUNCTION() local
246 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
261 if (i < formatlen) { in PHP_FUNCTION()
711 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
723 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
739 while (formatlen-- > 0) { in PHP_FUNCTION()
748 if (formatlen > 0) { in PHP_FUNCTION()
756 formatlen--; in PHP_FUNCTION()
761 formatlen--; in PHP_FUNCTION()
770 formatlen--; in PHP_FUNCTION()
[all …]
/dports/lang/php80/php-8.0.15/ext/standard/
H A Dpack.c225 size_t formatlen; in PHP_FUNCTION() local
233 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
248 if (i < formatlen) { in PHP_FUNCTION()
715 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
727 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
743 while (formatlen-- > 0) { in PHP_FUNCTION()
752 if (formatlen > 0) { in PHP_FUNCTION()
760 formatlen--; in PHP_FUNCTION()
765 formatlen--; in PHP_FUNCTION()
774 formatlen--; in PHP_FUNCTION()
[all …]
/dports/lang/php73/php-7.3.33/ext/standard/
H A Dpack.c235 size_t formatlen; in PHP_FUNCTION() local
243 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
258 if (i < formatlen) { in PHP_FUNCTION()
722 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
734 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
749 while (formatlen-- > 0) { in PHP_FUNCTION()
758 if (formatlen > 0) { in PHP_FUNCTION()
766 formatlen--; in PHP_FUNCTION()
771 formatlen--; in PHP_FUNCTION()
780 formatlen--; in PHP_FUNCTION()
[all …]
/dports/lang/php74/php-7.4.27/ext/standard/
H A Dpack.c235 size_t formatlen; in PHP_FUNCTION() local
243 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
258 if (i < formatlen) { in PHP_FUNCTION()
727 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
739 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
754 while (formatlen-- > 0) { in PHP_FUNCTION()
763 if (formatlen > 0) { in PHP_FUNCTION()
771 formatlen--; in PHP_FUNCTION()
776 formatlen--; in PHP_FUNCTION()
785 formatlen--; in PHP_FUNCTION()
[all …]
/dports/lang/php81/php-8.1.1/ext/standard/
H A Dpack.c238 size_t formatlen; in PHP_FUNCTION() local
246 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
261 if (i < formatlen) { in PHP_FUNCTION()
711 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
723 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
739 while (formatlen-- > 0) { in PHP_FUNCTION()
748 if (formatlen > 0) { in PHP_FUNCTION()
756 formatlen--; in PHP_FUNCTION()
761 formatlen--; in PHP_FUNCTION()
770 formatlen--; in PHP_FUNCTION()
[all …]
/dports/www/mod_php73/php-7.3.33/ext/standard/
H A Dpack.c235 size_t formatlen; in PHP_FUNCTION() local
243 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
258 if (i < formatlen) { in PHP_FUNCTION()
722 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
734 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
749 while (formatlen-- > 0) { in PHP_FUNCTION()
758 if (formatlen > 0) { in PHP_FUNCTION()
766 formatlen--; in PHP_FUNCTION()
771 formatlen--; in PHP_FUNCTION()
780 formatlen--; in PHP_FUNCTION()
[all …]
/dports/www/mod_php74/php-7.4.27/ext/standard/
H A Dpack.c235 size_t formatlen; in PHP_FUNCTION() local
243 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
258 if (i < formatlen) { in PHP_FUNCTION()
727 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
739 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
754 while (formatlen-- > 0) { in PHP_FUNCTION()
763 if (formatlen > 0) { in PHP_FUNCTION()
771 formatlen--; in PHP_FUNCTION()
776 formatlen--; in PHP_FUNCTION()
785 formatlen--; in PHP_FUNCTION()
[all …]
/dports/www/mod_php80/php-8.0.15/ext/standard/
H A Dpack.c225 size_t formatlen; in PHP_FUNCTION() local
233 Z_PARAM_STRING(format, formatlen) in PHP_FUNCTION()
248 if (i < formatlen) { in PHP_FUNCTION()
715 zend_long formatlen, inputpos, inputlen; in PHP_FUNCTION() local
727 formatlen = ZSTR_LEN(formatarg); in PHP_FUNCTION()
743 while (formatlen-- > 0) { in PHP_FUNCTION()
752 if (formatlen > 0) { in PHP_FUNCTION()
760 formatlen--; in PHP_FUNCTION()
765 formatlen--; in PHP_FUNCTION()
774 formatlen--; in PHP_FUNCTION()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/media/webrtc/transport/third_party/nrappkit/src/log/
H A Dr_log.c423 int formatlen = strlen(format); in r_vlog_e() local
425 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
428 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
429 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
430 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
458 int formatlen = strlen(format); in r_vlog_nr() local
460 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
462 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
463 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
464 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/lang/spidermonkey60/firefox-60.9.0/media/mtransport/third_party/nrappkit/src/log/
H A Dr_log.c424 int formatlen = strlen(format); in r_vlog_e() local
426 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
429 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
430 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
431 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
459 int formatlen = strlen(format); in r_vlog_nr() local
461 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
463 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
464 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
465 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/www/firefox/firefox-99.0/dom/media/webrtc/transport/third_party/nrappkit/src/log/
H A Dr_log.c423 int formatlen = strlen(format); in r_vlog_e() local
425 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
428 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
429 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
430 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
458 int formatlen = strlen(format); in r_vlog_nr() local
460 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
462 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
463 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
464 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/mtransport/third_party/nrappkit/src/log/
H A Dr_log.c424 int formatlen = strlen(format); in r_vlog_e() local
426 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
429 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
430 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
431 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
459 int formatlen = strlen(format); in r_vlog_nr() local
461 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
463 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
464 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
465 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/mail/thunderbird/thunderbird-91.8.0/dom/media/webrtc/transport/third_party/nrappkit/src/log/
H A Dr_log.c423 int formatlen = strlen(format); in r_vlog_e() local
425 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
428 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
429 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
430 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
458 int formatlen = strlen(format); in r_vlog_nr() local
460 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
462 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
463 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
464 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/lang/spidermonkey78/firefox-78.9.0/media/mtransport/third_party/nrappkit/src/log/
H A Dr_log.c423 int formatlen = strlen(format); in r_vlog_e() local
425 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_e()
428 strncpy(log_fmt_buf, format, formatlen); in r_vlog_e()
429 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_e()
430 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_e()
458 int formatlen = strlen(format); in r_vlog_nr() local
460 if(formatlen+2 > MAX_ERROR_STRING_SIZE) in r_vlog_nr()
462 strncpy(log_fmt_buf, format, formatlen); in r_vlog_nr()
463 strcpy(&log_fmt_buf[formatlen], ": "); in r_vlog_nr()
464 snprintf(&log_fmt_buf[formatlen+2], MAX_ERROR_STRING_SIZE - formatlen - 2, "%s", in r_vlog_nr()
/dports/security/cyrus-sasl2-gssapi/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/security/cyrus-sasl2-ldapdb/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/security/cyrus-sasl2-saslauthd/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/security/cyrus-sasl2-sql/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/sasl2-sys-0.1.12/sasl2/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/security/cyrus-sasl2-srp/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/security/cyrus-sasl2/cyrus-sasl-2.1.28/lib/
H A Dseterror.c109 size_t formatlen; in sasl_seterror() local
140 formatlen = strlen(fmt); in sasl_seterror()
144 while(pos<formatlen) in sasl_seterror()
240 if (pos>formatlen) in sasl_seterror()
/dports/misc/wmweather+/wmweather+-2.18/
H A Dsubst.c41 if(k>=formatlen) GROW(format, formatlen); \
50 size_t formatlen=0; in subst() local
/dports/games/residualvm/residualvm-0.3.1/engines/grim/
H A Dtextsplit.cpp110 const int formatlen = strlen(format); in parse() local
111 for (int i = 0; i < formatlen; ++i) { in parse()
119 for (int i = 0; i < formatlen; ++i) { in parse()
126 while (++i < formatlen && !isCodeSeparator(format[i])) { in parse()
/dports/games/scummvm/scummvm-2.5.1/engines/grim/
H A Dtextsplit.cpp110 const int formatlen = strlen(format); in parse() local
111 for (int i = 0; i < formatlen; ++i) { in parse()
119 for (int i = 0; i < formatlen; ++i) { in parse()
126 while (++i < formatlen && !isCodeSeparator(format[i])) { in parse()
/dports/databases/freetds-devel/freetds-dev.1.3.7/src/tds/
H A Dvstrbuild.c80 …len, int *resultlen, const char *text, int textlen, const char *formats, int formatlen, va_list ap) in tds_vstrbuild() argument
103 if ((newformat = norm_fmt(formats, formatlen)) == NULL) { in tds_vstrbuild()

1234