| /PHP_5_3/build/ |
| H A D | build2.mk | 35 SUPPRESS_WARNINGS ?= 2>&1 | (egrep -v '(AC_TRY_RUN called without default to allow cross compiling|AC_PROG_CXXCPP was called before AC_PROG_CXX|defined in acinclude.m4 but never used|AC_PROG_LEX invoked multiple times|AC_DECL_YYTEXT is expanded from...|the top level)'||true)
|
| /PHP_5_3/ext/ereg/regex/ |
| H A D | regcomp.c | 188 - p_ere - ERE parser top level, concatenation and alternation 396 - p_bre - BRE parser top level, anchoring and concatenation 1060 register cset *top = &p->g->sets[p->g->ncsets]; local 1065 if (cs == top-1) /* recover only the easy case */ 1086 register cset *top = &p->g->sets[p->g->ncsets]; local 1091 for (cs2 = &p->g->sets[0]; cs2 < top; cs2++) 1101 if (cs2 < top) { /* found one */
|
| /PHP_5_3/ext/spl/internal/ |
| H A D | recursiveiteratoriterator.inc | 60 /** Rewind to top iterator as set in constructor
|
| H A D | spldoublylinkedlist.inc | 90 public function top() 143 /** Rewind to top iterator as set in constructor
|
| H A D | splobjectstorage.inc | 28 /** Rewind to top iterator as set in constructor
|
| /PHP_5_3/main/ |
| H A D | mergesort.c | 248 #define reverse(bot, top) { \ 249 s = top; \
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd_gif_in.c | 185 int top, left; local 217 top = LM_to_uint(buf[2], buf[3]); 221 if (left + width > screen_width || top + height > screen_height) {
|
| /PHP_5_3/ext/json/ |
| H A D | JSON_parser.c | 204 jp->top += 1; 205 if (jp->top >= jp->depth) { 209 jp->stack[jp->top] = mode; 221 if (jp->top < 0 || jp->stack[jp->top] != mode) { 225 jp->top -= 1; 247 jp->top = -1; 528 if (type != -1 && jp->stack[jp->top] == MODE_OBJECT) 536 add_property_zval_ex(jp->the_zstack[jp->top], (key.len ? key.c : "_empty_"), (key.len ? (key.len + 1) : sizeof("_empty_")), mval TSRMLS_CC); 539 add_assoc_zval_ex(jp->the_zstack[jp->top], (ke [all...] |
| H A D | JSON_parser.h | 14 int top; member in struct:JSON_parser_struct
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regparse.c | 4387 static int parse_subexp(Node** top, OnigToken* tok, int term, 5164 parse_branch(Node** top, OnigToken* tok, int term, argument 5170 *top = NULL; 5175 *top = node; 5178 *top = node_new_list(node, NULL); 5179 headp = &(NCONS(*top).right); 5201 parse_subexp(Node** top, OnigToken* tok, int term, argument 5207 *top = NULL; 5215 *top = node; 5218 *top 5245 parse_regexp(Node** top, UChar** src, UChar* end, ScanEnv* env) argument [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | spl_heap.c | 278 spl_ptr_heap_element top; local 285 top = heap->elements[0]; 310 heap->dtor(top TSRMLS_CC); 311 return top; 637 extract the element out of the top of the heap */ 699 extract the element out of the top of the priority queue */ 741 /* {{{ proto mixed SplPriorityQueue::top() U 742 Peek at the top element of the priority queue */ 743 SPL_METHOD(SplPriorityQueue, top) 828 /* {{{ proto mixed SplHeap::top() [all...] |
| H A D | spl_dllist.c | 640 /* {{{ proto mixed SplDoublyLinkedList::top() U 641 Peek at the top element of the SplDoublyLinkedList */ 642 SPL_METHOD(SplDoublyLinkedList, top) 1202 SPL_ME(SplDoublyLinkedList, top, arginfo_dllist_void, ZEND_ACC_PUBLIC)
|
| /PHP_5_3/ext/wddx/ |
| H A D | wddx.c | 96 int top, max; member in struct:__anon240 177 stack->top = 0; 191 if (stack->top >= stack->max) { /* we need to allocate more memory */ 195 stack->elements[stack->top] = (void *) emalloc(size); 196 memcpy(stack->elements[stack->top], element, size); 197 return stack->top++; 205 if (stack->top > 0) { 206 *element = stack->elements[stack->top - 1]; 219 if (stack->top == 0) { 234 for (i = 0; i < stack->top; [all...] |
| /PHP_5_3/sapi/apache/ |
| H A D | php_apache.c | 441 zend_bool top=0; local 445 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &var, &var_len, &val, &val_len, &top) == FAILURE) { 449 while(top) {
|
| /PHP_5_3/sapi/apache_hooks/ |
| H A D | mod_php5.c | 58 int top, max, persistent; member in struct:_sapi_stack 117 stack->top = 0; 129 if (stack->top >= stack->max) { /* we need to allocate more memory */ 136 stack->elements[stack->top] = (void *) element; 137 return stack->top++; 140 if(stack->top == 0) { 144 return stack->elements[--stack->top]; 159 for (i=stack->top-1; i>=0; i--) { 164 for (i=0; i<stack->top; i++) { 179 for (i=stack->top [all...] |
| H A D | php_apache.c | 1813 zend_bool top=0; local 1817 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|b", &var, &var_len, &val, &val_len, &top) == FAILURE) { 1821 while(top) {
|
| /PHP_5_3/Zend/ |
| H A D | zend.c | 962 if (CG(stack).top) { \ 964 CG(stack).top = CG(stack).max = 0; \ 967 stack.top = 0; \ 972 if (stack.top) { \
|
| H A D | zend_execute.h | 146 void **top; member in struct:_zend_vm_stack 157 EG(argument_stack)->end - EG(argument_stack)->top)) { \ 165 page->top = ZEND_VM_STACK_ELEMETS(page); 166 page->end = page->top + count; 196 return EG(argument_stack)->top; 202 *(EG(argument_stack)->top++) = ptr; 207 *(EG(argument_stack)->top++) = ptr; 212 void *el = *(--EG(argument_stack)->top); 214 if (UNEXPECTED(EG(argument_stack)->top == ZEND_VM_STACK_ELEMETS(EG(argument_stack)))) { 230 int extra = (ZEND_MM_ALIGNMENT - ((zend_uintptr_t)EG(argument_stack)->top [all...] |
| H A D | zend_objects_API.c | 33 objects->top = 1; /* Skip 0 so that handles are true */ 49 for (i = 1; i < objects->top ; i++) { 73 for (i = 1; i < objects->top ; i++) { 84 for (i = 1; i < objects->top ; i++) { 111 if (EG(objects_store).top == EG(objects_store).size) { 115 handle = EG(objects_store).top++;
|
| H A D | zend_objects_API.h | 52 zend_uint top; member in struct:_zend_objects_store
|
| H A D | zend_ptr_stack.c | 32 stack->top = 0; 52 stack->top++; 69 stack->top--; 87 int i = stack->top; 99 int i = stack->top; 105 stack->top = 0; 112 return stack->top;
|
| H A D | zend_ptr_stack.h | 26 int top, max; member in struct:_zend_ptr_stack 47 if (stack->top+count > stack->max) { \ 52 stack->top_element = stack->elements+stack->top; \ 63 stack->top += ZEND_PTR_STACK_NUM_ARGS; 77 stack->top += ZEND_PTR_STACK_NUM_ARGS; 89 stack->top -= 3; 96 stack->top -= 2; 103 stack->top++; 109 stack->top--;
|
| H A D | zend_stack.c | 27 stack->top = 0; 39 if (stack->top >= stack->max) { /* we need to allocate more memory */ 46 stack->elements[stack->top] = (void *) emalloc(size); 47 memcpy(stack->elements[stack->top], element, size); 48 return stack->top++; 54 if (stack->top > 0) { 55 *element = stack->elements[stack->top - 1]; 66 if (stack->top > 0) { 67 efree(stack->elements[--stack->top]); 87 if (stack->top [all...] |
| H A D | zend_stack.h | 26 int top, max; member in struct:_zend_stack
|
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcre_get.c | 81 int top, bot; local 85 if ((rc = pcre_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0) 87 if (top <= 0) return PCRE_ERROR_NOSUBSTRING; 95 if ((rc = pcre16_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0) 97 if (top <= 0) return PCRE_ERROR_NOSUBSTRING; 105 if ((rc = pcre32_fullinfo(code, NULL, PCRE_INFO_NAMECOUNT, &top)) != 0) 107 if (top <= 0) return PCRE_ERROR_NOSUBSTRING; 116 while (top > bot) 118 int mid = (top + bot) / 2; 123 if (c > 0) bot = mid + 1; else top 164 int top, bot; local [all...] |