Home
last modified time | relevance | path

Searched refs:b (Results 126 – 150 of 2615) sorted by last modified time

12345678910>>...105

/php-src/ext/opcache/jit/ir/
H A Dir_disasm.c349 ir_hashtab_bucket *b; local
463 b = labels.data;
465 if (b->val < 0) {
466 b->val = --l;
468 b++;
H A Dir_save.c41 static void ir_save_dessa_moves(const ir_ctx *ctx, int b, ir_block *bb, FILE *f) in ir_save_dessa_moves() argument
54 k = ir_phi_input_number(ctx, succ_bb, b); in ir_save_dessa_moves()
121 uint32_t b = ctx->cfg_map[i]; in ir_save() local
122 ir_block *bb = &ctx->cfg_blocks[b]; in ir_save()
123 fprintf(f, "#BB%d: end=l_%d", b, bb->end); in ir_save()
349 uint32_t b = ctx->cfg_map[i]; in ir_save() local
350 ir_block *bb = &ctx->cfg_blocks[b]; in ir_save()
352 ir_save_dessa_moves(ctx, b, bb, f); in ir_save()
H A Dir_dump.c215 fprintf(f, "BB%d:\n", b); in ir_dump_cfg_block()
279 if (b == i) { in ir_dump_cfg_block()
297 ir_dump_dessa_moves(ctx, b, bb, f); in ir_dump_cfg_block()
310 b = ctx->cfg_schedule[i]; in ir_dump_cfg()
311 bb = &ctx->cfg_blocks[b]; in ir_dump_cfg()
315 for (b = 1; b <= bb_count; b++, bb++) { in ir_dump_cfg()
482 uint32_t flags, _b, b; in ir_dump_codegen() local
506 b = ctx->cfg_schedule[_b]; in ir_dump_codegen()
508 b = _b; in ir_dump_codegen()
510 bb = &ctx->cfg_blocks[b]; in ir_dump_codegen()
[all …]
/php-src/ext/opcache/jit/
H A Dzend_jit.c112 b = blocks[b].idom; in dominates()
114 return a == b; in dominates()
133 int b = ssa->cfg.map[use]; in zend_ssa_is_last_use() local
144 (ssa->cfg.blocks[b].flags & ZEND_BB_LOOP_HEADER) ? b : ssa->cfg.blocks[b].loop_header)) { in zend_ssa_is_last_use()
1191 int b, n, *p; in zend_jit_compute_post_order() local
1202 bb = &cfg->blocks[b]; in zend_jit_compute_post_order()
1265 int b, i, end; in zend_jit() local
1318 b = sorted_blocks[--n]; in zend_jit()
1453 end = ssa->cfg.blocks[b].start + ssa->cfg.blocks[b].len - 1; in zend_jit()
2153 ssa->cfg.blocks[b].successors[0], ssa->cfg.blocks[b].successors[1], in zend_jit()
[all …]
/php-src/Zend/Optimizer/
H A Dzend_inference.h209 static zend_always_inline bool zend_add_will_overflow(zend_long a, zend_long b) { in DEFINE_SSA_OP_INFO()
210 return (b > 0 && a > ZEND_LONG_MAX - b) in DEFINE_SSA_OP_INFO()
211 || (b < 0 && a < ZEND_LONG_MIN - b); in DEFINE_SSA_OP_INFO()
213 static zend_always_inline bool zend_sub_will_overflow(zend_long a, zend_long b) { in zend_sub_will_overflow() argument
214 return (b > 0 && a < ZEND_LONG_MIN + b) in zend_sub_will_overflow()
215 || (b < 0 && a > ZEND_LONG_MAX + b); in zend_sub_will_overflow()
H A Dzend_dump.c648 if (b) { in zend_dump_op()
675 if (b) { in zend_dump_op()
710 if (b) { in zend_dump_op()
722 if (b) { in zend_dump_op()
833 if (b->len != 0) { in zend_dump_block_info()
834 fprintf(stderr, " lines=[%d-%d]", b->start, b->start + b->len - 1); in zend_dump_block_info()
860 if (b->idom >= 0) { in zend_dump_block_info()
863 if (b->level >= 0) { in zend_dump_block_info()
870 int j = b->children; in zend_dump_block_info()
1027 zend_basic_block *b; in zend_dump_op_array() local
[all …]
H A Dzend_dump.h37 ZEND_API void zend_dump_op(const zend_op_array *op_array, const zend_basic_block *b, const zend_op …
38 ZEND_API void zend_dump_op_line(const zend_op_array *op_array, const zend_basic_block *b, const zen…
/php-src/main/streams/
H A Dstreams.c1476 ssize_t b; in _php_stream_passthru() local
1488 bcount += b; in _php_stream_passthru()
1490 } while (b > 0 && mapped > bcount); in _php_stream_passthru()
1498 while ((b = php_stream_read(stream, buf, sizeof(buf))) > 0) { in _php_stream_passthru()
1499 PHPWRITE(buf, b); in _php_stream_passthru()
1500 bcount += b; in _php_stream_passthru()
1503 if (b < 0 && bcount == 0) { in _php_stream_passthru()
1504 return b; in _php_stream_passthru()
2428 return strcoll(ZSTR_VAL(*a), ZSTR_VAL(*b));
2435 return strcoll(ZSTR_VAL(*b), ZSTR_VAL(*a));
[all …]
/php-src/sapi/fpm/fpm/
H A Dfpm_conf.c568 int b; in fpm_conf_set_array() local
569 void *subconf = &b; in fpm_conf_set_array()
594 kv->value = strdup(b ? "1" : "0"); in fpm_conf_set_array()
/php-src/build/
H A Dgen_stub.php749 public static function equals(?Type $a, ?Type $b): bool { argument
750 if ($a === null || $b === null) {
751 return $a === $b;
754 if (count($a->types) !== count($b->types)) {
759 if (!$a->types[$i]->equals($b->types[$i])) {
/php-src/ext/date/
H A Dphp_date.c4444 timelib_time *b = NULL, *e = NULL; in date_interval_initialize() local
4450 timelib_strtointerval(format, format_length, &b, &e, &p, &r, &errors); in date_interval_initialize()
4463 if (b && e) { in date_interval_initialize()
4464 timelib_update_ts(b, NULL); in date_interval_initialize()
4466 *rt = timelib_diff(b, e); in date_interval_initialize()
4475 timelib_free(b); in date_interval_initialize()
5023 timelib_time *b = NULL, *e = NULL; in date_period_initialize() local
5029 timelib_strtointerval(format, format_length, &b, &e, &p, &r, &errors); in date_period_initialize()
5034 if (b) { in date_period_initialize()
5035 timelib_time_dtor(b); in date_period_initialize()
[all …]
/php-src/ext/spl/tests/SplObjectStorage/
H A Dbug53144.phpt9 $b = new SplObjectStorage();
10 $b[$o1] = "bar";
11 $b[$o2] = "baz";
13 var_dump(count($b));
14 $b->removeAll($b);
15 var_dump(count($b));
H A Dbug69108.phpt8 $b = new SplObjectStorage();
12 $b->attach($object);
15 $c = serialize(array($a, $b));
H A DSplObjectStorage_removeAllExcept_basic.phpt9 $b = (object) 'b';
14 $foo->attach($b);
17 $bar->attach($b);
22 var_dump($foo->contains($b));
/php-src/ext/phar/phar/
H A Dpharcommand.inc65 'b' => array(
575 $hashbang = $this->args['b']['val'];
1063 $hashbang = $this->args['b']['val'];
/php-src/ext/zend_test/
H A Dtest.c1303 struct bug79096 b; in bug79096() local
1305 b.a = 1; in bug79096()
1306 b.b = 1; in bug79096()
1307 return b; in bug79096()
1325 uint64_t b; member
1333 s.a.b += 10; in ffi_bug80847()
/php-src/ext/opcache/tests/jit/
H A Dsend_var_ex_002.phpt15 function test(&$a = null, ?SomeType &$b = null) {
/php-src/Zend/asm/
H A Dmake_sparc64_sysv_elf_gas.S45 add %l0, (trampoline - 1b - 8), %l0
/php-src/ext/dom/tests/
H A DDOMDocument_adoptNode.phpt9 $doc1->loadXML("<p><b>hi<i attrib=\"1\">x</i></b>world</p>");
131 <div><b>hi<i attrib="1">x</i></b></div>
H A DDOMElement_append_hierarchy_test.phpt9 $dom_original->loadXML('<p><b>hello</b><b><i>world</i></b></p>');
85 string(39) "<p><b>hello<b><i>world</i></b></b></p>
88 string(39) "<p><b>hello<i>world</i></b><b></b></p>
91 string(42) "<p><b>hello<i>world</i>foo</b><b></b></p>
94 string(39) "<p><b><i>world<b>hello</b></i></b></p>
98 string(39) "<p><b>hello</b><b><i>world</i></b></p>
102 string(27) "<p><b><i>world</i></b></p>
106 string(39) "<p><b>hello</b><b><i>world</i></b></p>
112 string(39) "<p><b>hello</b><b><i>world</i></b></p>
H A DDOMElement_get_or_has_attribute_ns_xmlns.phpt12 var_dump($dom->documentElement->getAttributeNS('http://www.w3.org/2000/xmlns/', 'b'));
14 var_dump($dom->documentElement->hasAttributeNS('http://www.w3.org/2000/xmlns/', 'b'));
H A DDOMElement_prepend_hierarchy_test.phpt9 $dom_original->loadXML('<p><b>hello</b><b><i>world</i></b></p>');
92 string(39) "<p><b><b><i>world</i></b>hello</b></p>
95 string(39) "<p><b><i>world</i>hello</b><b></b></p>
98 string(42) "<p><b><i>world</i>foohello</b><b></b></p>
101 string(39) "<p><b><i><b>hello</b>world</i></b></p>
104 string(42) "<p><b><i><b>hello</b>fooworld</i></b></p>
108 string(39) "<p><b>hello</b><b><i>world</i></b></p>
112 string(27) "<p><b><i>world</i></b></p>
116 string(39) "<p><b>hello</b><b><i>world</i></b></p>
122 string(39) "<p><b>hello</b><b><i>world</i></b></p>
/php-src/ext/pdo_mysql/
H A Dmysql_statement.c389 PDO_MYSQL_PARAM_BIND *b; in pdo_mysql_stmt_param_hook() local
406 b = &S->params[param->paramno]; in pdo_mysql_stmt_param_hook()
407 param->driver_data = b; in pdo_mysql_stmt_param_hook()
428 *b->is_null = 0; in pdo_mysql_stmt_param_hook()
430 *b->is_null = 1; in pdo_mysql_stmt_param_hook()
432 b->buffer = NULL; in pdo_mysql_stmt_param_hook()
433 b->buffer_length = 0; in pdo_mysql_stmt_param_hook()
434 *b->length = 0; in pdo_mysql_stmt_param_hook()
514 b->buffer_type = MYSQL_TYPE_TINY; in pdo_mysql_stmt_param_hook()
519 b->buffer_type = MYSQL_TYPE_TINY; in pdo_mysql_stmt_param_hook()
[all …]
/php-src/ext/gd/libgd/
H A Dgd.c318 #define MIN(a,b) ((a)<(b)?(a):(b)) argument
320 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
322 #define MAX(a,b) ((a)<(b)?(b):(a)) argument
324 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
355 b = 1 - v; in RGB_to_HWB()
412 v = 1 - b;
516 im->blue[ct] = b; in gdImageColorAllocateAlpha()
1691 b=h>>1; in gdImageEllipse()
1698 bq = b * b; in gdImageEllipse()
1732 b=h>>1; in gdImageFilledEllipse()
[all …]
H A Dgd_interpolation.c71 #define MIN(a,b) ((a)<(b)?(a):(b)) argument
73 #define MIN3(a,b,c) ((a)<(b)?(MIN(a,c)):(MIN(b,c))) argument
75 #define MAX(a,b) ((a)<(b)?(b):(a)) argument
77 #define MAX3(a,b,c) ((a)<(b)?(MAX(b,c)):(MAX(a,c))) argument
540 double a, b, c, d; in filter_bspline() local
547 if ((xp1) <= 0.0f) b = 0.0f; else b = xp1*xp1*xp1; in filter_bspline()
697 int r, g, b, a; in getPixelInterpolateWeight() local
717 b = CLAMP(b, 0, 255); in getPixelInterpolateWeight()
719 return gdTrueColorAlpha(r, g, b, a); in getPixelInterpolateWeight()
929 register unsigned char r = 0, g = 0, b = 0, a = 0; in _gdScaleRow() local
[all …]

Completed in 122 milliseconds

12345678910>>...105