Searched defs:cmp (Results 1 - 8 of 8) sorted by relevance
| /PHP_TRUNK/Zend/ |
| H A D | zend_strtod.c | 888 static int cmp(Bigint *a, Bigint *b) function 897 Bug("cmp called with a->x[a->wds-1] == 0"); 899 Bug("cmp called with b->x[b->wds-1] == 0"); 927 i = cmp(a,b); 1343 if (cmp(b, S) >= 0) { 1894 if (cmp(b,S) < 0) { 1903 if (ilim < 0 || cmp(b,S = multadd(S,5,0)) <= 0) { 1934 j = cmp(b, mlo); 1936 j1 = delta->sign ? 1 : cmp(b, delta); 1955 j1 = cmp( [all...] |
| H A D | zend_operators.h | 240 int cmp = strcmp(&ptr[-digits], long_min_digits); local 242 if (!(cmp < 0 || (cmp == 0 && *str == '-'))) {
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 83549 int cmp; local 113357 int cmp; /* memcmp() result */ local [all...] |
| /PHP_TRUNK/ext/json/ |
| H A D | JSON_parser.c | 308 int cmp = strcmp(buf->c + (buf->c[0] == '-'), long_min_digits); local 310 if (!(cmp < 0 || (cmp == 0 && buf->c[0] == '-'))) {
|
| /PHP_TRUNK/ext/date/lib/ |
| H A D | parse_tz.c | 274 int cmp = strcasecmp(timezone, tzdb->index[mid].id); local 276 if (cmp < 0) { 278 } else if (cmp > 0) { 280 } else { /* (cmp == 0) */
|
| /PHP_TRUNK/ext/standard/ |
| H A D | var_unserializer.c | 1104 int cmp = strncmp(YYCURSOR - MAX_LENGTH_OF_LONG, long_min_digits, MAX_LENGTH_OF_LONG - 1); local 1106 if (!(cmp < 0 || (cmp == 0 && start[2] == '-'))) {
|
| H A D | string.c | 5147 char *p, *endp, cmp; local 5186 cmp = needle[0]; 5188 while ((p = memchr(p, cmp, endp - p))) {
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_heap.c | 62 spl_ptr_heap_cmp_func cmp; member in struct:_spl_ptr_heap 224 static spl_ptr_heap *spl_ptr_heap_init(spl_ptr_heap_cmp_func cmp, spl_ptr_heap_ctor_func ctor, spl_ptr_heap_dtor_func dtor) /* {{{ */ argument 230 heap->cmp = cmp; 252 for(i = heap->count++; i > 0 && heap->cmp(heap->elements[(i-1)/2], elem, cmp_userdata TSRMLS_CC) < 0; i = (i-1)/2) { 292 if(j != heap->count && heap->cmp(heap->elements[j+1], heap->elements[j], cmp_userdata TSRMLS_CC) > 0) { 297 if(heap->cmp(bottom, heap->elements[j], cmp_userdata TSRMLS_CC) < 0) { 322 heap->cmp = from->cmp; 427 intern->heap->cmp [all...] |
Completed in 135 milliseconds