Home
last modified time | relevance | path

Searched refs:cmp (Results 1 – 25 of 426) sorted by last modified time

12345678910>>...18

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Darc.c655 #define HDR_SET_COMPRESS(hdr, cmp) BF32_SET((hdr)->b_flags, \ argument
656 HDR_COMPRESS_OFFSET, SPA_COMPRESSBITS, (cmp));
1543 arc_hdr_set_compress(arc_buf_hdr_t *hdr, enum zio_compress cmp) in arc_hdr_set_compress() argument
1562 HDR_SET_COMPRESS(hdr, cmp); in arc_hdr_set_compress()
1563 ASSERT3U(HDR_GET_COMPRESS(hdr), ==, cmp); in arc_hdr_set_compress()
H A Drefcount.c66 int cmp = cmp1 ? cmp1 : cmp2; in zfs_refcount_compare() local
67 return ((cmp || r1->ref_search) ? cmp : TREE_PCMP(r1, r2)); in zfs_refcount_compare()
H A Dsa.c264 int cmp = TREE_CMP(node1->lot_hash, node2->lot_hash); in layout_hash_compare() local
265 if (likely(cmp)) in layout_hash_compare()
266 return (cmp); in layout_hash_compare()
H A Dmetaslab.c676 if (likely(cmp)) in metaslab_compare()
677 return (cmp); in metaslab_compare()
779 if (likely(cmp)) in metaslab_sort_by_flushed()
780 return (cmp); in metaslab_sort_by_flushed()
784 cmp = TREE_CMP(a_vdev_id, b_vdev_id); in metaslab_sort_by_flushed()
785 if (cmp) in metaslab_sort_by_flushed()
786 return (cmp); in metaslab_sort_by_flushed()
1292 if (likely(cmp)) in metaslab_rangesize32_compare()
1293 return (cmp); in metaslab_rangesize32_compare()
1312 if (likely(cmp)) in metaslab_rangesize64_compare()
[all …]
H A Dzfs_vnops.c3881 int cmp, serr, terr; in zfs_rename() local
3939 cmp = -1; in zfs_rename()
3941 cmp = 1; in zfs_rename()
3949 cmp = u8_strcmp(snm, tnm, 0, nofold, U8_UNICODE_LATEST, &error); in zfs_rename()
3951 if (cmp == 0) { in zfs_rename()
4002 if (cmp < 0) { in zfs_rename()
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A DT.misc40 cmp -s $TEMP1 $TEMP2 || fail 'BAD: T.misc ghosh RE bug'
47 cmp -s $TEMP1 $TEMP2 || fail 'BAD: T.misc last number bug'
52 cmp -s $TEMP1 $TEMP2 || fail 'BAD: T.misc hex string cvt'
56 cmp -s $TEMP1 $TEMP2 || fail 'BAD: T.misc oct string cvt'
62 cmp -s $TEMP1 $TEMP2 || fail 'BAD: T.misc bad field increment'
/illumos-gate/usr/src/uts/intel/nsmb/
H A DMakefile125 cmp -s ioc_check.ref $@.tmp && \
/illumos-gate/usr/src/uts/common/rpc/
H A Dclnt_cots.c540 struct cm_xprt **cmp; in clnt_zone_destroy() local
545 cmp = &cm_hd; in clnt_zone_destroy()
548 *cmp = cm_entry->x_next; in clnt_zone_destroy()
552 cmp = &cm_entry->x_next; in clnt_zone_destroy()
1839 prev = cmp = &cm_hd; in connmgr_get()
1875 *cmp = cm_entry->x_next; in connmgr_get()
1914 prev = cmp; in connmgr_get()
1916 cmp = &cm_entry->x_next; in connmgr_get()
1974 cmp = &cm_hd; in connmgr_get()
1988 cmp = &cm_entry->x_next; in connmgr_get()
[all …]
/illumos-gate/usr/src/pkg/manifests/
H A Dsystem-test-utiltest.p5m180 file path=opt/util-tests/tests/awk/examples/awk/t.cmp mode=0444
405 file path=opt/util-tests/tests/awk/examples/out/t.cmp mode=0444
H A Dshell-ksh93.p5m47 hardlink path=usr/bin/cmp target=alias
98 file path=usr/share/man/man1/cmp.1
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_proc.c1905 env_match(const char *cmp, const char *nameval) in env_match() argument
1908 size_t cmplen = strlen(cmp); in env_match()
1912 strncmp(nameval, cmp, cmplen) == 0) { in env_match()
/illumos-gate/usr/src/cmd/lockstat/
H A Dlockstat.c460 mergesort(int (*cmp)(lsrec_t *, lsrec_t *), lsrec_t **a, lsrec_t **b, int n) in mergesort()
466 mergesort(cmp, a, b, m); in mergesort()
468 mergesort(cmp, a + m, b + m, n - m); in mergesort()
474 *a++ = cmp(b[i], b[j]) < 0 ? b[i++] : b[j--]; in mergesort()
479 coalesce(int (*cmp)(lsrec_t *, lsrec_t *), lsrec_t **lock, int n) in coalesce()
488 if (cmp(current, target) != 0) { in coalesce()
516 predicate_add(char **pred, char *what, char *cmp, uintptr_t value) in predicate_add() argument
534 if (cmp != NULL) { in predicate_add()
536 *pred, what, cmp, (void *)value); in predicate_add()
541 if (cmp != NULL) { in predicate_add()
[all …]
/illumos-gate/usr/src/boot/libsa/zfs/
H A Dzfsimpl.c1578 int cmp = AVL_CMP(ub1->ub_txg, ub2->ub_txg); in vdev_uberblock_compare() local
1580 if (cmp != 0) in vdev_uberblock_compare()
1581 return (cmp); in vdev_uberblock_compare()
1583 cmp = AVL_CMP(ub1->ub_timestamp, ub2->ub_timestamp); in vdev_uberblock_compare()
1584 if (cmp != 0) in vdev_uberblock_compare()
1585 return (cmp); in vdev_uberblock_compare()
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_node.c104 #define timespeccmp(tvp, uvp, cmp) \ argument
106 ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \
107 ((tvp)->tv_sec cmp (uvp)->tv_sec))
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_dispatch.c635 COMPOUND4args *cmp; in rfs4_dispatch() local
644 cmp = (COMPOUND4args *)ap; in rfs4_dispatch()
645 ASSERT(cmp != NULL); in rfs4_dispatch()
647 if (!rfs4_minorversion_enabled(cmp->minorversion)) in rfs4_dispatch()
648 return (rfs4_send_minor_mismatch(xprt, cmp)); in rfs4_dispatch()
650 if (cmp->minorversion == 0) in rfs4_dispatch()
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dmks.h362 LEXTERN uint m_binsrch (uint n, int (*cmp)(uint i));
/illumos-gate/usr/src/tools/scripts/
H A Dwebrev.sh3094 cmp $ofile $nfile > /dev/null 2>&1
3352 cmp $WDIR/raw_files/old/$PP $WDIR/raw_files/new/$P > /dev/null 2>&1
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dql_xioctl.c7412 cmp->hdr.len[1])); in ql_process_flt()
7422 w16 = CHAR_TO_SHORT(cmp->hdr.version[0], cmp->hdr.version[1]); in ql_process_flt()
7424 cmp->hdr.Signature[0] != 'F' || in ql_process_flt()
7425 cmp->hdr.Signature[1] != 'P' || in ql_process_flt()
7426 cmp->hdr.Signature[2] != 'C' || in ql_process_flt()
7427 cmp->hdr.Signature[3] != 'M') { in ql_process_flt()
7430 cmp->hdr.Signature[0], cmp->hdr.Signature[1], in ql_process_flt()
7431 cmp->hdr.Signature[2], cmp->hdr.Signature[3]); in ql_process_flt()
7435 cmp->hdr.NumberEntries[1])); in ql_process_flt()
7442 nv_rg = cmp->cfg[i].ConfigRegion; in ql_process_flt()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libcmd/
H A DRELEASE31 10-04-12 cat.c: fix -v bug that dumped core and make consistent with cmp --print-chars
32 10-04-11 cmp.c: add --print-bytes, --count=n, --differences=n
80 09-01-05 cmp.c: fix EOF diagnostic to conform to posix
181 04-12-01 cmp.c: fix %6I*ld => %6I*d -- doh
184 04-11-22 cmp.c: handle >2G chars/lines
275 99-05-01 cmp,comm,cp/mv/ln,expr,fold,getconf,head: long options
/illumos-gate/usr/src/test/zfs-tests/include/
H A Dcommands.cfg38 cmp
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm.c605 struct cmd_map *cmp = cmd_map; in parse_args() local
612 while (cmp->bam_cmdname) { in parse_args()
613 if (strcmp(argv[1], cmp->bam_cmdname) == 0) { in parse_args()
614 bam_cmd = cmp->bam_cmd; in parse_args()
615 bam_subcmd = cmp->bam_subcmd; in parse_args()
618 cmp++; in parse_args()
620 if (cmp->bam_cmdname == NULL) { in parse_args()
/illumos-gate/usr/src/uts/sun4v/vm/
H A Dmach_sfmmu_asm.S83 cmp %g1, %g3
89 cmp %g1, INVALID_CONTEXT
94 cmp %g5, INVALID_CONTEXT /* kernel or invalid ctx ? */
103 cmp %g5, INVALID_CONTEXT /* kernel or invalid ctx? */
142 cmp %g5, %g1 /* is it the victim? */
147 cmp %g5, INVALID_CONTEXT /* kernel or invalid ctx ? */
156 cmp %g4, INVALID_CONTEXT /* is pri-ctx the victim? */
251 cmp %o3, %o0
258 cmp %o5, INVALID_CONTEXT ! ctx is invalid?
/illumos-gate/usr/src/uts/sun4v/ml/
H A Dmach_subr_asm.S311 cmp CBR1, CBR2 ! 3
H A Dmach_xc.S141 cmp %o1, %g5
146 cmp %o1, %g5
151 cmp %o1, %g5
158 cmp %o1, %g5
H A Dwbuf.S77 cmp %g5, T_ALIGNMENT
213 cmp %g5, T_ALIGNMENT
402 cmp %g5, T_ALIGNMENT

12345678910>>...18