Searched refs:uc (Results 1 – 12 of 12) sorted by relevance
/PHP-8.3/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() 135 const unsigned char *uc = CAST(const unsigned char *, b->fbuf); in file_is_csv() local 136 const unsigned char *ue = uc + b->flen; in file_is_csv() [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-8.3/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-8.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_htmlent.c | 103 unsigned int uc; in mbfl_filt_conv_html_enc() local 127 uc = (unsigned int)c; in mbfl_filt_conv_html_enc() 131 *(--p) = "0123456789"[uc % 10]; in mbfl_filt_conv_html_enc() 132 uc /= 10; in mbfl_filt_conv_html_enc() 133 } while (uc); in mbfl_filt_conv_html_enc()
|
/PHP-8.3/tests/strings/ |
H A D | 001.phpt | 143 $uc = ucfirst($str); 144 if ($uc == "Fahrvergnuegen") {
|
/PHP-8.3/ext/intl/ |
H A D | config.m4 | 85 AS_IF([$PKG_CONFIG icu-uc --atleast-version=74],[
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_compile.c | 6042 uint32_t uc = (d <= CHAR_z)? 0 : 64; in compile_branch() local 6043 uint32_t C = c - uc; in compile_branch() 6044 uint32_t D = d - uc; in compile_branch() 6049 add_to_class(classbits, &class_uchardata, options, cb, C + uc, in compile_branch() 6050 ((D < CHAR_i)? D : CHAR_i) + uc); in compile_branch() 6057 add_to_class(classbits, &class_uchardata, options, cb, C + uc, in compile_branch() 6058 ((D < CHAR_r)? D : CHAR_r) + uc); in compile_branch() 6065 add_to_class(classbits, &class_uchardata, options, cb, C + uc, in compile_branch() 6066 D + uc); in compile_branch()
|
/PHP-8.3/Zend/ |
H A D | zend_execute_API.c | 1396 static void zend_timeout_handler(int dummy, siginfo_t *si, void *uc) /* {{{ */ in zend_timeout_handler() argument 1412 EG(oldact).sa_sigaction(dummy, si, uc); in zend_timeout_handler()
|
/PHP-8.3/ext/hash/tests/ |
H A D | fnv1a64.phpt | 111 array( 'Kdkg6/~uc>"}7jD^t,\\80', 'f83a6970b348b383' ),
|
/PHP-8.3/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 | 1912 PKG_CHECK_MODULES([ICU], [icu-uc >= 50.1 icu-io icu-i18n])
|
Completed in 75 milliseconds