| /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) { 723 j = high + 1; 749 QuickSort(list, j+1, high, Comp);
|
| /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/enc/ |
| H A D | utf16_be.c | 105 unsigned int plane, high; local 109 high = (code & 0xff00) >> 8; 110 *p++ = ((plane & 0x03) << 6) + (high >> 2); 111 *p++ = (high & 0x03) + 0xdc;
|
| H A D | utf16_le.c | 107 unsigned int plane, high; local 110 high = (code & 0xff00) >> 8; 112 *p++ = ((plane & 0x03) << 6) + (high >> 2); 115 *p = (high & 0x03) + 0xdc;
|
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 5607 OnigCodePoint low, high, x; local 5613 for (low = 0, high = n; low < high; ) { 5614 x = (low + high) >> 1; 5618 high = x;
|
| H A D | regexec.c | 3115 UChar* range, UChar** low, UChar** high, UChar** low_prev) 3225 /* no needs to adjust *high, *high is used as range check only */ 3226 *high = p - reg->dmin; 3230 "forward_search_range success: low: %d, high: %d, dmin: %d, dmax: %d\n", 3231 (int )(*low - str), (int )(*high - str), reg->dmin, reg->dmax); 3247 UChar** low, UChar** high) 3327 /* no needs to adjust *high, *high is used as range check only */ 3330 *high 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 1721 for (high = low, bound = n; high < bound; ) { 1722 x = (high + bound) >> 1; 1724 high = x + 1; 1729 inc_n = low + 1 - high; 1736 if (to < data[(high - 1)*2 + 1]) 1737 to = data[(high - 1)*2 + 1]; 1740 if (inc_n != 0 && (OnigCodePoint )high < n) { 1741 int from_pos = SIZE_CODE_POINT * (1 + high * [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 83 if (high) { 184 /* strip high/strip low ( see flags )*/
|
| /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 1636 high = (unsigned char *)Z_STRVAL_P(zhigh); 1638 if (*low > *high) { /* Negative Steps */ 1645 for (; ch >= *high; ch -= (unsigned int)lstep) { 1651 } else if (*high > *low) { /* Positive Steps */ 1658 for (; ch <= *high; ch += (unsigned int)lstep) { 1669 double low, high, value; local 1675 high 1700 double low, high; local [all...] |