Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 43) sorted by path

12

/PHP-7.4/
H A D.gdbinit459 set $depth = 0
461 set $tmp = $depth
466 set $depth = $depth + 1
474 while $depth != 0
475 set $tmp = $depth
481 set $depth = $depth - 1
H A DUPGRADING359 maximum depth of structures permitted during unserialization, and are
360 intended to prevent stack overflows. The default depth limit is 4096 and
/PHP-7.4/Zend/tests/
H A Dbug62680.phpt2 Bug #62680 (Function isset() throws fatal error on set array if non-existent key depth >= 3)
/PHP-7.4/Zend/
H A Dzend_compile.c4228 depth--; in zend_handle_loops_and_finally_ex()
4238 depth--; in zend_handle_loops_and_finally_ex()
4241 return (depth == 0); in zend_handle_loops_and_finally_ex()
4270 depth--; in zend_has_finally_ex()
4367 zend_long depth; in zend_compile_break_continue() local
4386 depth = 1; in zend_compile_break_continue()
4396 depth, depth == 1 ? "" : "s"); in zend_compile_break_continue()
4408 if (depth == 1) { in zend_compile_break_continue()
4412 depth + 1); in zend_compile_break_continue()
4417 depth, depth, depth + 1); in zend_compile_break_continue()
[all …]
H A Dzend_signal.c97 if (UNEXPECTED(SIGG(depth) == 0)) { /* try to handle signal */ in zend_signal_handler_defer()
331 SIGG(depth) = 0; in zend_signal_activate()
342 if (SIGG(depth) != 0) { in zend_signal_deactivate()
343 …zend_error(E_CORE_WARNING, "zend_signal: shutdown with non-zero blocking depth (%d)", SIGG(depth)); in zend_signal_deactivate()
362 SIGG(depth) = 0; in zend_signal_deactivate()
H A Dzend_signal.h55 int depth; member
79 # define ZEND_SIGNAL_BLOCK_INTERRUPTIONS() if (EXPECTED(zend_signal_globals_id)) { SIGG(depth)++; }
80 …INTERRUPTIONS() if (EXPECTED(zend_signal_globals_id) && UNEXPECTED(((SIGG(depth)--) == SIGG(blocke…
82 # define ZEND_SIGNAL_BLOCK_INTERRUPTIONS() SIGG(depth)++;
83 # define ZEND_SIGNAL_UNBLOCK_INTERRUPTIONS() if (((SIGG(depth)--) == SIGG(blocked))) { zend_signal…
/PHP-7.4/azure/
H A Dcommunity_job.yml51 git clone https://github.com/laravel/framework.git --branch=8.x --depth=1
63 git clone https://github.com/symfony/symfony.git --depth=1
77 git clone https://github.com/amphp/amp.git --branch=master --depth=1
/PHP-7.4/ext/fileinfo/
H A Dmagicdata.patch87 # skip arches.3200 , Finder.Root , Slp.1 by looking for low pixel depth 1 8 15 16 24 32
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic15326 # skip arches.3200 , Finder.Root , Slp.1 by looking for low pixel depth 1 8 15 16 24 32
15372 # Image Pixel depth 1 8 15 16 24 32
15378 # Image descriptor: bits 3-0 give the alpha channel depth, bits 5-4 give direction
16013 # is a constant which is always either 1 or 2. Offset 12 is the pixmap depth,
16082 # test for bytes 0x0a,version byte (0,2,3,4,5),compression byte flag(0,1), bit depth (>0) of PCX or…
16084 # for PCX bit depth > 0
16703 # Color depth.
16720 # NOTE: 15-bit color formats usually have 16-bit listed as the color depth.
22145 >>>5 ubyte >0 MSX G9B image, depth=%d
H A Dmagic私はガラスを食べられます15326 # skip arches.3200 , Finder.Root , Slp.1 by looking for low pixel depth 1 8 15 16 24 32
15372 # Image Pixel depth 1 8 15 16 24 32
15378 # Image descriptor: bits 3-0 give the alpha channel depth, bits 5-4 give direction
16013 # is a constant which is always either 1 or 2. Offset 12 is the pixmap depth,
16082 # test for bytes 0x0a,version byte (0,2,3,4,5),compression byte flag(0,1), bit depth (>0) of PCX or…
16084 # for PCX bit depth > 0
16703 # Color depth.
16720 # NOTE: 15-bit color formats usually have 16-bit listed as the color depth.
22145 >>>5 ubyte >0 MSX G9B image, depth=%d
/PHP-7.4/ext/gd/libgd/
H A Dbmp.h86 signed short int depth; member
H A Dgd_bmp.c477 if (info->depth >= 16) { in gdImageCreateFromBmpCtx()
489 switch (info->depth) { in gdImageCreateFromBmpCtx()
620 info->numcolors = 1 << info->depth; in bmp_read_os2_v1_info()
684 if (info->depth == 24) { in bmp_read_direct()
693 if (info->depth != 8) { in bmp_read_direct()
699 if (info->depth != 4) { in bmp_read_direct()
734 if (info->depth == 16) { in bmp_read_direct()
743 } else if (info->depth == 24) { in bmp_read_direct()
1025 int pixels_per_byte = 8 / info->depth; in bmp_read_rle()
1040 …index = (rle_data & (((1 << info->depth) - 1) << (8 - (j * info->depth)))) >> (8 - (j * info->dept… in bmp_read_rle()
[all …]
/PHP-7.4/ext/json/
H A Djson.c49 ZEND_ARG_INFO(0, depth)
55 ZEND_ARG_INFO(0, depth)
199 encoder.max_depth = depth; in php_json_encode_ex()
274 zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; in PHP_FUNCTION() local
280 Z_PARAM_LONG(depth) in PHP_FUNCTION()
284 encoder.max_depth = (int)depth; in PHP_FUNCTION()
317 zend_long depth = PHP_JSON_PARSER_DEFAULT_DEPTH; in PHP_FUNCTION() local
324 Z_PARAM_LONG(depth) in PHP_FUNCTION()
341 if (depth <= 0) { in PHP_FUNCTION()
346 if (depth > INT_MAX) { in PHP_FUNCTION()
[all …]
H A Djson_encoder.c85 for (i = 0; i < encoder->depth; ++i) { in php_json_pretty_print_indent()
159 ++encoder->depth; in php_json_encode_array()
231 if (encoder->depth > encoder->max_depth) { in php_json_encode_array()
238 --encoder->depth; in php_json_encode_array()
H A Djson_parser.y35 #define PHP_JSON_DEPTH_DEC --parser->depth
37 if (parser->max_depth && parser->depth >= parser->max_depth) { \
41 ++parser->depth
316 parser->depth = 1; in php_json_parser_init_ex()
H A Dphp_json.h101 PHP_JSON_API int php_json_encode_ex(smart_str *buf, zval *val, int options, zend_long depth);
103 …_json_decode_ex(zval *return_value, char *str, size_t str_len, zend_long options, zend_long depth);
105 …e int php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, zend_long depth) in php_json_decode() argument
107 return php_json_decode_ex(return_value, str, str_len, assoc ? PHP_JSON_OBJECT_AS_ARRAY : 0, depth); in php_json_decode()
H A Dphp_json_encoder.h28 int depth; member
H A Dphp_json_parser.h58 int depth; member
/PHP-7.4/ext/json/tests/
H A D007.phpt29 string(28) "Maximum stack depth exceeded"
H A Djson_decode_error.phpt16 echo "\n-- Testing json_decode() function with depth below 0 --\n";
34 -- Testing json_decode() function with depth below 0 --
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt95 // -n - print function nesting depth
H A Dmysqli_store_result_copy.phpt105 /* There's no need for in-depth testing here. If you want in-depth switch mysqlnd
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c297 int err, depth, ret; in verify_callback() local
306 depth = X509_STORE_CTX_get_error_depth(ctx); in verify_callback()
322 if ((zend_ulong)depth > allowed_depth) { in verify_callback()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_jit_compile.c1239 …y_fail(compiler_common *common, PCRE2_SPTR cc, int *private_data_start, sljit_s32 depth, int start) in detect_early_fail() argument
1495 if (depth >= 4) in detect_early_fail()
1505 count = detect_early_fail(common, cc, private_data_start, depth + 1, count); in detect_early_fail()
H A Dpcre2_study.c1690 int depth = 0; in PRIV() local
1691 int rc = set_start_bits(re, code, utf, ucp, &depth); in PRIV()

Completed in 186 milliseconds

12