Searched refs:cmp (Results 51 - 75 of 94) sorted by relevance

1234

/haiku/src/system/kernel/lib/arch/x86/
H A Darch_string.S67 cmp $12, %ecx
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DTwoKeyAVLTree.h504 int cmp = fPrimaryKeyCompare(key, local
507 if (cmp != expectedCmp) {
533 int cmp = fPrimaryKeyCompare(key, fGetPrimaryKey( local
535 if (cmp == 0) {
547 if (cmp < 0)
642 int cmp = fPrimaryKeyCompare(key, fGetPrimaryKey( local
644 if (cmp == 0) {
657 if (cmp < 0)
/haiku/src/system/boot/platform/atari_m68k/
H A Dshell.S117 cmp.l #SUP_USER,%d0
209 cmp.w %d7,%d4 // if (sectno == spt)
212 cmp.w #2,%d6 // if (sideno == 2) {
277 cmp.b #9,%d0
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdlib.h55 size_t size, __compar_fn_t cmp);
/haiku/src/system/boot/platform/bios_ia32/
H A Dshell.S135 cmp %si, %ax
187 cmp %al, %cl
192 cmp $1, %dh
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlightInfo.cpp94 int cmp = token.string.Compare(kLanguageKeywords[mid]); local
95 if (cmp == 0)
97 else if (cmp < 0)
/haiku/src/bin/pkgman/
H A Dcommand_search.cpp102 int cmp = fCollator.Compare(a->Name().String(), b->Name().String()); local
103 if (cmp != 0)
104 return cmp;
/haiku/src/system/kernel/arch/arm/
H A Darch_asm.S59 cmp r0, #0
185 cmp r4, #0
187 cmp r6, r2 /* reached max length? */
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareAttrDir.cpp260 int cmp = compare_attributes(oldAttr, newAttr); local
261 if (cmp < 0) {
269 } else if (cmp > 0) {
/haiku/src/system/boot/platform/efi/arch/arm/
H A Dentry.S27 cmp r9, #0x1a
/haiku/src/bin/bfs_tools/
H A Dchkindex.cpp82 int cmp = (int)a->allocation_group - (int)b->allocation_group; local
83 if (cmp == 0)
84 cmp = (int)a->start - (int)b->start;
85 return cmp;
/haiku/src/system/libnetwork/netresolv/net/
H A Dnsdispatch.c264 int cmp; local
266 cmp = strcmp(((const ns_mtab *)a)->name,
268 if (cmp)
269 return (cmp);
/haiku/src/apps/debuganalyzer/model/
H A DModel.h888 int32 cmp = a->scheduledEvent->scheduler - b->scheduledEvent->scheduler; local
889 if (cmp != 0)
890 return cmp < 0;
899 int32 cmp = a->scheduledEvent->scheduler - b->scheduledEvent->scheduler; local
900 if (cmp != 0)
901 return cmp < 0;
1455 nanotime_t cmp = key->time - thread->fCreationTime; local
1456 if (cmp == 0)
1458 return cmp < 0 ? -1 : 1;
/haiku/src/servers/app/drawing/
H A DDrawingEngine.cpp577 int cmp = 0; local
581 cmp -= 1;
583 cmp += 1;
587 cmp += 1;
589 cmp -= 1;
595 cmp -= 1;
597 cmp += 1;
601 cmp += 1;
603 cmp -= 1;
607 if (cmp >
[all...]
/haiku/headers/private/kernel/util/
H A DVectorSet.h440 int cmp = fCompare(fElements[mid], value); local
441 if (cmp < 0)
H A DVectorMap.h663 int cmp = fEntryStrategy.Compare(fEntryStrategy.GetKey(fElements[mid]), local
665 if (cmp < 0)
/haiku/src/tests/kits/shared/
H A DMemoryRingIOTest.cpp31 ReadCheck(BMemoryRingIO& ring, const void* cmp, size_t size) argument
38 CHK(memcmp(buffer, cmp, size) == 0);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DDirectory.cpp129 int cmp = strncmp(a, b, std::min(lengthA, lengthB)); local
130 if (cmp != 0)
131 return cmp;
234 int cmp = -1; local
241 cmp = compare_names(entryName, entryNameLength, name, nameLength);
242 if (cmp >= 0)
248 _exactMatch = cmp == 0;
506 int cmp = compare_names(previousName, previousNameLength, name, local
508 if (cmp == 0) {
513 } else if (cmp >
[all...]
/haiku/src/apps/debuganalyzer/gui/
H A DAbstractWaitObjectsPage.h117 int cmp = (int)a->Type() - (int)b->Type(); local
118 return cmp == 0 ? strcmp(a->Name(), b->Name()) : cmp;
/haiku/src/system/libroot/posix/glibc/include/arch/m68k/
H A Dasm-syntax.h93 #define cmpl cmp.l
/haiku/src/system/libroot/posix/musl/math/x86/
H A Dexpl.s16 cmp $45, %ax
/haiku/src/system/libroot/posix/musl/math/x86_64/
H A Dexpl.s16 cmp $45, %ax
/haiku/src/system/libroot/posix/stdlib/
H A Dstrtod.c740 cmp(Bigint *a, Bigint *b) function
749 Bug("cmp called with a->x[a->wds-1] == 0");
751 Bug("cmp called with b->x[b->wds-1] == 0");
780 i = cmp(a,b);
1430 i = cmp(delta, bs);
1438 if (cmp(delta, bs) > 0)
1716 if (cmp(b, S) >= 0) {
2243 if (cmp(b,S) < 0) {
2252 if (ilim < 0 || cmp(b,S = multadd(S,5,0)) <= 0) {
2283 j = cmp(
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.cpp236 int cmp = a.AllocationGroup() - b.AllocationGroup(); local
237 if (cmp == 0)
240 return cmp;
253 int cmp = _Compare(runs[i], run); local
254 if (cmp < 0)
256 else if (cmp > 0)
/haiku/src/system/kernel/arch/arm64/
H A Darch_asm.S215 cmp x2, xzr
246 cmp x3, x2

Completed in 273 milliseconds

1234