Home
last modified time | relevance | path

Searched refs:COMPARE (Results 1 – 7 of 7) sorted by relevance

/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dhsearch.c86 # 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 Dhsearch.c95 #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 Dforth.c289 #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 Dserver.c249 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 Ddefs.h77 #define COMPARE 0x8 macro
H A Dmain.c241 options |= COMPARE;
H A Dgram.y295 yylval.intval = COMPARE; in yylex()