| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | queue.c | 107 static void QuickSort(void *list[], int low, int high, 715 static void QuickSort(void *list[], int low, int high, argument 721 if(low < high) { 722 i = low; 725 key = list[ low ]; 744 temp = list[low]; 745 list[low] = list[j]; 748 QuickSort(list, low, j-1, Comp); 856 int low, mid, hi, val; local 858 low [all...] |
| /PHP_TRUNK/win32/ |
| H A D | flock.c | 58 DWORD low = 1, high = 0; local 64 UnlockFileEx(hdl, 0, low, high, &offset); 69 0, low, high, &offset)) 74 0, low, high, &offset))
|
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 4300 /* ByteValTable[x] is big value --> low price */ 5607 OnigCodePoint low, high, x; local 5613 for (low = 0, high = n; low < high; ) { 5614 x = (low + high) >> 1; 5616 low = x + 1; 5621 return ((low < n && code >= data[low * 2]) ? 1 : 0);
|
| H A D | regexec.c | 3115 UChar* range, UChar** low, UChar** high, UChar** low_prev) 3199 *low = p; 3201 if (*low > s) 3210 *low = p - reg->dmax; 3211 if (*low > s) { 3212 *low = onigenc_get_right_adjust_char_head_with_prev(reg->enc, s, 3213 *low, (const UChar** )low_prev); 3216 (pprev ? pprev : s), *low); 3221 (pprev ? pprev : str), *low); 3230 "forward_search_range success: low 3114 forward_search_range(regex_t* reg, const UChar* str, const UChar* end, UChar* s, UChar* range, UChar** low, UChar** high, UChar** low_prev) argument 3245 backward_search_range(regex_t* reg, const UChar* str, const UChar* end, UChar* s, const UChar* range, UChar* adjrange, UChar** low, UChar** high) argument 3582 UChar *sch_range, *low, *high, *low_prev; local 3650 UChar *low, *high, *adjrange, *sch_start; local [all...] |
| H A D | regparse.c | 1692 int low, high, bound, x; local 1713 for (low = 0, bound = n; low < bound; ) { 1714 x = (low + bound) >> 1; 1716 low = x + 1; 1721 for (high = low, bound = n; high < bound; ) { 1729 inc_n = low + 1 - high; 1734 if (from > data[low*2]) 1735 from = data[low*2]; 1742 int to_pos = SIZE_CODE_POINT * (1 + (low 2312 int low, up, syn_allow, non_low = 0; local [all...] |
| /PHP_TRUNK/ext/filter/ |
| H A D | sanitizing_filters.c | 67 static void php_filter_encode_url(zval *value, const unsigned char* chars, const int char_len, int high, int low, int encode_nul) argument 79 /* XXX: This is not needed since these chars in the allowed list never include the high/low/null value 86 if (low) { 184 /* strip high/strip low ( see flags )*/ 238 /* if strip low is not set, then we encode them as &#xx; */
|
| /PHP_TRUNK/ext/standard/ |
| H A D | array.c | 1587 /* {{{ proto array range(mixed low, mixed high[, int step]) 1588 Create an array containing the range of integers or characters from low to high (inclusive) */ 1621 unsigned char *low, *high; local 1635 low = (unsigned char *)Z_STRVAL_P(zlow); 1638 if (*low > *high) { /* Negative Steps */ 1639 unsigned char ch = *low; 1651 } else if (*high > *low) { /* Positive Steps */ 1652 unsigned char ch = *low; 1665 add_next_index_stringl(return_value, (const char *)low, 1, 1); 1669 double low, hig local 1700 double low, high; local [all...] |