Home
last modified time | relevance | path

Searched refs:top (Results 76 – 97 of 97) sorted by last modified time

1234

/PHP-7.4/ext/spl/tests/
H A Dheap_corruption.phpt2 SPL: SplHeap - heap corruption via compare exception (with top element deletion)
55 $heap->top();
H A Dheap_top_variation_002.phpt2 SPL: SplHeap top, corrupted heap
23 // call top, should fail with corrupted heap
25 $h->top();
H A Dheap_top_variation_003.phpt2 SPL: SplHeap top of empty heap
10 $h->top();
H A DSplDoublyLinkedList_top_empty.phpt2 SplDoublyLinkedList::top empty
8 (new SplDoublyLinkedList)->top();
/PHP-7.4/ext/sockets/tests/
H A Dsocket_sendrecvmsg_multi_msg-unix.phpt15 * WSARecvMsg (though only the top 6 bits seem to reported), but WSASendMsg
/PHP-7.4/ext/pdo_dblib/tests/
H A Dbug_45876.phpt12 $stmt = $db->prepare("select top 1 ic1.* from information_schema.columns ic1");
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_script_run.c407 int top = PRIV(ucd_digit_sets)[0]; in PRIV() local
410 if (top <= bot + 1) /* <= rather than == is paranoia */ in PRIV()
412 digitset = top; in PRIV()
415 mid = (top + bot) / 2; in PRIV()
416 if (c <= PRIV(ucd_digit_sets)[mid]) top = mid; else bot = mid; in PRIV()
H A Dpcre2_substring.c484 uint16_t top = code->name_count; in pcre2_substring_nametable_scan() local
488 while (top > bot) in pcre2_substring_nametable_scan()
490 uint16_t mid = (top + bot) / 2; in pcre2_substring_nametable_scan()
516 if (c > 0) bot = mid + 1; else top = mid; in pcre2_substring_nametable_scan()
/PHP-7.4/ext/pcre/tests/
H A D005.phpt32 /p2/var/php_gcov/PHP_4_4/ext/standard/parsedate.y: At top level:
/PHP-7.4/ext/oci8/
H A Dconfig.m429 …AC_MSG_ERROR([Expected an ORACLE_HOME top level directory but ${OCI8_DIR} appears to be an Instant…
/PHP-7.4/ext/gd/libgd/
H A Dgd_gif_in.c191 int top, left; in gdImageCreateFromGifCtx() local
223 top = LM_to_uint(buf[2], buf[3]); in gdImageCreateFromGifCtx()
227 if (left + width > screen_width || top + height > screen_height) { in gdImageCreateFromGifCtx()
H A Dgdft.c1177 …, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + ((pen.y + 31) >> 6) - bm->top);
/PHP-7.4/ext/fileinfo/tests/
H A Dmagic私はガラスを食べられます14212 # It has to be duplicated above because the top-level pattern
15376 # Y origin of image. 0 normal; positive for top
15381 >17 ubyte &0x20 - top
16404 >768 beshort 0 left to right/top to bottom
16405 >768 beshort 1 right to left/top to bottom
16406 >768 beshort 2 left to right/bottom to top
16407 >768 beshort 3 right to left/bottom to top
16408 >768 beshort 4 top to bottom/left to right
16409 >768 beshort 5 top to bottom/right to left
16410 >768 beshort 6 bottom to top/left to right
[all …]
H A Dmagic14212 # It has to be duplicated above because the top-level pattern
15376 # Y origin of image. 0 normal; positive for top
15381 >17 ubyte &0x20 - top
16404 >768 beshort 0 left to right/top to bottom
16405 >768 beshort 1 right to left/top to bottom
16406 >768 beshort 2 left to right/bottom to top
16407 >768 beshort 3 right to left/bottom to top
16408 >768 beshort 4 top to bottom/left to right
16409 >768 beshort 5 top to bottom/right to left
16410 >768 beshort 6 bottom to top/left to right
[all …]
/PHP-7.4/docs/
H A Dstreams.md211 `FILE*` on top of any stream, which is useful for SSL sockets, memory based
H A Dmailinglist-rules.md64 3. Do not top post. Place your answer underneath anyone you wish to quote
/PHP-7.4/Zend/
H A Dzend_objects_API.c30 objects->top = 1; /* Skip 0 so that handles are true */ in zend_objects_store_init()
45 if (objects->top > 1) { in zend_objects_store_call_destructors()
47 for (i = 1; i < objects->top; i++) { in zend_objects_store_call_destructors()
67 if (objects->object_buckets && objects->top > 1) { in zend_objects_store_mark_destructed()
69 zend_object **end = objects->object_buckets + objects->top; in zend_objects_store_mark_destructed()
86 if (objects->top <= 1) { in zend_objects_store_free_object_storage()
93 obj_ptr = objects->object_buckets + objects->top; in zend_objects_store_free_object_storage()
134 handle = EG(objects_store).top++; in zend_objects_store_put_cold()
149 } else if (UNEXPECTED(EG(objects_store).top == EG(objects_store).size)) { in zend_objects_store_put()
153 handle = EG(objects_store).top++; in zend_objects_store_put()
H A Dzend_ptr_stack.c27 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 Dzend_ptr_stack.h24 int top, max; member
46 if (stack->top+count > stack->max) { \ in END_EXTERN_C()
50 } while (stack->top+count > stack->max); \ in END_EXTERN_C()
52 stack->top_element = stack->elements+stack->top; \ in END_EXTERN_C()
63 stack->top += ZEND_PTR_STACK_NUM_ARGS;
77 stack->top += ZEND_PTR_STACK_NUM_ARGS; in zend_ptr_stack_2_push()
89 stack->top -= 3; in zend_ptr_stack_3_pop()
96 stack->top -= 2; in zend_ptr_stack_2_pop()
103 stack->top++; in zend_ptr_stack_push()
109 stack->top--; in zend_ptr_stack_pop()
[all …]
H A Dzend_stack.c28 stack->top = 0; in zend_stack_init()
37 if (stack->top >= stack->max) { in zend_stack_push()
42 return stack->top++; in zend_stack_push()
48 if (stack->top > 0) { in zend_stack_top()
58 --stack->top; in zend_stack_del_top()
76 return stack->top == 0; in zend_stack_is_empty()
99 return stack->top; in zend_stack_count()
109 for (i=stack->top-1; i>=0; i--) { in zend_stack_apply()
116 for (i=0; i<stack->top; i++) { in zend_stack_apply()
139 for (i=0; i<stack->top; i++) { in zend_stack_apply_with_argument()
[all …]
H A Dzend_stack.h24 int size, top, max; member
/PHP-7.4/Zend/tests/
H A Dbug63635.phpt24 $top = new Node();
26 $ci = new Node($top);

Completed in 145 milliseconds

1234