/php-src/ext/gd/tests/ |
H A D | libgd00100.phpt | 26 $top = 240; 31 $x, $top, 32 $x+2*$d, $top, 40 $top = 40; 45 $left, $top, 46 $right, $top, 54 $top = 240; 59 $left, $top, 60 $right, $top, 68 $top = -15; [all …]
|
/php-src/Zend/ |
H A D | zend_stack.c | 28 stack->top = 0; in zend_stack_init() 36 if (stack->top >= stack->max) { in zend_stack_push() 41 return stack->top++; in zend_stack_push() 47 if (stack->top > 0) { in zend_stack_top() 57 --stack->top; in zend_stack_del_top() 74 return stack->top == 0; in zend_stack_is_empty() 95 return stack->top; in zend_stack_count() 105 for (i=stack->top-1; i>=0; i--) { in zend_stack_apply() 112 for (i=0; i<stack->top; i++) { in zend_stack_apply() 135 for (i=0; i<stack->top; i++) { in zend_stack_apply_with_argument() [all …]
|
H A D | zend_ptr_stack.h | 26 int top, max; member 48 if (stack->top+count > stack->max) { \ in END_EXTERN_C() 52 } while (stack->top+count > stack->max); \ in END_EXTERN_C() 54 stack->top_element = stack->elements+stack->top; \ in END_EXTERN_C() 65 stack->top += ZEND_PTR_STACK_NUM_ARGS; 79 stack->top += ZEND_PTR_STACK_NUM_ARGS; in zend_ptr_stack_2_push() 91 stack->top -= 3; in zend_ptr_stack_3_pop() 98 stack->top -= 2; in zend_ptr_stack_2_pop() 105 stack->top++; in zend_ptr_stack_push() 111 stack->top--; in zend_ptr_stack_pop() [all …]
|
H A D | zend_ptr_stack.c | 27 stack->top = stack->max = 0; in zend_ptr_stack_init_ex() 47 stack->top++; in zend_ptr_stack_n_push() 64 stack->top--; in zend_ptr_stack_n_pop() 82 int i = stack->top; in zend_ptr_stack_apply() 93 while (i < stack->top) { in zend_ptr_stack_reverse_apply() 103 int i = stack->top; in zend_ptr_stack_clean() 109 stack->top = 0; in zend_ptr_stack_clean() 116 return stack->top; in zend_ptr_stack_num_elements()
|
H A D | zend_objects_API.c | 31 objects->top = 1; /* Skip 0 so that handles are true */ in zend_objects_store_init() 46 if (objects->top > 1) { in zend_objects_store_call_destructors() 48 for (i = 1; i < objects->top; i++) { in zend_objects_store_call_destructors() 68 if (objects->object_buckets && objects->top > 1) { in zend_objects_store_mark_destructed() 70 zend_object **end = objects->object_buckets + objects->top; in zend_objects_store_mark_destructed() 87 if (objects->top <= 1) { in zend_objects_store_free_object_storage() 94 obj_ptr = objects->object_buckets + objects->top; in zend_objects_store_free_object_storage() 135 handle = EG(objects_store).top++; in zend_objects_store_put_cold() 150 } else if (UNEXPECTED(EG(objects_store).top == EG(objects_store).size)) { in zend_objects_store_put() 154 handle = EG(objects_store).top++; in zend_objects_store_put()
|
/php-src/sapi/phpdbg/ |
H A D | phpdbg_cmd.c | 449 stack->top = next; in phpdbg_stack_push() 450 next->top = NULL; in phpdbg_stack_push() 454 next->top = stack->top; in phpdbg_stack_push() 468 stack->top = param->top; in phpdbg_stack_separate() 483 if (!top || top->type == STACK_PARAM) { in phpdbg_stack_verify() 523 if (top && top->type == STACK_PARAM) { in phpdbg_stack_verify() 549 if (top) { in phpdbg_stack_verify() 550 top = top->next; in phpdbg_stack_verify() 623 (*top) = (*top)->next; in phpdbg_stack_resolve() 658 if (command->subs && (*top) && ((*top)->type == STR_PARAM)) { in phpdbg_stack_resolve() [all …]
|
H A D | phpdbg_parser.y | 68 | input T_SEPARATOR command { phpdbg_stack_separate($1.top); $$ = $3; } 73 : parameters { $$.top = PHPDBG_G(parser_stack)->top; } 74 …xpression { phpdbg_stack_push(PHPDBG_G(parser_stack), &$1); $$.top = PHPDBG_G(parser_stack)->top; } 78 …: parameter { phpdbg_stack_push(PHPDBG_G(parser_stack), &$1); $$.top = PHPDBG_G(parser_stack)->top… 79 …parameter { phpdbg_stack_push(PHPDBG_G(parser_stack), &$2); $$.top = PHPDBG_G(parser_stack)->top; } 178 const phpdbg_param_t *top = PHPDBG_G(parser_stack); 180 while (top) { 181 phpdbg_param_debug(top, "--> "); 182 top = top->next;
|
/php-src/ext/spl/tests/ |
H A D | spl_pq_top_basic.phpt | 2 SPL: SplPriorityQueue: top and extract flags 18 echo "value: ",$priorityQueue->top(),PHP_EOL; 24 echo "priority: ",$priorityQueue->top(),PHP_EOL; 28 print_r($priorityQueue->top()); 32 echo "value: ",$priorityQueue->top(),PHP_EOL;
|
H A D | heap_top_variation_002.phpt | 2 SPL: SplHeap top, corrupted heap 23 // call top, should fail with corrupted heap 25 $h->top();
|
H A D | SplDoublyLinkedList_top_empty.phpt | 2 SplDoublyLinkedList::top empty 8 (new SplDoublyLinkedList)->top();
|
H A D | heap_top_variation_003.phpt | 2 SPL: SplHeap top of empty heap 10 $h->top();
|
H A D | spl_pq_top_error_empty.phpt | 2 SPL: SplPriorityQueue: top exception on empty heap 12 $priorityQueue->top();
|
H A D | heap_011.phpt | 15 var_dump($h->top()); 27 var_dump($h->top());
|
H A D | spl_pq_top_error_corrupt.phpt | 2 SPL: SplPriorityQueue: top and extract flags 31 $priorityQueue->top();
|
H A D | heap_corruption.phpt | 2 SPL: SplHeap - heap corruption via compare exception (with top element deletion) 55 $heap->top();
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_script_run.c | 311 int top = PRIV(ucd_digit_sets)[0]; in PRIV() local 314 if (top <= bot + 1) /* <= rather than == is paranoia */ in PRIV() 316 digitset = top; in PRIV() 319 mid = (top + bot) / 2; in PRIV() 320 if (c <= PRIV(ucd_digit_sets)[mid]) top = mid; else bot = mid; in PRIV()
|
/php-src/ext/ldap/tests/ |
H A D | ldap_search_error.phpt | 23 $result = ldap_search($link, $dn, $filter, array(1 => 'top')); 30 ldap_search(array(), $dn, $filter, array('top')); 36 ldap_search(array($link, $link), array($dn), $filter, array('top')); 42 ldap_search(array($link, $link), $dn, array($filter), array('top'));
|
H A D | ldap_modify_basic.phpt | 19 "top", 53 string(3) "top"
|
H A D | ldap_add_basic.phpt | 19 "top", 51 string(3) "top"
|
H A D | connect.inc | 39 "top", 49 "top", 76 "top",
|
H A D | ldap_add_ext.phpt | 22 "top", 74 string(3) "top"
|
/php-src/Zend/tests/ |
H A D | bug63635.phpt | 24 $top = new Node(); 26 $ci = new Node($top);
|
/php-src/ext/opcache/jit/ir/dynasm/ |
H A D | minilua.c | 1158 L->top=ci->top; 1168 ci->top=L->top+20; 1901 if(lim<ci->top)lim=ci->top; 2276 L1->ci->top=L1->top+20; 2582 setobj(L,L->top,L->top-1); 4889 if(!call_binTM(L,top-2,top-1,top-2,TM_CONCAT)) 5171 ci->top=L->top=func+aux; 5195 if(b)L->top=L->ci->top; 5233 L->top=L->ci->top; 5249 L->top=L->ci->top; [all …]
|
/php-src/ext/phar/tests/ |
H A D | phar_dir_iterate.phpt | 13 $phar['top.txt'] = 'hi'; 14 $phar['sub/top.txt'] = 'there';
|
/php-src/ext/spl/ |
H A D | spl_heap.stub.php | 24 public function top(): mixed {} function in SplPriorityQueue 96 public function top(): mixed {} function in SplHeap
|