Home
last modified time | relevance | path

Searched refs:uc (Results 1 – 13 of 13) sorted by relevance

/php-src/ext/fileinfo/libmagic/
H A Dis_json.c120 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 Dis_csv.c67 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 Dis_simh.c94 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 Dencoding.c486 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 D044.phpt15 typedef unsigned int uc __attribute__ ((__mode__ (__SI__)));
26 var_dump(FFI::sizeof($ffi->new("uc")));
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c104 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 D001.phpt143 $uc = ucfirst($str);
144 if ($uc == "Fahrvergnuegen") {
/php-src/ext/intl/
H A Dconfig.m485 AS_IF([test "$PKG_CONFIG icu-uc --atleast-version=74"],[
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_compile.c6303 uint32_t uc = (d <= CHAR_z)? 0 : 64; in compile_branch() local
6304 uint32_t C = c - uc; in compile_branch()
6305 uint32_t D = d - uc; in compile_branch()
6311 cb, C + uc, ((D < CHAR_i)? D : CHAR_i) + uc); in compile_branch()
6319 cb, C + uc, ((D < CHAR_r)? D : CHAR_r) + uc); in compile_branch()
6327 cb, C + uc, D + uc); in compile_branch()
/php-src/Zend/
H A Dzend_execute_API.c1410 static void zend_timeout_handler(int dummy, siginfo_t *si, void *uc) /* {{{ */ in zend_timeout_handler() argument
1426 EG(oldact).sa_sigaction(dummy, si, uc); in zend_timeout_handler()
/php-src/ext/hash/tests/
H A Dfnv1a64.phpt111 array( 'Kdkg6/~uc>"}7jD^t,\\80', 'f83a6970b348b383' ),
/php-src/build/
H A Dltmain.sh319 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 Dphp.m41814 PKG_CHECK_MODULES([ICU], [icu-uc >= 50.1 icu-io icu-i18n])

Completed in 189 milliseconds