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

1234567891011>>

/freebsd-10-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-10-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-10-stable/usr.bin/cmp/tests/
H A Dcmp_test2.sh25 # $FreeBSD: stable/10/usr.bin/cmp/tests/cmp_test2.sh 314425 2017-02-28 22:18:05Z 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-10-stable/lib/libc/stdlib/
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-10-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-10-stable/contrib/binutils/
H A Dmove-if-change18 if test -r "$2" && cmp -s "$1" "$2"; then
/freebsd-10-stable/contrib/gdb/
H A Dmove-if-change23 cmp $1 $2 > /dev/null
/freebsd-10-stable/usr.bin/cmp/
H A DMakefile6 PROG= cmp
7 SRCS= cmp.c link.c misc.c regular.c special.c
/freebsd-10-stable/contrib/ncurses/misc/
H A Dchkdef.cmd52 * `cmp' is zero when the file is valid
56 cmp = 0
84 cmp = 1
90 cmp = 2
97 cmp = 3
108 exit cmp
/freebsd-10-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-10-stable/sys/libkern/arm/
H A Ddivsi3.S64 cmp r0, #1
95 cmp r0, #1
191 cmp r1, r0
193 cmp r1, r0, lsl #1
195 cmp r1, r0, lsl #2
197 cmp r1, r0, lsl #3
199 cmp r1, r0, lsl #4
201 cmp r1, r0, lsl #5
203 cmp r1, r0, lsl #6
205 cmp r
[all...]
/freebsd-10-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-10-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-10-stable/usr.sbin/pkg_install/version/
H A Dmain.c59 int ch, cmp = 0; local
63 cmp = version_cmp(argv[2], argv[3]);
64 printf(cmp > 0 ? ">\n" : (cmp < 0 ? "<\n" : "=\n"));
68 cmp = version_match(argv[3], argv[2]);
69 exit(cmp == 1 ? 0 : 1);
/freebsd-10-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-10-stable/lib/libc/ia64/string/
H A Dbcopy.S35 cmp.le p6,p0=in2,r0 // bail if len <= 0
39 cmp.ltu p6,p0=r14,in2 // dst-src < len
44 cmp.eq p6,p0=r14,r15 // different alignment?
50 cmp.ne p6,p0=r0,in2
54 2: cmp.eq p6,p0=r14,r0 // aligned?
61 cmp.eq p6,p0=r0,in2 // done?
62 cmp.eq p7,p0=r0,r15 ;; // aligned now?
70 cmp.ltu p6,p0=in2,r14 ;; // len < 8?
75 cmp.ne p6,p0=r0,in2 // done?
90 cmp
[all...]
H A Dffs.S39 cmp.eq p6,p0=r14,r0
51 cmp.ne p6,p0=r0,r16
58 cmp.ne p6,p0=r0,r16
68 cmp.ne p6,p0=r0,r16
77 cmp.ne p6,p0=r16,r0
78 cmp.ne p7,p0=r17,r0
79 cmp.ne p8,p0=r18,r0
/freebsd-10-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-10-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-10-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-10-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-10-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-10-stable/usr.bin/bzip2/
H A DMakefile43 cmp sample1.bz2 sample1.rb2
44 cmp sample2.bz2 sample2.rb2
45 cmp sample3.bz2 sample3.rb2
46 cmp sample1.tst sample1.ref
47 cmp sample2.tst sample2.ref
48 cmp sample3.tst sample3.ref
/freebsd-10-stable/contrib/compiler-rt/lib/arm/
H A Dswitch8.S35 cmp r0, ip // signed compare with index

Completed in 164 milliseconds

1234567891011>>