Home
last modified time | relevance | path

Searched refs:c (Results 201 – 225 of 4053) sorted by last modified time

12345678910>>...163

/PHP-7.4/ext/gd/libgd/
H A Dgd_gif_out.c98 static void char_out (int c, GifCtx *ctx);
510 register int c; local
551 while ( (c = GIFNextPixel( im, ctx )) != (unsigned) EOF ) {
553 while ( (c = GIFNextPixel( im, ctx )) != EOF ) { /* } */
558 fcode = (long) (((long) c << maxbits) + ent);
559 i = (((code_int)c << hshift) ^ ent); /* xor hashing */
582 ent = c;
760 char_out(int c, GifCtx *ctx) argument
762 ctx->accum[ ctx->a_count++ ] = c;
/PHP-7.4/Zend/
H A Dzend_ini_parser.y148 zval *c, tmp; in zend_ini_get_constant() local
152 && (c = zend_get_constant(Z_STR_P(name))) != 0) { in zend_ini_get_constant()
153 if (Z_TYPE_P(c) != IS_STRING) { in zend_ini_get_constant()
154 ZVAL_COPY_OR_DUP(&tmp, c); in zend_ini_get_constant()
159 c = &tmp; in zend_ini_get_constant()
161 ZVAL_NEW_STR(result, zend_string_init(Z_STRVAL_P(c), Z_STRLEN_P(c), ZEND_SYSTEM_INI)); in zend_ini_get_constant()
162 if (c == &tmp) { in zend_ini_get_constant()
H A Dzend_stream.c101 int c = '*'; in zend_stream_read() local
104 for (n = 0; n < len && (c = zend_stream_getc(file_handle)) != EOF && c != '\n'; ++n) { in zend_stream_read()
105 buf[n] = (char)c; in zend_stream_read()
107 if (c == '\n') { in zend_stream_read()
108 buf[n++] = (char)c; in zend_stream_read()
H A Dzend.h275 #define ZEND_PUTC(c) zend_write(&(c), 1) argument
H A Dzend_operators.h130 #define ZEND_IS_DIGIT(c) ((c) >= '0' && (c) <= '9') argument
131 #define ZEND_IS_XDIGIT(c) (((c) >= 'A' && (c) <= 'F') || ((c) >= 'a' && (c) <= 'f')) argument
189 static zend_always_inline const void *zend_memrchr(const void *s, int c, size_t n) in zend_memrchr() argument
197 if (*e == (const unsigned char)c) { in zend_memrchr()
/PHP-7.4/ext/shmop/tests/
H A D002.phpt31 var_dump(shmop_open(1338, "c", 0666, 0));
H A Dshmop_open_private.phpt11 $shm1 = shmop_open(0, 'c', 0777, 1024);
14 $shm2 = shmop_open(0, 'c', 0777, 1024);
/PHP-7.4/ext/soap/tests/
H A Dbug79536.phpt44 public $b="c";
/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_latin.phpt7 * Source code: ext/pcre/php_pcre.c
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_printint.c94 uint32_t c = *ptr; in print_char() local
116 if (PRINTABLE(c)) fprintf(f, "%c", (char)c); in print_char()
117 else if (c < 0x80) fprintf(f, "\\x%02x", c); in print_char()
135 if ((c & 0xc0) != 0xc0) in print_char()
145 c = (c & PRIV(utf8_table3)[a]) << s; in print_char()
170 c = (((c & 0x3ff) << 10) | (ptr[1] & 0x3ff)) + 0x10000; in print_char()
209 uint32_t c = *ptr++; in print_custring() local
210 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring()
219 uint32_t c = *ptr++; in print_custring_bylen() local
220 if (PRINTABLE(c)) fprintf(f, "%c", c); else fprintf(f, "\\x{%x}", c); in print_custring_bylen()
[all …]
H A Dpcre2_jit_match.c42 #error This file must be included from pcre2_jit_compile.c.
H A Dpcre2_intmodedep.h217 #define CHMAX_255(c) ((c) <= 255u) argument
223 #define CHMAX_255(c) ((c) <= 255u) argument
224 #define MAX_255(c) ((c) <= 255u) argument
227 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default)) argument
261 #define GETCHAR(c, eptr) c = *eptr; argument
266 #define PUTCHAR(c, p) (*p = c, 1) argument
303 if (c >= 0xc0u) GETUTF8(c, eptr);
317 if (c >= 0xc0u) GETUTF8INC(c, eptr);
358 PRIV(ord2utf)(c,p) : (*p = c, 1))
464 PRIV(ord2utf)(c,p) : (*p = c, 1))
[all …]
/PHP-7.4/sapi/cli/tests/
H A Dbug61977.phpt13 * If a Mime Type is added in php_cli_server.c, add it to this array and update
/PHP-7.4/ext/mbstring/tests/
H A Dmb_substitute_character_basic.phpt12 * Source code: ext/mbstring/mbstring.c
H A Dmb_substitute_character_variation1.phpt12 * Source code: ext/mbstring/mbstring.c
/PHP-7.4/ext/opcache/tests/
H A Dexit_in_call_arg.phpt6 function test($c) {
7 if ($c) {
/PHP-7.4/ext/iconv/
H A Diconv.c57 #define _php_iconv_memequal(a, b, c) \ argument
58 (memcmp(a, b, c) == 0)
196 static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd);
510 static php_iconv_err_t _php_iconv_appendc(smart_str *d, const char c, iconv_t cd) in _php_iconv_appendc() argument
512 return _php_iconv_appendl(d, &c, 1, cd); in _php_iconv_appendc()
/PHP-7.4/ext/fileinfo/libmagic/
H A Dsoftmagic.c148 #define F(a, b, c) file_fmtcheck((a), (b), (c), __FILE__, __LINE__) argument
167 #define F(a, b, c) fmtcheck((b), (c)) argument
169 #define F(a, b, c) ((b)) argument
341 ms->c.li[cont_level - 1].off; in match()
377 ms->c.li[cont_level].last_match = 0; in match()
382 ms->c.li[cont_level].last_match = 1; in match()
385 ms->c.li[cont_level].got_match = 0; in match()
390 ms->c.li[cont_level].got_match = 1; in match()
434 &ms->c.li[cont_level].off)) { in match()
1310 const char *c; in mcopy() local
[all …]
/PHP-7.4/ext/mbstring/
H A Dphp_unicode.c310 static int convert_case_filter(int c, void *void_data) in convert_case_filter() argument
318 if (UNEXPECTED((unsigned) c > 0xffffff)) { in convert_case_filter()
319 (*data->next_filter->filter_function)(c, data->next_filter); in convert_case_filter()
325 out[0] = php_unicode_toupper_simple(c, data->no_encoding); in convert_case_filter()
330 len = php_unicode_toupper_full(c, data->no_encoding, out); in convert_case_filter()
334 out[0] = php_unicode_tolower_simple(c, data->no_encoding); in convert_case_filter()
339 len = php_unicode_tolower_full(c, data->no_encoding, out); in convert_case_filter()
343 len = php_unicode_tofold_full(c, data->no_encoding, out); in convert_case_filter()
347 out[0] = php_unicode_tofold_simple(c, data->no_encoding); in convert_case_filter()
369 if (!php_unicode_is_case_ignorable(c)) { in convert_case_filter()
[all …]
/PHP-7.4/ext/ffi/tests/
H A D022.phpt22 test_size(3, "struct {char a; uint8_t b; uint8_t c;}");
29 test_size(6, "struct {char a; uint8_t b; uint8_t c;}[2]");
36 test_align(1, "union {char a; uint8_t b; uint8_t c;}");
/PHP-7.4/ext/mysqlnd/
H A Dconfig.w328 "mysqlnd_alloc.c " +
9 "mysqlnd_auth.c " +
12 "mysqlnd_charset.c " +
13 "mysqlnd_commands.c " +
14 "mysqlnd_debug.c " +
15 "mysqlnd_driver.c " +
19 "mysqlnd_plugin.c " +
21 "mysqlnd_ps.c " +
24 "mysqlnd_result.c " +
27 "mysqlnd_vio.c " +
[all …]
/PHP-7.4/ext/intl/converter/
H A Dconverter.c197 UChar c; in php_converter_append_toUnicode_target() local
198 U8_NEXT(strval, i, strlen, c); in php_converter_append_toUnicode_target()
199 *(args->target++) = c; in php_converter_append_toUnicode_target()
318 UChar32 c; in php_converter_from_u_callback() local
319 U16_NEXT(codeUnits, i, length, c); in php_converter_from_u_callback()
320 add_next_index_long(&zargs[1], c); in php_converter_from_u_callback()
/PHP-7.4/ext/standard/tests/general_functions/
H A Dbug78569.phpt14 $cmd = sprintf('"findstr" "/b" "/c:// FIND ME" "%s" 2>&1', __FILE__);
/PHP-7.4/ext/standard/
H A Dproc_open.c425 char c; in append_win_escaped_arg() local
428 while ((c = *arg)) { in append_win_escaped_arg()
429 if (c == '\\') { in append_win_escaped_arg()
432 if (c == '"') { in append_win_escaped_arg()
437 smart_string_appendc(str, c); in append_win_escaped_arg()
469 return str.c; in create_win_command_from_args()
/PHP-7.4/Zend/tests/
H A Dbug77589.phpt10 c = true
15 c = yes
28 ["c"]=>
37 ["c"]=>

Completed in 89 milliseconds

12345678910>>...163