HomeSort by: relevance | last modified time | path
    Searched refs:cmp (Results 1 - 25 of 475) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/usr.bin/make/unit-tests/
meta-cmd-cmp.exp 2 Building .meta-cmd-cmp.cmp
3 Building .meta-cmd-cmp.nocmp
4 Building .meta-cmd-cmp.cmp2
8 `.meta-cmd-cmp.cmp' is up to date.
9 `.meta-cmd-cmp.nocmp' is up to date.
10 .meta-cmd-cmp.cmp2.meta:3: cannot compare command using .OODATE
11 `.meta-cmd-cmp.cmp2' is up to date.
14 .meta-cmd-cmp.cmp.meta:2: a build command has change
    [all...]
cond-cmp-numeric-eq.exp 1 make: cond-cmp-numeric-eq.mk:68: Malformed conditional "!(12345 = 12345)"
2 make: cond-cmp-numeric-eq.mk:76: Malformed conditional "!(12345 === 12345)"
cond-cmp-string.exp 1 make: cond-cmp-string.mk:19: Malformed conditional "str != str"
2 make: cond-cmp-string.mk:44: Malformed conditional ""string" != "str""ing""
3 make: cond-cmp-string.mk:52: Malformed conditional "!("value" = "value")"
4 make: cond-cmp-string.mk:60: Malformed conditional "!("value" === "value")"
5 make: cond-cmp-string.mk:118: Comparison with "<" requires both operands "string" and "string" to be numeric
6 make: cond-cmp-string.mk:126: Comparison with "<=" requires both operands "string" and "string" to be numeric
7 make: cond-cmp-string.mk:134: Comparison with ">" requires both operands "string" and "string" to be numeric
8 make: cond-cmp-string.mk:142: Comparison with ">=" requires both operands "string" and "string" to be numeric
cond-cmp-unary.exp 1 make: cond-cmp-unary.mk:54: This is only reached because of a bug in EvalTruthy.
  /src/usr.bin/cmp/
Makefile 4 PROG= cmp
5 SRCS= cmp.c misc.c regular.c special.c
  /src/sys/arch/i386/stand/efiboot/
efidev.c 42 int i, cmp; local in function:efi_device_path_ncmp
48 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
49 if (cmp)
50 return (cmp);
51 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
52 if (cmp)
53 return (cmp);
  /src/sys/stand/efiboot/
efidev.c 55 int i, cmp; local in function:efi_device_path_ncmp
61 cmp = DevicePathNodeLength(dpa) - DevicePathNodeLength(dpb);
62 if (cmp)
63 return (cmp);
64 cmp = memcmp(dpa, dpb, DevicePathNodeLength(dpa));
65 if (cmp)
66 return (cmp);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
option.h 13 /* compares unterminated string 'str' with zero-terminated string 'cmp' */
15 strncasecmpz(const char *str, const char *cmp, size_t len)
17 if (strlen(cmp) != len)
19 return strncasecmp(str, cmp, len);
  /src/common/lib/libc/arch/arm/string/
strrchr_naive.S 41 cmp r3, r1 /* does it match? */
45 cmp r3, #0 /* was it a NUL? */
50 cmp r3, r1 /* does it match? */
52 cmp r3, #0 /* was it a NUL? */
strchr_naive.S 39 cmp r3, r1 /* does it match? */
42 cmp r3, #0 /* was it a NUL? */
51 cmp r3, r1 /* does it match? */
strcmp.S 39 cmp r2, #1
46 cmp r2, #1
48 cmp r2, r3
strncmp.S 58 cmp ip, r0 /* exhausted length? */
60 cmp r2, #1 /* NUL? */
62 cmp r2, r3 /* different? */
66 cmp ip, r0
  /src/tests/usr.bin/cmp/
Makefile 5 TESTSDIR= ${TESTSBASE}/usr.bin/cmp
  /src/common/lib/libc/string/
strchrnul.c 52 const char cmp = ch; local in function:strchrnul
56 if (*p == cmp || !*p) {
memchr.c 57 const unsigned char cmp = c; local in function:memchr
60 if (*p++ == cmp)
strchr.c 57 const char cmp = ch; local in function:__strong_alias
60 if (*p == cmp) {
  /src/lib/libc/string/
memrchr.c 46 const unsigned char cmp = c; local in function:memrchr
49 if (*--p == cmp)
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_lfstack.h 37 u64 cmp = atomic_load(&head_, memory_order_relaxed); local in function:__sanitizer::LFStack::Push
39 u64 cnt = (cmp & kCounterMask) + kCounterInc;
41 p->next = (T*)(uptr)(cmp & kPtrMask);
42 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
49 u64 cmp = atomic_load(&head_, memory_order_acquire); local in function:__sanitizer::LFStack::Pop
51 T *cur = (T*)(uptr)(cmp & kPtrMask);
55 u64 cnt = (cmp & kCounterMask);
57 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
  /src/common/lib/libc/arch/arm/atomic/
sync_bool_compare_and_swap_1.S 45 cmp r3, r1 /* compare? */
52 cmp r0, #0 /* succeed? */
sync_bool_compare_and_swap_2.S 44 cmp r3, r1 /* compare? */
51 cmp r0, #0 /* succeed? */
sync_bool_compare_and_swap_4.S 44 cmp r3, r1 /* compare? */
51 cmp r0, #0 /* succeed? */
  /src/lib/libc/stdlib/
bsearch.c 67 int cmp; local in function:bsearch
76 cmp = (*compar)(key, p);
77 if (cmp == 0)
79 if (cmp > 0) { /* key > p: move right */
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/
clzdi2.S 31 cmp r0, 0
37 cmp r1, 0
54 cmp r0, 0
57 cmp r1, 0
  /src/tests/include/sys/
t_socket.c 32 struct cmsghdr *cmp; local in function:ATF_TC_BODY
43 cmp = malloc(CMSG_SPACE(sizeof(int)));
48 cmp->cmsg_level = SOL_SOCKET;
49 cmp->cmsg_type = SCM_RIGHTS;
50 cmp->cmsg_len = CMSG_LEN(sizeof(int));
56 msg.msg_control = cmp;
64 *(int *)CMSG_DATA(cmp) = 0x12345678;
83 struct cmsghdr *cmp; local in function:ATF_TC_BODY
132 cmp = malloc(CMSG_SPACE(sizeof(int)));
137 cmp->cmsg_level = SOL_SOCKET
    [all...]
  /src/sys/external/bsd/drm2/include/linux/
sort.h 41 int (*cmp)(const void *, const void *),
51 kheapsort(array, nelem, elemsize, cmp, tmp);

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 91011>>