/illumos-gate/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
H A D | BSTItem.java | 59 public int compare(BSTItem otherItem, boolean exact) { method in class:BSTItem 61 return compare(otherItem.key, exact); 65 public int compare(BSTItem otherItem) { method in class:BSTItem 66 return compare(otherItem, true); 69 public int compare(String otherKey) { method in class:BSTItem 70 return compare(otherKey, true); 74 public int compare(String otherKey, boolean exact) { method in class:BSTItem
|
H A D | BST.java | 70 int comp = data.compare(theItem); 108 int comp = data.compare(newKey, exactMatch); 131 int comp = data.compare(newKey, exactMatch); 169 if (data.compare(key, false) < 0) 187 c = data.compare(key, false); 190 * Debug.info("HELP: traverse_find_vector: compare " +
|
/illumos-gate/usr/src/test/util-tests/tests/xargs/ |
H A D | xargs_test.ksh | 39 compare() { function 41 test_fail $1 "compare mismatch, got [$2] expected [$3]" 51 compare $t "$comp" "$good" 64 compare $t "$comp" "$good" 77 compare $t "$comp" "$good" 87 compare $t "$comp" "$good" 99 compare $t "$comp" "$good" 109 compare $t "$comp" "$good" 119 compare $t "$comp" "$good" 131 compare [all...] |
/illumos-gate/usr/src/cmd/lvm/metassist/common/ |
H A D | volume_dlist.h | 136 * int compare(void *obj1, void* obj2); 149 * the object with which to compare each item 151 * @param compare 163 int (compare)(void *obj1, void *obj2), 194 * int compare(void *obj1, void *obj2); 211 int (compare)(void *obj1, void *obj2)); 218 * int compare(void *obj1, void *obj2); 231 int (compare)(void *obj1, void *obj2)); 238 * int compare(void *obj1, void *obj2); 252 int (compare)(voi [all...] |
H A D | volume_dlist.c | 54 int (compare)(void *, void *)) 56 return (dlist_find(list, obj, compare) != NULL); 66 int (compare)(void *, void *)) 71 if ((compare)(obj, iter->obj) == 0) { 88 * if (ascending && compare(item, iter) <= 0 || 89 * (descending && compare(item, iter) >= 0) 99 int (compare)(void *, void *)) 115 result = (compare)(item->obj, iter->obj); 154 * int compare(void *obj1, void* obj2); 167 * the object with which to compare eac [all...] |
/illumos-gate/usr/src/cmd/look/ |
H A D | look.c | 32 int compare(char *, char *); 99 switch(compare(key,word)) { 119 switch(compare(key,word)) { 134 switch(compare(key,word)) { 146 compare(char *s, char *t) function
|
/illumos-gate/usr/src/lib/libc/capabilities/sun4u-us3/common/ |
H A D | memcmp.s | 64 ! for small counts byte compare immediately 69 ! Count > 48. We will byte compare (8 + num of bytes to dbl align) 82 1: ldub [%o1], %o5 ! byte compare loop 93 ! Check to see if there are more bytes to compare 98 retl ! strings compare equal 106 ! double word compare - using ldd and faligndata. Compares upto 107 ! 8 byte multiple count and does byte compare for the residual. 145 5: ldub [%o0 + %o1], %o5 ! byte compare loop 157 sub %g0, %g0, %o0 ! strings compare equal
|
/illumos-gate/usr/src/lib/libc/sparc/gen/ |
H A D | strcmp.s | 56 ! align s2, this also happens and then the compare begins. Otherwise, 57 ! a different compare for non-aligned strings is used. 82 bnz .aligns1 ! nope, compare another pair of bytes 216 ! we know byte 1 is equal, so can compare bytes 1,2 as a group 225 ! we know bytes 1, 2 are equal, so can compare bytes 1,2,3 as a group 233 ! we know bytes 1,2,3 are equal, so can compare bytes 1,2,3,4 as group
|
H A D | memcmp.s | 102 1: ldub [%o0 + %o1], %o5 ! byte compare loop 106 deccc %o2 ! delay slot, compare count (len) 111 retl ! strings compare equal 147 bz .w4cmp ! if s2 word aligned, compare words 230 b .bytcmp ! compare remaining bytes, if any
|
/illumos-gate/usr/src/cmd/bart/ |
H A D | Makefile | 27 SRCS= rules.c create.c compare.c main.c lutbl.c 28 OBJS= rules.o create.o compare.o main.o lutbl.o
|
/illumos-gate/usr/src/lib/libc/capabilities/sun4u/common/ |
H A D | memcmp.s | 60 ! for small counts byte compare immediately 65 ! Count > 48. We will byte compare (8 + num of bytes to dbl align) 76 1: ldub [%o1], %o5 ! byte compare loop 87 ! Check to see if there are more bytes to compare 92 retl ! strings compare equal 105 ! double word compare - using ldd and faligndata. Compares upto 106 ! 8 byte multiple count and does byte compare for the residual. 141 5: ldub [%o0 + %o1], %o5 ! byte compare loop 153 sub %g0, %g0, %o0 ! strings compare equal 1092 6: ldub [%i0 + %i1], %i5 ! byte compare loo [all...] |
/illumos-gate/usr/src/lib/libfru/include/ |
H A D | Str.h | 62 int compare(const Str& rhs) const;
|
/illumos-gate/usr/src/lib/libcmd/common/ |
H A D | uniq.c | 62 "[w:check-chars]#[chars?\achars\a is the number of characters to compare " 85 static int uniq(Sfio_t *fdin, Sfio_t *fdout, int fields, int chars, int width, int mode, int* all, Compare_f compare) argument 149 if(reclen==oreclen && (!reclen || !(*compare)(cp,orecp,reclen))) 254 Compare_f compare = (Compare_f)memcmp; local 282 compare = (Compare_f)strncasecmp; 331 error_info.errors = uniq(fpin,fpout,fields,chars,width,mode,all,compare);
|
/illumos-gate/usr/src/lib/libc/port/gen/ |
H A D | deflt.c | 223 int (*compare)(const char *, const char *, size_t); 231 compare = TSTBITS(thr_data->Dcflags, DC_CASE) ? strncmp : strncasecmp; 245 if ((*compare)(cp, buf_tmp, patlen) == 0) {
|
/illumos-gate/usr/src/lib/print/libpapi-common/common/ |
H A D | list.c | 132 list_locate(void **list, int (*compare)(void *, void *), void *element) 138 if ((compare)(list[current], element) == 0)
|
/illumos-gate/usr/src/head/ |
H A D | macros.h | 49 #define compare(str1, str2) strcmp((str1), (str2)) macro
|
/illumos-gate/usr/src/cmd/cfgadm/ |
H A D | cfgadm.h | 146 CFGA_MATCH_ORDER /* compare and return relative order */ 153 int (*compare)(struct cfga_list_data *, struct cfga_list_data *, member in struct:field_info
|
/illumos-gate/usr/src/uts/common/io/1394/ |
H A D | s1394_isoch.c | 318 uint32_t compare; local 359 /* Send compare-swap to CHANNELS_AVAILABLE */ 376 compare = old_value; 381 offset, compare, swap, &old_value); 402 if (old_value == compare) { 524 uint32_t compare; local 565 /* Send compare-swap to CHANNELS_AVAILABLE */ 582 compare = old_value; 587 offset, compare, swap, &old_value); 598 if (old_value == compare) { 708 uint32_t compare; local 930 uint32_t compare; local [all...] |
/illumos-gate/usr/src/lib/libast/common/hash/ |
H A D | hashlib.h | 46 Hash_compare_f compare; /* name comparision routine */ member in struct:__anon2616
|
/illumos-gate/usr/src/lib/libc/sparcv9/gen/ |
H A D | memcmp.s | 101 1: ldub [%o0 + %o1], %o5 ! byte compare loop 105 deccc %o2 ! delay slot, compare count (len) 110 retl ! strings compare equal 144 bz,pn %icc, .w4cmp ! if s2 word aligned, compare words 226 b .bytcmp ! compare remaining bytes, if any
|
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Tuple.java | 312 * @see Tuple#compare(Tuple t1, Tuple t2, int pos) 321 cmp = Tuple.compare(this, t, i); 345 compare(Tuple t1, Tuple t2, int pos) method in class:Tuple
|
/illumos-gate/usr/src/lib/libfru/libfru/ |
H A D | Ancestor.cc | 193 if (element.compare(def->name) == 0) { 230 if (element.compare(def->name) == 0) {
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | tester.tcl | 109 } elseif {[string compare $result $expected]} { 146 } elseif {[string compare $result $expected]} {
|
/illumos-gate/usr/src/cmd/abi/spectrans/spec2map/ |
H A D | util.c | 164 compare(const void *p, const void *q) function 175 sizeof (char *), compare);
|
/illumos-gate/usr/src/test/util-tests/tests/printf/ |
H A D | printf_test.ksh | 39 compare() { function 41 test_fail $1 "compare mismatch, got [$2] expected [$3]" 209 compare $t "$comp" "$good"
|