Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 9 of 9) sorted by relevance

/PHP-7.4/ext/standard/tests/strings/
H A Dstrcmp.phpt13 array("acc", "Acc", 'ac', "accc", 'acd', "?acc", 'acc!', "$!acc", ";acc"),
218 - strcmp of 'acc' and 'acc' is => int(0)
223 - strcmp of 'acc' and '?acc' is => int(%d)
224 - strcmp of 'acc' and 'acc!' is => int(-%d)
225 - strcmp of 'acc' and '$!acc' is => int(%d)
226 - strcmp of 'acc' and ';acc' is => int(%d)
273 - strcmp of '?acc' and 'acc' is => int(-%d)
278 - strcmp of '?acc' and '?acc' is => int(0)
284 - strcmp of 'acc!' and 'acc' is => int(%d)
290 - strcmp of 'acc!' and 'acc!' is => int(0)
[all …]
H A Dstrcasecmp.phpt13 array("acc", "Acc", 'aC', "acCc", 'acd', "?acc", 'Acc!', "$!acc", ";acc"),
187 - strcasecmp of 'acc' and 'acc' is => int(0)
192 - strcasecmp of 'acc' and '?acc' is => int(%d)
194 - strcasecmp of 'acc' and '$!acc' is => int(%d)
195 - strcasecmp of 'acc' and ';acc' is => int(%d)
242 - strcasecmp of '?acc' and 'acc' is => int(-%d)
247 - strcasecmp of '?acc' and '?acc' is => int(0)
249 - strcasecmp of '?acc' and '$!acc' is => int(%d)
250 - strcasecmp of '?acc' and ';acc' is => int(%d)
275 - strcasecmp of ';acc' and 'acc' is => int(-%d)
[all …]
H A Dstrnatcasecmp_basic.phpt26 str_dump('acc ', 'acc');
/PHP-7.4/ext/intl/collator/
H A Dcollator_is_numeric.c123 register zend_ulong acc; local
179 for (acc = 0, any = 0;; c = *s++) {
191 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
195 acc *= base;
196 acc += c;
200 acc = neg ? ZEND_LONG_MIN : ZEND_LONG_MAX;
203 acc = -acc;
206 return (acc);
/PHP-7.4/ext/standard/
H A Dflock_compat.c178 register unsigned long acc = 0, addr = 0; in inet_aton() local
194 acc = acc * 10 + (cc - '0'); in inet_aton()
204 if (acc > 255) { in inet_aton()
207 addr = addr << 8 | acc; in inet_aton()
208 acc = 0; in inet_aton()
/PHP-7.4/main/streams/
H A Dplain_wrapper.c773 DWORD prot, acc, loffs = 0, hoffs = 0, delta = 0; in php_stdiop_set_option() local
784 acc = FILE_MAP_READ; in php_stdiop_set_option()
788 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option()
792 acc = FILE_MAP_READ; in php_stdiop_set_option()
797 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option()
853 …data->last_mapped_addr = MapViewOfFile(data->file_mapping, acc, hoffs, loffs, range->length + delt… in php_stdiop_set_option()
/PHP-7.4/build/
H A Dphp_cxx_compile_stdcxx.m4249 strlen_c_r(const CharT *const s, const unsigned long acc) noexcept
251 return *s ? strlen_c_r(s + 1, acc + 1) : acc;
/PHP-7.4/sapi/fpm/tests/
H A Dtester.inc21 const FILE_EXT_LOG_ACC = 'acc.log';
1437 $accessLog = $this->getFile('acc.log');
/PHP-7.4/ext/sodium/
H A Dlibsodium.c3495 unsigned char acc = 0U; in PHP_FUNCTION() local
3507 (( (acc - 1U) & (pad_len - 1U) & ((c ^ 0x80) - 1U) ) >> 8) & 1U; in PHP_FUNCTION()
3508 acc |= c; in PHP_FUNCTION()

Completed in 46 milliseconds