/PHP-7.0/ext/standard/tests/strings/ |
H A D | bug54055.phpt | 10 495: len=502 11 496: len=503 12 497: len=504 13 498: len=505 14 499: len=506 15 500: len=507 16 501: len=507 17 502: len=507 18 503: len=507 19 504: len=507 [all …]
|
H A D | substr_replace.phpt | 15 $len = 3; 20 $len = 0; 25 $len = -2; 36 $len = 3; 81 $len = 3; 92 $len = 3; 102 $len = 3; 111 $len = 0; 121 $len = 0; 155 $len = 3; [all …]
|
H A D | strspn_variation4.phpt | 115 -- Iteration with len value as "0.5" -- 143 -- Iteration with len value as "" -- 146 -- Iteration with len value as "" -- 149 -- Iteration with len value as "1" -- 152 -- Iteration with len value as "" -- 155 -- Iteration with len value as "1" -- 158 -- Iteration with len value as "" -- 161 -- Iteration with len value as "" -- 166 -- Iteration with len value as "" -- 186 -- Iteration with len value as "" -- [all …]
|
H A D | strcspn_variation4.phpt | 117 -- Iteration with len value as "0.5" -- 145 -- Iteration with len value as "" -- 148 -- Iteration with len value as "" -- 151 -- Iteration with len value as "1" -- 154 -- Iteration with len value as "" -- 157 -- Iteration with len value as "1" -- 160 -- Iteration with len value as "" -- 163 -- Iteration with len value as "" -- 168 -- Iteration with len value as "" -- 188 -- Iteration with len value as "" -- [all …]
|
/PHP-7.0/tests/output/ |
H A D | ob_start_basic_004.phpt | 16 return "f[call:$callback_invocations; len:$len]$string\n"; 45 f[call:1; len:1]1 46 f[call:2; len:1]2 47 f[call:3; len:1]3 48 f[call:4; len:1]4 49 f[call:5; len:1]5 50 f[call:6; len:1]6 53 f[call:9; len:0] 60 f[call:5; len:0] 70 f[call:3; len:0] [all …]
|
/PHP-7.0/sapi/fpm/fpm/ |
H A D | zlog.c | 71 size_t len; in zlog_print_time() local 75 len += snprintf(timebuf + len, timebuf_len - len, ".%06d", (int) tv->tv_usec); in zlog_print_time() 77 len += snprintf(timebuf + len, timebuf_len - len, "] "); in zlog_print_time() 78 return len; in zlog_print_time() 107 size_t len = 0; in vzlog() local 121 len = 0; in vzlog() 132 len = 0; in vzlog() 152 len += snprintf(buf + len, buf_size - len, "%s: ", level_names[flags & ZLOG_LEVEL_MASK]); in vzlog() 161 len += vsnprintf(buf + len, buf_size - len, fmt, args); in vzlog() 169 len += snprintf(buf + len, buf_size - len, ": %s (%d)", strerror(saved_errno), saved_errno); in vzlog() [all …]
|
H A D | fpm_log.c | 105 size_t len, len2; in fpm_log_write() local 147 len = 0; in fpm_log_write() 154 if (len >= FPM_LOG_BUFFER) { in fpm_log_write() 156 len = FPM_LOG_BUFFER; in fpm_log_write() 397 len2 = snprintf(b, FPM_LOG_BUFFER - len, "%s", tmp); in fpm_log_write() 449 len += len2; in fpm_log_write() 451 if (len >= FPM_LOG_BUFFER) { in fpm_log_write() 453 len = FPM_LOG_BUFFER; in fpm_log_write() 463 len++; in fpm_log_write() 469 buffer[len] = '\n'; in fpm_log_write() [all …]
|
/PHP-7.0/ext/filter/ |
H A D | filter_private.h | 106 #define PHP_FILTER_TRIM_DEFAULT(p, len) PHP_FILTER_TRIM_DEFAULT_EX(p, len, 1); argument 108 #define PHP_FILTER_TRIM_DEFAULT_EX(p, len, return_if_empty) { \ argument 109 while ((len > 0) && (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\v' || *p == '\n')) { \ 111 len--; \ 113 if (len < 1 && return_if_empty) { \ 116 if (len > 0) { \ 117 …while (p[len-1] == ' ' || p[len-1] == '\t' || p[len-1] == '\r' || p[len-1] == '\v' || p[len-1] == … 118 len--; \
|
/PHP-7.0/Zend/ |
H A D | zend_bitset.h | 66 memset(set, 0, len * ZEND_BITSET_ELM_SIZE); in zend_bitset_clear() 72 for (i = 0; i < len; i++) { in zend_bitset_empty() 82 memset(set, 0xff, len * ZEND_BITSET_ELM_SIZE); in zend_bitset_fill() 92 memcpy(set1, set2, len * ZEND_BITSET_ELM_SIZE); in zend_bitset_copy() 99 for (i = 0; i < len; i++) { in zend_bitset_intersection() 108 for (i = 0; i < len; i++) { in zend_bitset_union() 117 for (i = 0; i < len; i++) { in zend_bitset_difference() 126 for (i = 0; i < len; i++) { in zend_bitset_union_with_intersection() 135 for (i = 0; i < len; i++) { in zend_bitset_union_with_difference() 144 for (i = 0; i < len; i++) { in zend_bitset_first() [all …]
|
H A D | zend_smart_str.c | 32 #define SMART_STR_NEW_SIZE(len) \ argument 33 (((len + SMART_STR_OVERHEAD + SMART_STR_PAGE) & ~(SMART_STR_PAGE - 1)) - SMART_STR_OVERHEAD - 1) 35 ZEND_API void ZEND_FASTCALL smart_str_erealloc(smart_str *str, size_t len) in smart_str_erealloc() argument 38 str->a = len < SMART_STR_START_SIZE in smart_str_erealloc() 40 : SMART_STR_NEW_SIZE(len); in smart_str_erealloc() 44 str->a = SMART_STR_NEW_SIZE(len); in smart_str_erealloc() 49 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len) in smart_str_realloc() argument 52 str->a = len < SMART_STR_START_SIZE in smart_str_realloc() 54 : SMART_STR_NEW_SIZE(len); in smart_str_realloc() 58 str->a = SMART_STR_NEW_SIZE(len); in smart_str_realloc()
|
H A D | zend_string.h | 41 #define ZSTR_LEN(zstr) (zstr)->len in END_EXTERN_C() 51 #define STR_ALLOCA_INIT(str, s, len, use_heap) ZSTR_ALLOCA_INIT(str, s, len, use_heap) in END_EXTERN_C() argument 62 #define _ZSTR_STRUCT_SIZE(len) (_ZSTR_HEADER_SIZE + len + 1) in END_EXTERN_C() argument 75 ZSTR_VAL(str)[(len)] = '\0'; \ 133 ZSTR_LEN(ret) = len; in zend_string_alloc() 160 ZSTR_VAL(ret)[len] = '\0'; in zend_string_init() 188 ZSTR_LEN(ret) = len; in zend_string_realloc() 208 ZSTR_LEN(ret) = len; in zend_string_extend() 228 ZSTR_LEN(ret) = len; in zend_string_truncate() 329 for (; len >= 8; len -= 8) { in zend_inline_hash_func() [all …]
|
H A D | zend_smart_str.h | 31 #define smart_str_appendl(dest, src, len) \ argument 32 smart_str_appendl_ex((dest), (src), (len), 0) 47 ZEND_API void ZEND_FASTCALL smart_str_realloc(smart_str *str, size_t len); 55 len += ZSTR_LEN(str->s); in END_EXTERN_C() 56 if (UNEXPECTED(len >= str->a)) { in END_EXTERN_C() 59 smart_str_realloc(str, len); in END_EXTERN_C() 61 smart_str_erealloc(str, len); in END_EXTERN_C() 65 return len; in END_EXTERN_C() 89 size_t new_len = smart_str_alloc(dest, len, persistent); in smart_str_appendl_ex() 90 memcpy(ZSTR_VAL(dest->s) + ZSTR_LEN(dest->s), str, len); in smart_str_appendl_ex() [all …]
|
/PHP-7.0/ext/dba/libcdb/ |
H A D | cdb.c | 51 while (len > 0) { in cdb_match() 53 if (n > len) in cdb_match() 54 n = len; in cdb_match() 61 len -= n; in cdb_match() 74 while (len--) { in cdb_hash() 110 while (len > 0) { in cdb_read() 122 len -= r; in cdb_read() 136 u = cdb_hash(key, len); in cdb_findnext() 165 if (u == len) in cdb_findnext() 171 c->dpos = pos + 8 + len; in cdb_findnext() [all …]
|
/PHP-7.0/ext/mbstring/oniguruma/ |
H A D | regerror.c | 198 int len; in to_ascii() local 204 len = 0; in to_ascii() 213 len += 10; in to_ascii() 218 len += 6; in to_ascii() 240 return len; in to_ascii() 259 int len, is_over; local 283 p += len; 299 len = p - s; 306 s[len] = '\0'; 311 return len; [all …]
|
/PHP-7.0/ext/standard/ |
H A D | uuencode.c | 70 size_t len = 45; in php_uuencode() local 83 ee = s + len; in php_uuencode() 86 len = ee - s; in php_uuencode() 87 if (len % 3) { in php_uuencode() 102 if (len == 45) { in php_uuencode() 110 len = 0; in php_uuencode() 119 if (len < 45) { in php_uuencode() 154 ee = s + (len == 45 ? 60 : (int) floor(len * 1.33)); in php_uudecode() 170 if (len < 45) { in php_uudecode() 181 if (len > 1) { in php_uudecode() [all …]
|
H A D | head.c | 43 size_t len; in PHP_FUNCTION() local 49 ctr.line_len = (uint)len; in PHP_FUNCTION() 59 size_t len = 0; in PHP_FUNCTION() local 65 ctr.line_len = (uint)len; in PHP_FUNCTION() 83 size_t len = sizeof("Set-Cookie: "); in php_setcookie() local 103 len += ZSTR_LEN(name); in php_setcookie() 107 len += ZSTR_LEN(encoded_value); in php_setcookie() 110 len += ZSTR_LEN(encoded_value); in php_setcookie() 115 len += ZSTR_LEN(path); in php_setcookie() 118 len += ZSTR_LEN(domain); in php_setcookie() [all …]
|
/PHP-7.0/ext/xmlrpc/libxmlrpc/ |
H A D | simplestring.c | 118 string->len = 0; in simplestring_init_str() 147 string->len = 0; in simplestring_clear() 171 string->len = 0; in simplestring_free() 204 if((SIZE_MAX - add_len) < target->len || (SIZE_MAX - add_len - 1) < target->len) { in simplestring_addn() 209 if(target->len + add_len + 1 > target->size) { in simplestring_addn() 211 newsize = target->len + add_len + 1; in simplestring_addn() 218 if(newsize < (target->len + add_len + 1)) { in simplestring_addn() 229 memcpy(target->str + target->len, source, add_len); in simplestring_addn() 231 target->len += add_len; in simplestring_addn() 232 target->str[target->len] = 0; /* null terminate */ in simplestring_addn()
|
/PHP-7.0/ext/filter/tests/ |
H A D | 048.phpt | 8 $len = strlen($s); 9 while ($len > 0) { 10 $len--; 11 if ($s[$len] != 'f') { 12 if ($s[$len] == '9') { 13 $s[$len] = 'a'; 15 $s[$len] = $s[$len] + 1; 19 $s[$len] = '0';
|
H A D | 047.phpt | 8 $len = strlen($s); 9 while ($len > 0) { 10 $len--; 11 if ($s[$len] != '7') { 12 $s[$len] = $s[$len] + 1; 15 $s[$len] = '0';
|
/PHP-7.0/ext/zip/lib/ |
H A D | zip_source_zip.c | 43 zip_flags_t flags, zip_uint64_t start, zip_int64_t len) in zip_source_zip() argument 45 if (len < -1) { in zip_source_zip() 50 if (len == -1) in zip_source_zip() 51 len = 0; in zip_source_zip() 53 if (start == 0 && len == 0) in zip_source_zip() 58 return _zip_source_zip_new(za, srcza, srcidx, flags, start, (zip_uint64_t)len, NULL); in zip_source_zip()
|
H A D | zip_source_zip_new.c | 41 …, zip_uint64_t srcidx, zip_flags_t flags, zip_uint64_t start, zip_uint64_t len, const char *passwo… in _zip_source_zip_new() argument 71 if ((start > 0 || len > 0) && (flags & ZIP_FL_COMPRESSED)) { in _zip_source_zip_new() 77 if ((start > 0 || len > 0) && (start+len < start || start+len > st.size)) { in _zip_source_zip_new() 111 if (start+len > 0 && enc_impl == NULL && comp_impl == NULL) { in _zip_source_zip_new() 114 st2.size = len ? len : st.size-start; in _zip_source_zip_new() 153 …if (((flags & ZIP_FL_COMPRESSED) == 0 || st.comp_method == ZIP_CM_STORE) && (len == 0 || len == st… in _zip_source_zip_new() 163 if (start+len > 0 && (comp_impl || enc_impl)) { in _zip_source_zip_new() 164 s2 = zip_source_window(za, src, start, len ? len : st.size-start); in _zip_source_zip_new()
|
/PHP-7.0/sapi/phpdbg/ |
H A D | phpdbg_io.c | 66 for (i = len; i < len + bytes; i++) { in ZEND_EXTERN_MODULE_GLOBALS() 68 if (i != len + bytes - 1) { in ZEND_EXTERN_MODULE_GLOBALS() 71 len--; in ZEND_EXTERN_MODULE_GLOBALS() 87 len += bytes; in ZEND_EXTERN_MODULE_GLOBALS() 88 …} while ((bytes = phpdbg_mixed_read(PHPDBG_G(io)[PHPDBG_STDIN].fd, buf + len, PHPDBG_MAX_CMD - len… in ZEND_EXTERN_MODULE_GLOBALS() 99 int got_now, i = len, j; 163 int sent, i = len; 175 return len; 187 ret = read(sock, ptr, len); 218 bytes += write(sock, ptr, len); [all …]
|
/PHP-7.0/main/ |
H A D | php_open_temporary_file.c | 188 int len = (int)strlen(sys_temp_dir); in php_get_temporary_directory() local 189 if (len >= 2 && sys_temp_dir[len - 1] == DEFAULT_SLASH) { in php_get_temporary_directory() 192 } else if (len >= 1 && sys_temp_dir[len - 1] != DEFAULT_SLASH) { in php_get_temporary_directory() 207 DWORD len = GetTempPath(sizeof(sTemp),sTemp); in php_get_temporary_directory() local 208 assert(0 < len); /* should *never* fail! */ in php_get_temporary_directory() 209 if (sTemp[len - 1] == DEFAULT_SLASH) { in php_get_temporary_directory() 212 PG(php_sys_temp_dir) = estrndup(sTemp, len); in php_get_temporary_directory() 221 int len = strlen(s); in php_get_temporary_directory() local 223 if (s[len - 1] == DEFAULT_SLASH) { in php_get_temporary_directory() 224 PG(php_sys_temp_dir) = estrndup(s, len - 1); in php_get_temporary_directory() [all …]
|
/PHP-7.0/ext/mbstring/oniguruma/enc/ |
H A D | euc_jp.c | 62 int c, i, len; in mbc_to_code() local 65 len = enclen(ONIG_ENCODING_EUC_JP, p); in mbc_to_code() 67 if (len == 1) return n; in mbc_to_code() 69 for (i = 1; i < len; i++) { in mbc_to_code() 126 int len; in mbc_case_fold() local 138 for (i = 0; i < len; i++) { in mbc_case_fold() 141 (*pp) += len; in mbc_case_fold() 153 int len; in left_adjust_char_head() local 159 len = enclen(ONIG_ENCODING_EUC_JP, p); in left_adjust_char_head() 160 if (p + len > s) return (UChar* )p; in left_adjust_char_head() [all …]
|
/PHP-7.0/ext/dba/ |
H A D | dba_cdb.c | 140 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument 141 # define php_cdb_findnext(cdb, key, len) cdb_findnext(cdb, key, len) argument 142 # define php_cdb_find(cdb, key, len) cdb_find(cdb, key, len) argument 144 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument 145 # define php_cdb_findnext(cdb, key, len) cdb_findnext(cdb, key, len) argument 146 # define php_cdb_find(cdb, key, len) cdb_find(cdb, key, len) argument 152 unsigned int len; in DBA_FETCH_FUNC() local 165 len = cdb_datalen(&cdb->c); in DBA_FETCH_FUNC() 166 new_entry = safe_emalloc(len, 1, 1); in DBA_FETCH_FUNC() 172 new_entry[len] = 0; in DBA_FETCH_FUNC() [all …]
|