Searched defs:COMPARE (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Ddefs.h77 #define COMPARE 0x8 macro
81 #define OBITS "\020\1VERIFY\2WHOLE\3YOUNGER\4COMPARE\5REMOVE\6FOLLOW\7IGNLNKS"
/illumos-gate/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? */
283 else if(COMPARE(table[i].key, item.key) == 0) /* Match? */
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)
/illumos-gate/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? */
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)
/illumos-gate/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);
311 TOS = COMPARE(NOTEQUALS, 0);
318 TOS = COMPARE(LESSTHAN, 0);
325 TOS = COMPARE(LESSEQUALS, 0);
332 TOS = COMPARE(GREATERTHAN, 0);
339 TOS = COMPARE(GREATEREQUALS, 0);
349 TOS = COMPARE(LESSTHAN, d);
359 TOS = COMPARE(GREATERTHAN, d);
369 TOS = COMPARE(EQUAL
[all...]

Completed in 70 milliseconds