Searched refs:acc (Results 1 – 10 of 10) sorted by relevance
/php-src/ext/standard/tests/strings/ |
H A D | strcmp.phpt | 13 array("acc", "Acc", 'ac', "accc", 'acd', "?acc", 'acc!', "$!acc", ";acc"), 208 - strcmp of 'acc' and 'acc' is => int(0) 213 - strcmp of 'acc' and '?acc' is => int(%d) 214 - strcmp of 'acc' and 'acc!' is => int(-%d) 215 - strcmp of 'acc' and '$!acc' is => int(%d) 216 - strcmp of 'acc' and ';acc' is => int(%d) 263 - strcmp of '?acc' and 'acc' is => int(-%d) 268 - strcmp of '?acc' and '?acc' is => int(0) 274 - strcmp of 'acc!' and 'acc' is => int(%d) 280 - strcmp of 'acc!' and 'acc!' is => int(0) [all …]
|
H A D | strcasecmp.phpt | 13 array("acc", "Acc", 'aC', "acCc", 'acd', "?acc", 'Acc!', "$!acc", ";acc"), 178 - strcasecmp of 'acc' and 'acc' is => int(0) 183 - strcasecmp of 'acc' and '?acc' is => int(%d) 185 - strcasecmp of 'acc' and '$!acc' is => int(%d) 186 - strcasecmp of 'acc' and ';acc' is => int(%d) 233 - strcasecmp of '?acc' and 'acc' is => int(-%d) 238 - strcasecmp of '?acc' and '?acc' is => int(0) 240 - strcasecmp of '?acc' and '$!acc' is => int(%d) 241 - strcasecmp of '?acc' and ';acc' is => int(%d) 266 - strcasecmp of ';acc' and 'acc' is => int(-%d) [all …]
|
H A D | strnatcasecmp_basic.phpt | 20 str_dump('acc ', 'acc');
|
/php-src/ext/intl/collator/ |
H A D | collator_is_numeric.c | 116 zend_ulong acc; in collator_u_strtol() local 172 for (acc = 0, any = 0;; c = *s++) { in collator_u_strtol() 184 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in collator_u_strtol() 188 acc *= base; in collator_u_strtol() 189 acc += c; in collator_u_strtol() 193 acc = neg ? ZEND_LONG_MIN : ZEND_LONG_MAX; in collator_u_strtol() 196 acc = -acc; in collator_u_strtol() 199 return (acc); in collator_u_strtol()
|
/php-src/ext/hash/xxhash/ |
H A D | xxhash.h | 1947 acc = XXH_rotl32(acc, 13); in XXH32_round() 2465 acc = XXH_rotl64(acc, 31); in XXH64_round() 2474 acc = acc * XXH_PRIME64_1 + XXH_PRIME64_4; in XXH64_mergeRound() 3649 acc = XXH3_avalanche(acc); in XXH3_len_129to240_64b() 4835 XXH_ALIGN(XXH_ACC_ALIGN) xxh_u64 acc[8]; memcpy(acc, state->acc, sizeof(acc)); in XXH3_update() 4924 memcpy(state->acc, acc, sizeof(acc)); in XXH3_update() 4949 XXH_memcpy(acc, state->acc, sizeof(state->acc)); in XXH3_digest_long() 5220 acc = XXH128_mix32B(acc, in XXH3_len_129to240_128b() 5226 acc.low64 = XXH3_avalanche(acc.low64); in XXH3_len_129to240_128b() 5230 acc = XXH128_mix32B(acc, in XXH3_len_129to240_128b() [all …]
|
/php-src/ext/date/lib/ |
H A D | parse_posix.c | 138 int acc = 0; in read_number() local 146 acc = acc * 10; in read_number() 147 acc += (**ptr) - '0'; in read_number() 155 return acc; in read_number()
|
/php-src/main/streams/ |
H A D | plain_wrapper.c | 810 DWORD prot, acc, loffs = 0, hoffs = 0, delta = 0; in php_stdiop_set_option() local 821 acc = FILE_MAP_READ; in php_stdiop_set_option() 825 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option() 829 acc = FILE_MAP_READ; in php_stdiop_set_option() 834 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option() 894 …data->last_mapped_addr = MapViewOfFile(data->file_mapping, acc, hoffs, loffs, range->length + delt… in php_stdiop_set_option()
|
/php-src/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 264 strlen_c_r(const CharT *const s, const unsigned long acc) noexcept 266 return *s ? strlen_c_r(s + 1, acc + 1) : acc;
|
/php-src/sapi/fpm/tests/ |
H A D | tester.inc | 25 const FILE_EXT_LOG_ACC = 'acc.log'; 2078 $accessLog = $this->getFile('acc.log'); 2091 $accessLog = $this->getFile('acc.log');
|
/php-src/ext/sodium/ |
H A D | libsodium.c | 3358 unsigned char acc = 0U; in PHP_FUNCTION() local 3370 (( (acc - 1U) & (pad_len - 1U) & ((c ^ 0x80) - 1U) ) >> 8) & 1U; in PHP_FUNCTION() 3371 acc |= c; in PHP_FUNCTION()
|
Completed in 75 milliseconds