Home
last modified time | relevance | path

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

/PHP-5.3/win32/
H A Dstrtoi64.c11 int64_t acc; in _strtoi64() local
43 acc = any = 0; in _strtoi64()
49 return acc; in _strtoi64()
98 || (neg && (val > acc || (val -= c) > acc)) /* underflow */ in _strtoi64()
99 || (val < acc || (val += c) < acc)) { /* overflow */ in _strtoi64()
105 acc = val; in _strtoi64()
111 acc = neg ? INT64_MIN : INT64_MAX; in _strtoi64()
120 return (acc); in _strtoi64()
/PHP-5.3/ext/standard/tests/strings/
H A Dstrcmp.phpt13 array("acc", "Acc", 'ac', "accc", 'acd', "?acc", 'acc!', "$!acc", ";acc"),
242 - strcmp of 'acc' and 'acc' is => int(0)
247 - strcmp of 'acc' and '?acc' is => int(%d)
248 - strcmp of 'acc' and 'acc!' is => int(-%d)
249 - strcmp of 'acc' and '$!acc' is => int(%d)
250 - strcmp of 'acc' and ';acc' is => int(%d)
297 - strcmp of '?acc' and 'acc' is => int(-%d)
302 - strcmp of '?acc' and '?acc' is => int(0)
308 - strcmp of 'acc!' and 'acc' is => int(%d)
314 - strcmp of 'acc!' and 'acc!' is => int(0)
[all …]
H A Dstrcasecmp.phpt13 array("acc", "Acc", 'aC', "acCc", 'acd', "?acc", 'Acc!', "$!acc", ";acc"),
211 - strcasecmp of 'acc' and 'acc' is => int(0)
216 - strcasecmp of 'acc' and '?acc' is => int(%d)
218 - strcasecmp of 'acc' and '$!acc' is => int(%d)
219 - strcasecmp of 'acc' and ';acc' is => int(%d)
266 - strcasecmp of '?acc' and 'acc' is => int(-%d)
271 - strcasecmp of '?acc' and '?acc' is => int(0)
273 - strcasecmp of '?acc' and '$!acc' is => int(%d)
274 - strcasecmp of '?acc' and ';acc' is => int(%d)
299 - strcasecmp of ';acc' and 'acc' is => int(-%d)
[all …]
H A Dstrnatcasecmp_basic.phpt26 str_dump('acc ', 'acc');
/PHP-5.3/ext/intl/collator/
H A Dcollator_is_numeric.c134 register unsigned long acc; local
190 for (acc = 0, any = 0;; c = *s++) {
202 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
206 acc *= base;
207 acc += c;
211 acc = neg ? LONG_MIN : LONG_MAX;
214 acc = -acc;
217 return (acc);
/PHP-5.3/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-5.3/main/streams/
H A Dplain_wrapper.c690 DWORD prot, acc, loffs = 0, delta = 0; in php_stdiop_set_option() local
700 acc = FILE_MAP_READ; in php_stdiop_set_option()
704 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option()
708 acc = FILE_MAP_READ; in php_stdiop_set_option()
713 acc = FILE_MAP_READ | FILE_MAP_WRITE; in php_stdiop_set_option()
750 … data->last_mapped_addr = MapViewOfFile(data->file_mapping, acc, 0, loffs, range->length + delta); in php_stdiop_set_option()
/PHP-5.3/ext/mbstring/oniguruma/
H A Dregparse.c4286 CClassNode* acc; in parse_char_class() local
4290 acc = &(NCCLASS(anode)); in parse_char_class()
4291 r = or_cclass(cc, acc, env->enc); in parse_char_class()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c19646 StrAccum acc; in sqlite3VMPrintf() local
19650 acc.db = db; in sqlite3VMPrintf()
19653 if( acc.mallocFailed ){ in sqlite3VMPrintf()
19697 StrAccum acc; in sqlite3_vmprintf() local
19702 acc.useMalloc = 2; in sqlite3_vmprintf()
19738 StrAccum acc; in sqlite3_vsnprintf() local
19741 acc.useMalloc = 0; in sqlite3_vsnprintf()
19768 acc.useMalloc = 0; in renderLogMsg()
19794 StrAccum acc; in sqlite3DebugPrintf() local
19797 acc.useMalloc = 0; in sqlite3DebugPrintf()
[all …]

Completed in 271 milliseconds