Searched refs:cmp (Results 1 - 25 of 620) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dbsearch.c75 register int lim, cmp; local
80 cmp = (*compar)(key, p);
81 if (cmp == 0)
83 if (cmp > 0) { /* key > p: move right */
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dbsearch.c75 register int lim, cmp; local
80 cmp = (*compar)(key, p);
81 if (cmp == 0)
83 if (cmp > 0) { /* key > p: move right */
/freebsd-11-stable/usr.bin/cmp/tests/
H A Dcmp_test2.sh25 # $FreeBSD: stable/11/usr.bin/cmp/tests/cmp_test2.sh 314427 2017-02-28 22:49:41Z asomers $
29 atf_set "descr" "Test cmp(1)'s handling of non-regular files"
34 cat a | atf_check -s exit:0 cmp a -
35 cat a | atf_check -s exit:0 cmp - a
36 cat b | atf_check -s not-exit:0 cmp a -
37 cat b | atf_check -s not-exit:0 cmp - a
43 atf_set "descr" "Test cmp(1)'s handling of symlinks"
53 atf_check -s exit:0 cmp a a.lnk
54 atf_check -s exit:0 cmp a.lnk a
55 atf_check -s not-exit:0 -o ignore cmp
[all...]
/freebsd-11-stable/sys/libkern/
H A Dbsearch.c65 int cmp; local
70 cmp = (*compar)(key, p);
71 if (cmp == 0)
73 if (cmp > 0) { /* key > p: move right */
/freebsd-11-stable/contrib/gdb/
H A Dmove-if-change23 cmp $1 $2 > /dev/null
/freebsd-11-stable/contrib/binutils/
H A Dmove-if-change18 if test -r "$2" && cmp -s "$1" "$2"; then
/freebsd-11-stable/usr.bin/cmp/
H A DMakefile6 PROG= cmp
7 SRCS= cmp.c link.c misc.c regular.c special.c
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h36 u64 cmp = atomic_load(&head_, memory_order_relaxed); local
38 u64 cnt = (cmp & kCounterMask) + kCounterInc;
40 p->next = (T*)(uptr)(cmp & kPtrMask);
41 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
48 u64 cmp = atomic_load(&head_, memory_order_acquire); local
50 T *cur = (T*)(uptr)(cmp & kPtrMask);
54 u64 cnt = (cmp & kCounterMask);
56 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
H A Dsanitizer_persistent_allocator.h37 uptr cmp = atomic_load(&region_pos, memory_order_acquire); local
39 if (cmp == 0 || cmp + size > end) return nullptr;
40 if (atomic_compare_exchange_weak(&region_pos, &cmp, cmp + size,
42 return (void *)cmp;
/freebsd-11-stable/lib/libc/arm/gen/
H A Ddivsi3.S60 cmp r0, #1
83 cmp r0, #1
179 cmp r1, r0
181 cmp r1, r0, lsl #1
183 cmp r1, r0, lsl #2
185 cmp r1, r0, lsl #3
187 cmp r1, r0, lsl #4
189 cmp r1, r0, lsl #5
191 cmp r1, r0, lsl #6
193 cmp r
[all...]
/freebsd-11-stable/sys/libkern/arm/
H A Ddivsi3.S62 cmp r0, #1
89 cmp r0, #1
185 cmp r1, r0
187 cmp r1, r0, lsl #1
189 cmp r1, r0, lsl #2
191 cmp r1, r0, lsl #3
193 cmp r1, r0, lsl #4
195 cmp r1, r0, lsl #5
197 cmp r1, r0, lsl #6
199 cmp r
[all...]
/freebsd-11-stable/lib/libc/stdlib/
H A Dbsearch.c74 int cmp; local
79 cmp = COMPAR(key, p);
80 if (cmp == 0)
82 if (cmp > 0) { /* key > p: move right */
/freebsd-11-stable/contrib/netbsd-tests/include/sys/
H A Dt_socket.c32 struct cmsghdr *cmp; local
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
132 cmp = malloc(CMSG_SPACE(sizeof(int)));
137 cmp
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dclzdi2.S23 cmp r0, 0
29 cmp r1, 0
44 cmp r0, 0
47 cmp r1, 0
/freebsd-11-stable/contrib/diff/src/
H A Ddiff.c1041 struct comparison cmp;
1042 #define DIR_P(f) (S_ISDIR (cmp.file[f].stat.st_mode) != 0)
1067 memset (cmp.file, 0, sizeof cmp.file);
1068 cmp.parent = parent;
1070 /* cmp.file[f].desc markers */
1077 cmp.file[0].desc = name0 == 0 ? NONEXISTENT : UNOPENED;
1078 cmp.file[1].desc = name1 == 0 ? NONEXISTENT : UNOPENED;
1091 cmp.file[0].name = name0;
1092 cmp
1038 struct comparison cmp; local
[all...]
H A Ddir.c201 diff_dirs (struct comparison const *cmp,
209 if ((cmp->file[0].desc == -1 || dir_loop (cmp, 0))
210 && (cmp->file[1].desc == -1 || dir_loop (cmp, 1)))
213 cmp->file[cmp->file[0].desc == -1].name);
219 if (! dir_read (&cmp->file[i], &dirdata[i]))
221 perror_with_name (cmp->file[i].name);
244 if (starting_file && ! cmp
200 diff_dirs(struct comparison const *cmp, int (*handle_file) (struct comparison const *, char const *, char const *)) argument
281 dir_loop(struct comparison const *cmp, int i) argument
[all...]
/freebsd-11-stable/usr.bin/tail/tests/
H A Dtail_test.sh37 atf_check cmp expectfile outfile
38 atf_check cmp expectfile outpipe
60 atf_check cmp expectfile outfile
61 atf_check cmp expectfile outpipe
82 atf_check cmp expectfile outfile
83 atf_check cmp expectfile outpipe
103 atf_check cmp expectfile outfile
104 atf_check cmp expectfile outpipe
125 atf_check cmp expectfile outfile
126 atf_check cmp expectfil
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddivsi3.S26 p0 = cmp.ge(r0,#0)
27 p1 = cmp.ge(r1,#0)
35 p2 = cmp.gtu(r2,r1)
41 p0 = cmp.gtu(r2,r5)
48 p0 = cmp.gtu(r2,r5)
66 p0 = cmp.gtu(r2,r1)
72 p0 = cmp.gtu(r2,r1)
H A Dmodsi3.S26 p2 = cmp.ge(r0,#0)
33 p0 = cmp.gtu(r1,r2)
40 p1 = cmp.eq(r3,#0)
48 p0 = cmp.gtu(r2,r0)
54 p0 = cmp.gtu(r2,r0)
/freebsd-11-stable/usr.bin/compress/tests/
H A Dcompress_test.sh42 atf_check cmp file1 expectfile1
61 atf_check cmp file1 expectfile1
138 atf_check -s exit:1 cmp -s file1.Z expectfile1
140 atf_check cmp file1 expectfile1
156 atf_check -s exit:1 cmp -s file1.Z expectfile1
157 atf_check -s exit:1 cmp -s file2.Z expectfile2
158 atf_check -s exit:1 cmp -s file1.Z file2.Z
160 atf_check cmp file1 expectfile1
161 atf_check cmp file2 expectfile2
177 atf_check -s exit:1 cmp
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_linux_list_sort.c34 int (*cmp)(void *, struct list_head *, struct list_head *); member in struct:drm_list_sort_thunk
47 return ((thunk->cmp)(thunk->priv, le1, le2));
54 drm_list_sort(void *priv, struct list_head *head, int (*cmp)(void *priv,
68 thunk.cmp = cmp;
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dt-qic.c59 int cmp; local
65 cmp = strcmp(line_in, line_back);
66 SM_TEST(exp == cmp);
67 if (cmp != exp && !SmTestVerbose)
72 fprintf(stderr, "cmp=%d\n", cmp);
80 fprintf(stderr, "cmp=%d\n", cmp);
101 int i, los, cmp; local
163 cmp
[all...]
/freebsd-11-stable/contrib/sendmail/include/sm/
H A Dtime.h49 # define timercmp(tvp, uvp, cmp) \
51 ((tvp)->tv_usec cmp (uvp)->tv_usec) : \
52 ((tvp)->tv_sec cmp (uvp)->tv_sec))
/freebsd-11-stable/usr.sbin/rtadvd/
H A Dtimer_subr.h35 #define TS_CMP(tsp, usp, cmp) \
37 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
38 ((tsp)->tv_sec cmp (usp)->tv_sec))
/freebsd-11-stable/usr.bin/bzip2/
H A DMakefile42 cmp sample1.bz2 sample1.rb2
43 cmp sample2.bz2 sample2.rb2
44 cmp sample3.bz2 sample3.rb2
45 cmp sample1.tst sample1.ref
46 cmp sample2.tst sample2.ref
47 cmp sample3.tst sample3.ref

Completed in 328 milliseconds

1234567891011>>