Home
last modified time | relevance | path

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

1234567

/PHP-8.1/Zend/asm/
H A Dmake_i386_ms_pe_masm.asm10 ; | 0h | 04h | 08h | 0ch | 010h | 014h | 018h | 01ch |
17 ; | 020h | 024h | 028h | 02ch | 030h | 034h | 038h | 03ch |
63 mov [eax+0ch], ecx
70 mov ecx, [esp+0ch]
77 mov [eax+02ch], ecx
111 mov [eax+03ch], ecx
/PHP-8.1/ext/curl/tests/
H A Dbug79741.phpt12 $ch = curl_init();
13 curl_setopt($ch, CURLOPT_POSTFIELDS, new Test);
H A Dbug77535.phpt37 curl_setopt($this->curl, CURLOPT_HEADERFUNCTION, function ($ch, $data) {
40 curl_setopt($this->curl, CURLOPT_WRITEFUNCTION, function ($ch, $data) {
/PHP-8.1/ext/standard/tests/file/
H A Dbug53241.phpt14 $ch = curl_init('http://www.yahoo.com/');
15 var_dump(curl_setopt($ch, CURLOPT_FILE, $fh));
/PHP-8.1/ext/standard/tests/strings/
H A Dchunk_split_variation12.phpt14 $str = "This is str to check with heredoc ending.This\tcontains,\nspeci@! ch@r$ __with wrong \k esc…
84 speci@! ch@r$ __with wrong \k escape char 222."
87 speci@! ch@r$ __with wrong \k escape char 222."
90 specai@! ch@r$ a__with wroang \k escaape char 22a2.a"
93 specThis is simple heredoc stringi@! ch@r$ This is simple heredoc string__with wroThis is simple he…
108 heredoci@! ch@r$ This is to check chunk_split
121 specThis checks with $, %, &, charsi@! ch@r$ This checks with $, %, &, chars__with wroThis checks w…
130 white space charsi@! ch@r$ This checks and
138 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
H A Dchunk_split_variation8.phpt20 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
67 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
72 It has _speci@l ch@r$ 222:::2 !!!Now \k as escape char::: to test
77 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
H A Dstrrchr_variation5.phpt39 ch
53 ch
H A Dstr_split_variation4.phpt107 string(5) " & ch"
171 string(5) "pe ch"
178 string(5) "to ch"
H A Dchunk_split_variation6.phpt53 string(46) "This co):(ntains ):(@ # $ %):( ^ & ch):(ars):("
67 string(55) "Testing):( invali):(d \k an):(d \m es):(cape ch):(ar):("
H A Dchunk_split_variation7.phpt55 ch????ars????"
63 string(69) "Testi????ng in????valid???? \k a????nd \m???? esca????pe ch????ar????"
H A Dchunk_split_variation4.phpt130 , ch
144 ch
/PHP-8.1/ext/curl/
H A Dcurl_private.h140 void init_curl_handle(php_curl *ch);
143 void _php_curl_verify_handlers(php_curl *ch, int reporterror);
144 void _php_setup_easy_copy_handlers(php_curl *ch, php_curl *source);
/PHP-8.1/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-8.1/ext/standard/
H A Dbase64.c248 int ch; in php_base64_decode_impl() local
263 ch = *in++; in php_base64_decode_impl()
264 if (ch == base64_pad) { in php_base64_decode_impl()
269 ch = base64_reverse_table[ch]; in php_base64_decode_impl()
272 if (ch < 0) { in php_base64_decode_impl()
277 if (ch == -1) { in php_base64_decode_impl()
281 if (ch == -2 || padding) { in php_base64_decode_impl()
288 out[j] = ch << 2; in php_base64_decode_impl()
291 out[j++] |= ch >> 4; in php_base64_decode_impl()
295 out[j++] |= ch >>2; in php_base64_decode_impl()
[all …]
H A Dfile.c1924 while (ch < end) { in php_fputcsv()
1933 ch++; in php_fputcsv()
2352 ch = md->lc; in php_next_meta_token()
2356 switch (ch) { in php_next_meta_token()
2374 compliment = ch; in php_next_meta_token()
2376 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && ch != compliment && ch in php_next_meta_token()
2384 if (ch == '<' || ch == '>') { in php_next_meta_token()
2387 md->lc = ch; in php_next_meta_token()
2409 if (isalnum(ch)) { in php_next_meta_token()
2421 if (!isalpha(ch) && ch != '-') { in php_next_meta_token()
[all …]
H A Dcrypt_freesec.c182 ascii_to_bin(char ch) in ascii_to_bin() argument
184 signed char sch = ch; in ascii_to_bin()
203 ascii_is_unsafe(char ch) in ascii_is_unsafe() argument
205 return !ch || ch == '\n' || ch == ':'; in ascii_is_unsafe()
/PHP-8.1/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-8.1/main/
H A Dspprintf.c112 #define INS_CHAR(xbuf, ch, is_char) do { \ argument
114 smart_string_appendc((smart_string *)(xbuf), (ch)); \
116 smart_str_appendc((smart_str *)(xbuf), (ch)); \
128 #define PAD_CHAR(xbuf, ch, count, is_char) do { \ argument
131 memset(((smart_string *)(xbuf))->c + ((smart_string *)(xbuf))->len, (ch), (count)); \
135 memset(ZSTR_VAL(((smart_str *)(xbuf))->s) + ZSTR_LEN(((smart_str *)(xbuf))->s), (ch), (count)); \
/PHP-8.1/ext/standard/tests/array/
H A Darray_flip_variation2.phpt21 speci@! ch@r$...checking\nand\talso
94 speci@! ch@r$...checking
H A Darray_flip_variation3.phpt21 speci@! ch@r$..checking\nwith\talso
116 speci@! ch@r$..checking
H A Duasort_variation3.phpt38 and speci@! ch@r..\ncheck\talso
90 and speci@! ch@r..
/PHP-8.1/ext/com_dotnet/tests/
H A Dbug66431_0.phpt8 $text= "Xin chào cộng đồng PHP";
/PHP-8.1/Zend/
H A Dzend_smart_string.h79 static zend_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, bool persistent… in smart_string_appendc_ex() argument
81 dest->c[dest->len - 1] = ch; in smart_string_appendc_ex()
/PHP-8.1/ext/ftp/
H A Dftp.c966 int ch; in ftp_put() local
1016 if (ch == '\n' && type == FTPTYPE_ASCII) { in ftp_put()
1021 *ptr++ = ch; in ftp_put()
1048 int ch; in ftp_append() local
1088 *ptr++ = ch; in ftp_append()
1958 int ch, lastch; in ftp_genlist() local
2028 if (ch == '\n' && lastch == '\r') { in ftp_genlist()
2032 *text++ = ch; in ftp_genlist()
2034 lastch = ch; in ftp_genlist()
2242 int ch; in ftp_nb_continue_write() local
[all …]
/PHP-8.1/ext/mbstring/tests/
H A Dmb_eregi_replace.phpt17 "я"=>"ya","ч"=>"ch","с"=>"c","м"=>"m","и"=>"i","т"=>"t",

Completed in 77 milliseconds

1234567