Searched refs:uc (Results 1 – 13 of 13) sorted by relevance
/php-src/ext/fileinfo/libmagic/ |
H A D | is_json.c | 120 while (uc < ue && json_isspace(*uc)) in json_skip_space() 121 uc++; in json_skip_space() 187 uc = json_skip_space(uc, ue); in json_parse_array() 223 uc = json_skip_space(uc, ue); in json_parse_object() 239 uc = json_skip_space(uc, ue); in json_parse_object() 286 for (; uc < ue; uc++) { in json_parse_number() 295 for (; uc < ue; uc++) { in json_parse_number() 302 if (got && (*uc == 'e' || *uc == 'E')) { in json_parse_number() 307 if (*uc == '+' || *uc == '-') in json_parse_number() 309 for (; uc < ue; uc++) { in json_parse_number() [all …]
|
H A D | is_csv.c | 67 eatquote(const unsigned char *uc, const unsigned char *ue) in eatquote() argument 71 while (uc < ue) { in eatquote() 72 unsigned char c = *uc++; in eatquote() 76 return --uc; in eatquote() 92 csv_parse(const unsigned char *uc, const unsigned char *ue) in csv_parse() argument 96 while (uc < ue) { in csv_parse() 97 switch (*uc++) { in csv_parse() 100 uc = eatquote(uc, ue); in csv_parse() 136 const unsigned char *uc = CAST(const unsigned char *, b->fbuf); in file_is_csv() local 137 const unsigned char *ue = uc + b->flen; in file_is_csv() [all …]
|
H A D | is_simh.c | 94 getlen(const unsigned char **uc) in getlen() argument 97 memcpy(&n, *uc, sizeof(n)); in getlen() 98 *uc += sizeof(n); in getlen() 113 const unsigned char *orig_uc = uc; in simh_parse() 118 while (ue - uc >= CAST(ptrdiff_t, sizeof(nbytes))) { in simh_parse() 119 nbytes = getlen(&uc); in simh_parse() 132 uc += nbytes; in simh_parse() 133 if (ue - uc < CAST(ptrdiff_t, sizeof(nbytes))) in simh_parse() 135 cbytes = getlen(&uc); in simh_parse() 152 const unsigned char *ue = uc + b->flen; in file_is_simh() [all …]
|
H A D | encoding.c | 486 uint32_t uc; in looks_ucs16() local 489 uc = CAST(uint32_t, in looks_ucs16() 492 uc = CAST(uint32_t, in looks_ucs16() 495 uc &= 0xffff; in looks_ucs16() 497 switch (uc) { in looks_ucs16() 502 if (UCS16_NOCHAR(uc)) in looks_ucs16() 509 uc = 0x10000 + 0x400 * (hi - 1) + (uc - 0xdc00); in looks_ucs16() 512 if (uc < 128 && text_chars[CAST(size_t, uc)] != T) in looks_ucs16() 514 ubf[(*ulen)++] = uc; in looks_ucs16() 515 if (UCS16_HISURR(uc)) in looks_ucs16() [all …]
|
/php-src/ext/ffi/tests/ |
H A D | 044.phpt | 15 typedef unsigned int uc __attribute__ ((__mode__ (__SI__))); 26 var_dump(FFI::sizeof($ffi->new("uc")));
|
/php-src/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 104 unsigned int uc; in mbfl_filt_conv_html_enc() local 128 uc = (unsigned int)c; in mbfl_filt_conv_html_enc() 132 *(--p) = "0123456789"[uc % 10]; in mbfl_filt_conv_html_enc() 133 uc /= 10; in mbfl_filt_conv_html_enc() 134 } while (uc); in mbfl_filt_conv_html_enc()
|
/php-src/tests/strings/ |
H A D | 001.phpt | 143 $uc = ucfirst($str); 144 if ($uc == "Fahrvergnuegen") {
|
/php-src/ext/intl/ |
H A D | config.m4 | 90 AS_IF([$PKG_CONFIG icu-uc --atleast-version=74],[
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_compile.c | 6304 uint32_t uc = (d <= CHAR_z)? 0 : 64; in compile_branch() local 6305 uint32_t C = c - uc; in compile_branch() 6306 uint32_t D = d - uc; in compile_branch() 6312 cb, C + uc, ((D < CHAR_i)? D : CHAR_i) + uc); in compile_branch() 6320 cb, C + uc, ((D < CHAR_r)? D : CHAR_r) + uc); in compile_branch() 6328 cb, C + uc, D + uc); in compile_branch()
|
/php-src/Zend/ |
H A D | zend_execute_API.c | 1438 static void zend_timeout_handler(int dummy, siginfo_t *si, void *uc) /* {{{ */ in zend_timeout_handler() argument 1454 EG(oldact).sa_sigaction(dummy, si, uc); in zend_timeout_handler()
|
/php-src/ext/hash/tests/ |
H A D | fnv1a64.phpt | 111 array( 'Kdkg6/~uc>"}7jD^t,\\80', 'f83a6970b348b383' ),
|
/php-src/build/ |
H A D | ltmain.sh | 319 if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then 5557 done | sort | sort -uc >/dev/null 2>&1); then
|
H A D | php.m4 | 1782 PKG_CHECK_MODULES([ICU], [icu-uc >= 57.1 icu-io icu-i18n])
|
Completed in 64 milliseconds