Searched refs:COMPARE (Results 1 – 7 of 7) sorted by relevance
/titanic_41/usr/src/lib/libbc/libc/gen/common/ |
H A D | hsearch.c | 86 # define COMPARE(A, B) (* hcompar)((A), (B)) macro 89 # define COMPARE(A, B) strcmp((A), (B)) macro 266 else if(COMPARE(table[i].key, item.key) == 0) /* Match? */ in hsearch() 283 else if(COMPARE(table[i].key, item.key) == 0) /* Match? */ in hsearch() 355 # define STRCMP(A, B) (COMPARE((A), (B)) > 0) 358 # define STRCMP(A, B) (COMPARE((A), (B)) < 0) 360 # define STRCMP(A, B) (COMPARE((A), (B)) != 0)
|
/titanic_41/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? */ in hsearch() 319 else if (COMPARE(table[i].key, item.key) == 0) /* Match? */ in hsearch() 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)
|
/titanic_41/usr/src/lib/efcode/engine/ |
H A D | forth.c | 289 #define COMPARE(cmp, rhs) ((((s_lforth_t)TOS) cmp((s_lforth_t)(rhs))) ? \ macro 304 TOS = COMPARE(EQUALS, 0); in zero_equals() 311 TOS = COMPARE(NOTEQUALS, 0); in zero_not_equals() 318 TOS = COMPARE(LESSTHAN, 0); in zero_less() 325 TOS = COMPARE(LESSEQUALS, 0); in zero_less_equals() 332 TOS = COMPARE(GREATERTHAN, 0); in zero_greater() 339 TOS = COMPARE(GREATEREQUALS, 0); in zero_greater_equals() 349 TOS = COMPARE(LESSTHAN, d); in less() 359 TOS = COMPARE(GREATERTHAN, d); in greater() 369 TOS = COMPARE(EQUALS, d); in equals() [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/rdist/ |
H A D | server.c | 249 opts & COMPARE ? " -b" : "", 367 opts &= ~(COMPARE|REMOVE); 423 opts |= COMPARE; 537 if (f < 0 || f == 0 && (opts & COMPARE)) 693 if (opts & COMPARE) 931 if (opts & COMPARE) { 990 if (opts & COMPARE) { 1044 if (opts & COMPARE) {
|
H A D | defs.h | 77 #define COMPARE 0x8 macro
|
H A D | main.c | 241 options |= COMPARE;
|
H A D | gram.y | 295 yylval.intval = COMPARE; in yylex()
|