Home
last modified time | relevance | path

Searched refs:ch (Results 151 – 175 of 195) sorted by relevance

12345678

/php-src/Zend/
H A Dzend_ini_scanner.l126 #define EAT_TRAILING_WHITESPACE_EX(ch) \ argument
128 (ch != 'X' && yytext[yyleng - 1] == ch) || \
/php-src/ext/ctype/tests/
H A Dctype_alnum_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_print_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_alpha_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_digit_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_lower_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_punct_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_space_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_upper_variation3.phpt28 ")speci@! ch@r$(",
H A Dctype_xdigit_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_graph_variation3.phpt29 ")speci@! ch@r$(",
H A Dctype_cntrl_variation3.phpt29 ")speci@! ch@r$(",
/php-src/sapi/litespeed/
H A Dlsapilib.c2217 if ((ch != *p )||(( *p == '_' )&&( ch != '-'))) in GetHeaderVar()
2396 char ch = *pKey++; in LSAPI_ForeachHeader_r() local
2397 if ( ch == '-' ) in LSAPI_ForeachHeader_r()
2511 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2521 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader2_r()
2560 char ch = *(pBuf + len - 1 ); in LSAPI_AppendRespHeader_r() local
2561 if (( ch == '\n' )||( ch == '\r' )) in LSAPI_AppendRespHeader_r()
3963 char ch; in LSAPI_Init_Env_Parameters() local
3999 ch = *(p + strlen(p) - 1); in LSAPI_Init_Env_Parameters()
4000 if ( ch == 'G' || ch == 'g' ) in LSAPI_Init_Env_Parameters()
[all …]
/php-src/ext/opcache/jit/ir/
H A Dir_x86.h14 _(R1, rcx, ecx, cx, cl, ch) \
52 _(R1, ___, ecx, cx, cl, ch) \
/php-src/ext/pcre/pcre2lib/
H A Dpcre2_printint.c755 PCRE2_UCHAR ch; in pcre2_printint() local
756 while ((ch = *ccode++) != XCL_END) in pcre2_printint()
760 switch(ch) in pcre2_printint()
801 if (ch == XCL_RANGE) in pcre2_printint()
H A Dpcre2_match.c1121 uint32_t ch; in match() local
1125 if (ch == fc) in match()
1131 if (ch > 127) in match()
1132 ch = UCD_OTHERCASE(ch); in match()
1134 ch = (mb->fcc)[ch]; in match()
1143 uint32_t ch; in match() local
1145 ch = Fecode[1]; in match()
1148 if (ch == fc) in match()
1155 ch = UCD_OTHERCASE(ch); in match()
1157 ch = (mb->fcc)[ch]; in match()
[all …]
/php-src/ext/ffi/
H A Dffi.c4532 Z_PARAM_LONG(ch) in ZEND_METHOD()
5956 value = val->ch;
6362 length = len->ch;
7175 val->ch = val->ch OP op2->ch; \
7233 val->ch = val->ch OP op2->ch; \
7303 val->i64 = val->ch OP op2->ch; \
7600 val->ch = -val->ch;
7614 val->ch = ~val->ch;
7804 val->ch = '\b';
7828 val->ch = n;
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_chr_ord.phpt8 for($ch = 1; $ch < 80000; $ch++) {
9 $str = mb_chr($ch);
11 echo "ERROR($ch)\n";
14 if ($ch != mb_ord($str)) {
15 echo "REAL ERROR($ch)\n";
/php-src/ext/standard/tests/strings/
H A Dstr_split_variation3.phpt142 string(7) "cape ch"
/php-src/ext/mysqlnd/
H A Dmysqlnd_charset.c1031 for (unsigned int ch = 0; ch < 255; ch++) { in mysqlnd_charsets_sanity_check() local
1032 if (mysqlnd_mbcharlen_dispatch(c->mb_charlen, ch) > 1) { in mysqlnd_charsets_sanity_check()
1033 ZEND_ASSERT(ch >= c->lowest_mb_byte); in mysqlnd_charsets_sanity_check()
/php-src/ext/hash/tests/
H A Dfnv132.phpt39 array( "ch", "6e772a5c" ),
55 array( "ch\0", "4197aed4" ),
122 array( "http://www.fourmilab.ch/gravitation/orbits/", "12e6dffe" ),
H A Dfnv164.phpt39 array( "ch", "08326507b4eb341c" ),
55 array( "ch\0", "d8d5c8186ba98b94" ),
122 array( "http://www.fourmilab.ch/gravitation/orbits/", "d47e8d8a2333c6de" ),
/php-src/ext/standard/
H A Dvar_unserializer.re337 unsigned char ch = 0;
342 ch = (ch << 4) + (**p -'0');
344 ch = (ch << 4) + (**p -'a'+10);
346 ch = (ch << 4) + (**p -'A'+10);
352 ZSTR_VAL(str)[i] = (char)ch;
H A Darray.c1799 uint32_t ch; local
1806 ch = (uint32_t)((unsigned char *)var_name)[0];
1808 if (UNEXPECTED(!ZEND_BIT_TEST(charset, ch))) {
1811 (ch < 65 /* A */ || /* Z */ ch > 90) &&
1812 (ch < 97 /* a */ || /* z */ ch > 122) &&
1813 (ch < 127 /* 0x7f */ || /* 0xff */ ch > 255)
1823 ch = (uint32_t)((unsigned char *)var_name)[i];
1828 (ch < 48 /* 0 */ || /* 9 */ ch > 57) &&
1829 (ch < 65 /* A */ || /* Z */ ch > 90) &&
1830 (ch < 97 /* a */ || /* z */ ch > 122) &&
[all …]
/php-src/ext/soap/
H A Dphp_http.c1460 char ch, done, headerbuf[8192]; in get_http_body() local
1497 ch = php_stream_getc(stream); in get_http_body()
1498 if (ch == '\r') { in get_http_body()
1499 ch = php_stream_getc(stream); in get_http_body()
1501 if (ch != '\n') { in get_http_body()

Completed in 117 milliseconds

12345678