Home
last modified time | relevance | path

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

12345678

/php-src/ext/ctype/tests/
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/ext/opcache/jit/ir/
H A Dir_x86.h14 _(R1, rcx, ecx, cx, cl, ch) \
52 _(R1, ___, ecx, cx, cl, ch) \
H A Dir.c80 char ch; local
83 ch = *s;
84 switch (ch) {
99 if (ch < 32) {
101 if (ch >= 0 && ch < 32) {
104 '0' + ((ch >> 6) % 8),
105 '0' + ((ch >> 3) % 8),
106 '0' + (ch % 8));
109 fputc(ch, f);
/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.c4528 Z_PARAM_LONG(ch) in ZEND_METHOD()
5952 value = val->ch;
6358 length = len->ch;
7171 val->ch = val->ch OP op2->ch; \
7229 val->ch = val->ch OP op2->ch; \
7299 val->i64 = val->ch OP op2->ch; \
7596 val->ch = -val->ch;
7610 val->ch = ~val->ch;
7800 val->ch = '\b';
7824 val->ch = n;
[all …]
H A Dphp_ffi.h201 signed char ch; member
/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.c1802 uint32_t ch; local
1809 ch = (uint32_t)((unsigned char *)var_name)[0];
1811 if (UNEXPECTED(!ZEND_BIT_TEST(charset, ch))) {
1814 (ch < 65 /* A */ || /* Z */ ch > 90) &&
1815 (ch < 97 /* a */ || /* z */ ch > 122) &&
1816 (ch < 127 /* 0x7f */ || /* 0xff */ ch > 255)
1826 ch = (uint32_t)((unsigned char *)var_name)[i];
1831 (ch < 48 /* 0 */ || /* 9 */ ch > 57) &&
1832 (ch < 65 /* A */ || /* Z */ ch > 90) &&
1833 (ch < 97 /* a */ || /* z */ ch > 122) &&
[all …]
H A Dstring.c2721 const unsigned char ch = ZSTR_VAL(str)[0]; local
2722 unsigned char r = zend_toupper_ascii(ch);
2723 if (r == ch) {
3080 static zend_always_inline zend_long count_chars(const char *p, zend_long length, char ch) argument
3087 __m128i search = _mm_set1_epi8(ch);
3113 count += (*p == ch);
3118 while ((p = memchr(p, ch, endp-p))) {
6022 char *char_list = NULL, ch[256]; local
6054 php_charmask((const unsigned char *) char_list, char_list_len, ch);
6061 if ((*p == '\'' && (!char_list || !ch['\''])) || (*p == '-' && (!char_list || !ch['-']))) {
[all …]
/php-src/ext/soap/
H A Dphp_http.c1448 char ch, done, headerbuf[8192]; in get_http_body() local
1485 ch = php_stream_getc(stream); in get_http_body()
1486 if (ch == '\r') { in get_http_body()
1487 ch = php_stream_getc(stream); in get_http_body()
1489 if (ch != '\n') { in get_http_body()
H A Dphp_xml.c69 static void soap_ignorableWhitespace(void *ctx, const xmlChar *ch, int len) in soap_ignorableWhitespace() argument
/php-src/Zend/
H A Dzend_operators.c2516 int ch; in increment_string() local
2555 ch = s[pos]; in increment_string()
2556 if (ch >= 'a' && ch <= 'z') { in increment_string()
2557 if (ch == 'z') { in increment_string()
2565 } else if (ch >= 'A' && ch <= 'Z') { in increment_string()
2566 if (ch == 'Z') { in increment_string()
2574 } else if (ch >= '0' && ch <= '9') { in increment_string()
2575 if (ch == '9') { in increment_string()
/php-src/win32/
H A Dglob.c831 static Char *g_strchr(Char *str, int ch) in g_strchr() argument
834 if (*str == ch) in g_strchr()
/php-src/main/
H A Dsnprintf.c463 #define PAD( width, len, ch ) do \ argument
465 INS_CHAR( ch, sp, bep, cc ) ; \
/php-src/ext/ftp/
H A Dftp.c2004 int ch, lastch; in ftp_genlist() local
2073 while ((ch = php_stream_getc(tmpstream)) != EOF) { in ftp_genlist()
2074 if (ch == '\n' && lastch == '\r') { in ftp_genlist()
2078 *text++ = ch; in ftp_genlist()
2080 lastch = ch; in ftp_genlist()
/php-src/ext/gd/
H A Dgd.c2746 int ch = 0, col, x, y, i, l = 0; in php_imagechar() local
2765 ch = (int)((unsigned char)*C); in php_imagechar()
2778 gdImageChar(im, font, x, y, ch, col); in php_imagechar()
2781 php_gdimagecharup(im, font, x, y, ch, col); in php_imagechar()
3974 unsigned char ch = (unsigned char) c; in _php_image_output_putc() local
3975 php_write(&ch, 1); in _php_image_output_putc()
3989 char ch = (char) c; in _php_image_stream_putc() local
3991 php_stream_write(stream, &ch, 1); in _php_image_stream_putc()

Completed in 152 milliseconds

12345678