Home
last modified time | relevance | path

Searched refs:ch (Results 101 – 125 of 166) sorted by relevance

1234567

/PHP-7.4/ext/gd/
H A Dgd_ctx.c29 unsigned char ch = (unsigned char) c; in _php_image_output_putc() local
30 php_write(&ch, 1); in _php_image_output_putc()
46 char ch = (char) c; in _php_image_stream_putc() local
48 php_stream_write(stream, &ch, 1); in _php_image_stream_putc()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_internal.h1807 #define REAL_GET_UCD(ch) (PRIV(ucd_records) + \ argument
1812 #define GET_UCD(ch) ((ch > MAX_UTF_CODE_POINT)? \ argument
1813 PRIV(dummy_ucd_record) : REAL_GET_UCD(ch))
1815 #define GET_UCD(ch) REAL_GET_UCD(ch) argument
1818 #define UCD_CHARTYPE(ch) GET_UCD(ch)->chartype argument
1819 #define UCD_SCRIPT(ch) GET_UCD(ch)->script argument
1820 #define UCD_CATEGORY(ch) PRIV(ucp_gentype)[UCD_CHARTYPE(ch)] argument
1821 #define UCD_GRAPHBREAK(ch) GET_UCD(ch)->gbprop argument
1822 #define UCD_CASESET(ch) GET_UCD(ch)->caseset argument
1823 #define UCD_OTHERCASE(ch) ((uint32_t)((int)ch + (int)(GET_UCD(ch)->other_case))) argument
[all …]
/PHP-7.4/ext/standard/
H A Dbase64.c250 int ch; in php_base64_decode_impl() local
265 ch = *in++; in php_base64_decode_impl()
266 if (ch == base64_pad) { in php_base64_decode_impl()
271 ch = base64_reverse_table[ch]; in php_base64_decode_impl()
274 if (ch < 0) { in php_base64_decode_impl()
279 if (ch == -1) { in php_base64_decode_impl()
283 if (ch == -2 || padding) { in php_base64_decode_impl()
290 out[j] = ch << 2; in php_base64_decode_impl()
293 out[j++] |= ch >> 4; in php_base64_decode_impl()
297 out[j++] |= ch >>2; in php_base64_decode_impl()
[all …]
H A Dfile.c1948 while (ch < end) { in php_fputcsv()
1957 ch++; in php_fputcsv()
2392 ch = md->lc; in php_next_meta_token()
2396 switch (ch) { in php_next_meta_token()
2414 compliment = ch; in php_next_meta_token()
2416 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && ch != compliment && ch in php_next_meta_token()
2424 if (ch == '<' || ch == '>') { in php_next_meta_token()
2427 md->lc = ch; in php_next_meta_token()
2449 if (isalnum(ch)) { in php_next_meta_token()
2461 if (!isalpha(ch) && ch != '-') { in php_next_meta_token()
[all …]
H A Dcrypt_freesec.c184 ascii_to_bin(char ch) in ascii_to_bin() argument
186 signed char sch = ch; in ascii_to_bin()
205 ascii_is_unsafe(char ch) in ascii_is_unsafe() argument
207 return !ch || ch == '\n' || ch == ':'; in ascii_is_unsafe()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrrchr_variation5.phpt39 ch
53 ch
H A Dchunk_split_variation8.phpt26 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
72 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
77 It has _speci@l ch@r$ 222:::2 !!!Now \k as escape char::: to test
82 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
H A Dstr_split_variation4.phpt115 string(5) " & ch"
179 string(5) "pe ch"
186 string(5) "to ch"
H A Dchunk_split_variation7.phpt61 ch????ars????"
69 string(69) "Testi????ng in????valid???? \k a????nd \m???? esca????pe ch????ar????"
H A Dchunk_split_variation4.phpt136 , ch
150 ch
H A Dchunk_split_variation6.phpt59 string(46) "This co):(ntains ):(@ # $ %):( ^ & ch):(ars):("
73 string(55) "Testing):( invali):(d \k an):(d \m es):(cape ch):(ar):("
/PHP-7.4/ext/gd/libgd/
H A Dgd_gd.c193 int ch; in gdImageCreateFromGdCtx() local
194 ch = gdGetC(in); in gdImageCreateFromGdCtx()
195 if (ch == EOF) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
/PHP-7.4/ext/curl/tests/
H A Dbug77535.phpt37 curl_setopt($this->curl, CURLOPT_HEADERFUNCTION, function ($ch, $data) {
40 curl_setopt($this->curl, CURLOPT_WRITEFUNCTION, function ($ch, $data) {
/PHP-7.4/ext/standard/tests/array/
H A Darray_flip_variation2.phpt26 speci@! ch@r$...checking\nand\talso
102 speci@! ch@r$...checking
H A Darray_flip_variation3.phpt26 speci@! ch@r$..checking\nwith\talso
121 speci@! ch@r$..checking
H A Duasort_variation3.phpt50 and speci@! ch@r..\ncheck\talso
103 and speci@! ch@r..
/PHP-7.4/main/
H A Dspprintf.c118 #define INS_CHAR(xbuf, ch, is_char) do { \ argument
120 smart_string_appendc((smart_string *)(xbuf), (ch)); \
122 smart_str_appendc((smart_str *)(xbuf), (ch)); \
134 #define PAD_CHAR(xbuf, ch, count, is_char) do { \ argument
137 memset(((smart_string *)(xbuf))->c + ((smart_string *)(xbuf))->len, (ch), (count)); \
141 memset(ZSTR_VAL(((smart_str *)(xbuf))->s) + ZSTR_LEN(((smart_str *)(xbuf))->s), (ch), (count)); \
/PHP-7.4/ext/curl/
H A Dphp_curl.h217 void _php_curl_verify_handlers(php_curl *ch, int reporterror);
218 void _php_setup_easy_copy_handlers(php_curl *ch, php_curl *source);
/PHP-7.4/Zend/
H A Dzend_smart_string.h81 static zend_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, zend_bool persi… in smart_string_appendc_ex() argument
83 dest->c[dest->len - 1] = ch; in smart_string_appendc_ex()
H A Dzend_smart_str.h113 static zend_always_inline void smart_str_appendc_ex(smart_str *dest, char ch, zend_bool persistent)… in smart_str_appendc_ex() argument
115 ZSTR_VAL(dest->s)[new_len - 1] = ch; in smart_str_appendc_ex()
H A Dzend_ini_scanner.l126 #define EAT_TRAILING_WHITESPACE_EX(ch) \ argument
128 (ch != 'X' && yytext[yyleng - 1] == ch) || \
/PHP-7.4/ext/com_dotnet/tests/
H A Dbug66431_0.phpt10 $text= "Xin chào cộng đồng PHP";
H A Dbug66431_1.phpt17 $text= "Xin chào cộng đồng PHP";
/PHP-7.4/ext/ftp/
H A Dftp.c994 int ch; in ftp_put() local
1044 if (ch == '\n' && type == FTPTYPE_ASCII) { in ftp_put()
1049 *ptr++ = ch; in ftp_put()
1077 int ch; in ftp_append() local
1117 *ptr++ = ch; in ftp_append()
2008 int ch, lastch; in ftp_genlist() local
2078 if (ch == '\n' && lastch == '\r') { in ftp_genlist()
2082 *text++ = ch; in ftp_genlist()
2084 lastch = ch; in ftp_genlist()
2287 int ch; in ftp_nb_continue_write() local
[all …]
/PHP-7.4/ext/mbstring/tests/
H A Dmb_eregi_replace.phpt16 "я"=>"ya","ч"=>"ch","с"=>"c","м"=>"m","и"=>"i","т"=>"t",

Completed in 58 milliseconds

1234567