Home
last modified time | relevance | path

Searched refs:n2 (Results 76 – 100 of 138) sorted by relevance

123456

/illumos-gate/usr/src/cmd/fm/dicts/
H A DNXGE.po30 # keys: fault.io.n2.niu-xfp
46 # keys: fault.io.n2.niu-xaui
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_object.c169 char *n1, *n2; in name_cmp() local
174 nwam_ncu_typed_name_to_name(*(const char **)c2, &t2, &n2) in name_cmp()
176 int ret = strcasecmp(n1, n2); in name_cmp()
178 free(n2); in name_cmp()
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vcosf.c151 int n0 = 0, n1 = 0, n2 = 0, n3, hx, ix, medium; in __vcosf() local
188 n2 = LO(z2) + 1; in __vcosf()
207 hx = (n0 & 1) | ((n1 & 1) << 1) | ((n2 & 1) << 2) | in __vcosf()
358 *y = (n2 & 2)? -f2 : f2; in __vcosf()
H A D__vsinf.c155 int n0 = 0, n1 = 0, n2 = 0, n3, hx, ix, medium; in __vsinf() local
192 n2 = LO(z2); in __vsinf()
211 hx = (n0 & 1) | ((n1 & 1) << 1) | ((n2 & 1) << 2) | in __vsinf()
362 *y = (n2 & 2)? -f2 : f2; in __vsinf()
/illumos-gate/usr/src/tools/smatch/src/gvpr/
H A Dreturn-paths23 node_t n, n2;
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_ident.c59 char n2[DT_TYPE_NAMELEN]; in dt_idcook_sign() local
97 dt_node_type_name(args, n2, sizeof (n2))); in dt_idcook_sign()
324 char n2[DT_TYPE_NAMELEN]; in dt_idcook_args() local
425 dt_node_type_name(xnp, n2, sizeof (n2))); in dt_idcook_args()
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/inetd/
H A Dtlx.c297 netbufs_equal(struct netbuf *n1, struct netbuf *n2) in netbufs_equal() argument
299 return ((n1->len == n2->len) && in netbufs_equal()
300 (memcmp(n1->buf, n2->buf, (size_t)n1->len) == 0)); in netbufs_equal()
/illumos-gate/usr/src/test/util-tests/tests/awk/tests/
H A Dchem.awk472 function fields(n1, n2, i, s) {
473 if (n1 > n2)
476 for (i = n1; i <= n2; i++) {
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vsincosf.S80 #define n2 STACK_BIAS-0x40 macro
111 ! o2 n2
452 st %f15,[%fp+n2]
472 ld [%fp+n2],%o2
565 ld [%fp+n2],%o2
574 stx %g1,[%fp+n2]
635 ldd [%fp+n2],%f34
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A DAppcertUtil.pm663 my($n1, $n2);
670 $n2 = $1;
672 $n2 = 0;
675 if ($n1 == $n2) {
681 $n2 <=> $n1;
/illumos-gate/usr/src/contrib/ast/src/lib/libast/uwin/
H A Dsupport.c426 static const n0=3,n1=2,n2=1,n3=0;
428 static const n0=0,n1=1,n2=2,n3=3;
468 t=y; pt[n3]=0; pt[n2]&=0xf800; y1=t;
/illumos-gate/usr/src/cmd/awk/
H A Dlib.c112 makefields(int n1, int n2) /* create $n1..$n2 inclusive */ in makefields() argument
117 for (i = n1; i <= n2; i++) { in makefields()
498 cleanfld(int n1, int n2) in cleanfld() argument
503 for (i = n1; i <= n2; i++) { in cleanfld()
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dinsert.c803 int j, n1, n2; in sqliteGenerateConstraintChecks() local
809 n2 = strlen(zCol); in sqliteGenerateConstraintChecks()
814 if( n1+n2>sizeof(zErrMsg)-30 ){ in sqliteGenerateConstraintChecks()
820 n1 += n2; in sqliteGenerateConstraintChecks()
H A Dtest3.c882 int n1, n2; in btree_payload_size() local
892 sqliteBtreeDataSize(pCur, &n2); in btree_payload_size()
893 sprintf(zBuf, "%d", n1+n2); in btree_payload_size()
/illumos-gate/usr/src/cmd/troff/nroff.d/
H A DMakefile35 COMMONOBJS = hytab.o n1.o n2.o n3.o n4.o n5.o \
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A Discsi_io.c66 static int iscsi_sna_lt(uint32_t n1, uint32_t n2);
198 iscsi_sna_lt(uint32_t n1, uint32_t n2) in iscsi_sna_lt() argument
200 return ((n1 != n2) && in iscsi_sna_lt()
201 (((n1 < n2) && ((n2 - n1) < ISCSI_SNA32_CHECK)) || in iscsi_sna_lt()
202 ((n1 > n2) && ((n1 - n2) > ISCSI_SNA32_CHECK)))); in iscsi_sna_lt()
210 iscsi_sna_lte(uint32_t n1, uint32_t n2) in iscsi_sna_lte() argument
212 return ((n1 == n2) || in iscsi_sna_lte()
213 (((n1 < n2) && ((n2 - n1) < ISCSI_SNA32_CHECK)) || in iscsi_sna_lte()
214 ((n1 > n2) && ((n1 - n2) > ISCSI_SNA32_CHECK)))); in iscsi_sna_lte()
/illumos-gate/usr/src/uts/i86pc/io/xsvc/
H A Dxsvc.c792 xsvc_mnode_t *n2; in xsvc_mnode_key_compare() local
795 n2 = (xsvc_mnode_t *)e; in xsvc_mnode_key_compare()
797 if (n1->mn_key < n2->mn_key) { in xsvc_mnode_key_compare()
799 } else if (n1->mn_key > n2->mn_key) { in xsvc_mnode_key_compare()
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c56 ctype_compare(const void *n1, const void *n2) in ctype_compare() argument
59 const ctype_node_t *c2 = n2; in ctype_compare()
/illumos-gate/usr/src/cmd/lp/filter/postscript/filtdesc/
H A Ddpost.fd33 Options: MODES group = -n2
H A Dpostprint.fd36 Options: MODES group = -n2
/illumos-gate/usr/src/cmd/troff/troff.d/
H A DMakefile38 COMMONOBJS = hytab.o n1.o n2.o n3.o n4.o n5.o \
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dglob.c201 trim(register char* sp, register char* p1, int* n1, register char* p2, int* n2) in trim() argument
209 *n2 = 0; in trim()
222 *n2 = sp - dp - 1; in trim()
/illumos-gate/usr/src/common/bzip2/
H A Dbzlib.c1154 Int32 n, n2, ret; in BZ_API() local
1180 n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), in BZ_API()
1182 if (n != n2 || ferror(bzf->handle)) in BZ_API()
1214 Int32 n, n2, ret; in BZ_API() local
1239 n2 = fwrite ( (void*)(bzf->buf), sizeof(UChar), in BZ_API()
1241 if (n != n2 || ferror(bzf->handle)) in BZ_API()
/illumos-gate/usr/src/cmd/spell/
H A Dspellprog.c76 int n2; member
425 return ((*t->p2)(ep-t->n2, t->d2, t->a2, lev)); in trysuff()
/illumos-gate/usr/src/test/zfs-tests/cmd/btree_test/
H A Dbtree_test.c72 const int_node_t *n2 = v2; in avl_compare() local
74 uint64_t b = n2->data; in avl_compare()

123456