Searched defs:COMPARE (Results 1 - 2 of 2) sorted by relevance
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | hsearch.c | 95 #define COMPARE(A, B) (* hcompar)((A), (B)) macro 98 #define COMPARE(A, B) strcmp((A), (B)) macro 302 else if (COMPARE(table[i].key, item.key) == 0) /* Match? */ 319 else if (COMPARE(table[i].key, item.key) == 0) /* Match? */ 401 #define STRCMP(A, B) (COMPARE((A), (B)) > 0) 404 #define STRCMP(A, B) (COMPARE((A), (B)) < 0) 406 #define STRCMP(A, B) (COMPARE((A), (B)) != 0)
|
/osnet-11/usr/src/lib/efcode/engine/ |
H A D | forth.c | 286 #define COMPARE(cmp, rhs) ((((s_lforth_t)TOS) cmp((s_lforth_t)(rhs))) ? \ macro 301 TOS = COMPARE(EQUALS, 0); 308 TOS = COMPARE(NOTEQUALS, 0); 315 TOS = COMPARE(LESSTHAN, 0); 322 TOS = COMPARE(LESSEQUALS, 0); 329 TOS = COMPARE(GREATERTHAN, 0); 336 TOS = COMPARE(GREATEREQUALS, 0); 346 TOS = COMPARE(LESSTHAN, d); 356 TOS = COMPARE(GREATERTHAN, d); 366 TOS = COMPARE(EQUAL [all...] |
Completed in 37 milliseconds