Searched refs:acc (Results 1 – 11 of 11) sorted by relevance
/PHP-8.1/ext/standard/tests/strings/ |
H A D | strcmp.phpt | 13 array("acc", "Acc", 'ac', "accc", 'acd', "?acc", 'acc!', "$!acc", ";acc"), 207 - strcmp of 'acc' and 'acc' is => int(0) 212 - strcmp of 'acc' and '?acc' is => int(%d) 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) 262 - strcmp of '?acc' and 'acc' is => int(-%d) 267 - strcmp of '?acc' and '?acc' is => int(0) 273 - strcmp of 'acc!' and 'acc' is => int(%d) 279 - 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"), 177 - strcasecmp of 'acc' and 'acc' is => int(0) 182 - strcasecmp of 'acc' and '?acc' is => int(%d) 184 - strcasecmp of 'acc' and '$!acc' is => int(%d) 185 - strcasecmp of 'acc' and ';acc' is => int(%d) 232 - strcasecmp of '?acc' and 'acc' is => int(-%d) 237 - strcasecmp of '?acc' and '?acc' is => int(0) 239 - strcasecmp of '?acc' and '$!acc' is => int(%d) 240 - strcasecmp of '?acc' and ';acc' is => int(%d) 265 - strcasecmp of ';acc' and 'acc' is => int(-%d) [all …]
|
H A D | strnatcasecmp_basic.phpt | 20 str_dump('acc ', 'acc');
|
/PHP-8.1/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-8.1/ext/hash/xxhash/ |
H A D | xxhash.h | 1208 acc = XXH_rotl32(acc, 13); in XXH32_round() 1730 acc = XXH_rotl64(acc, 31); in XXH64_round() 1739 acc = acc * XXH_PRIME64_1 + XXH_PRIME64_4; in XXH64_mergeRound() 2935 acc = XXH3_avalanche(acc); in XXH3_len_129to240_64b() 4141 memcpy(acc, state->acc, sizeof(state->acc)); in XXH3_digest_long() 4430 h128.low64 = acc.low64 + acc.high64; in XXH3_len_17to128_128b() 4455 acc = XXH128_mix32B(acc, in XXH3_len_129to240_128b() 4461 acc.low64 = XXH3_avalanche(acc.low64); in XXH3_len_129to240_128b() 4462 acc.high64 = XXH3_avalanche(acc.high64); in XXH3_len_129to240_128b() 4465 acc = XXH128_mix32B(acc, in XXH3_len_129to240_128b() [all …]
|
/PHP-8.1/ext/standard/ |
H A D | flock_compat.c | 165 unsigned long acc = 0, addr = 0; in inet_aton() local 181 acc = acc * 10 + (cc - '0'); in inet_aton() 191 if (acc > 255) { in inet_aton() 194 addr = addr << 8 | acc; in inet_aton() 195 acc = 0; in inet_aton()
|
/PHP-8.1/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-8.1/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() 890 …data->last_mapped_addr = MapViewOfFile(data->file_mapping, acc, hoffs, loffs, range->length + delt… in php_stdiop_set_option()
|
/PHP-8.1/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 249 strlen_c_r(const CharT *const s, const unsigned long acc) noexcept 251 return *s ? strlen_c_r(s + 1, acc + 1) : acc;
|
/PHP-8.1/ext/sodium/ |
H A D | libsodium.c | 3267 unsigned char acc = 0U; in PHP_FUNCTION() local 3279 (( (acc - 1U) & (pad_len - 1U) & ((c ^ 0x80) - 1U) ) >> 8) & 1U; in PHP_FUNCTION() 3280 acc |= c; in PHP_FUNCTION()
|
/PHP-8.1/sapi/fpm/tests/ |
H A D | tester.inc | 22 const FILE_EXT_LOG_ACC = 'acc.log'; 1861 $accessLog = $this->getFile('acc.log');
|
Completed in 72 milliseconds