Searched refs:n2 (Results 101 - 125 of 219) sorted by relevance

123456789

/freebsd-current/contrib/pjdfstest/tests/granular/
H A D03.t16 n2=`namegen`
19 expect 0 mkdir ${n2} 0755
22 cd ${n2}
135 expect 0 rmdir ${n2}
/freebsd-current/contrib/bzip2/
H A Dhuffman.c72 Int32 nNodes, nHeap, n1, n2, i, j, k; local
102 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP(1);
104 parent[n1] = parent[n2] = nNodes;
105 weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]);
/freebsd-current/usr.bin/xargs/tests/
H A DMakefile20 ${PACKAGE}FILES+= regress.n2.out
/freebsd-current/usr.bin/localedef/
H A Dcollate.c357 weight_compare(const void *n1, const void *n2) argument
360 int32_t k2 = ((const weight_t *)n2)->pri;
368 collsym_compare(const void *n1, const void *n2) argument
371 const collsym_t *c2 = n2;
381 collundef_compare(const void *n1, const void *n2) argument
384 const collundef_t *c2 = n2;
394 element_compare_symbol(const void *n1, const void *n2) argument
397 const collelem_t *c2 = n2;
407 element_compare_expand(const void *n1, const void *n2) argument
410 const collelem_t *c2 = n2;
420 collchar_compare(const void *n1, const void *n2) argument
431 subst_compare(const void *n1, const void *n2) argument
442 subst_compare_ref(const void *n1, const void *n2) argument
[all...]
/freebsd-current/contrib/telnet/libtelnet/
H A Dpk.c237 int n1,n2,op; local
248 n2 = in[op+1] - 'A' + 10;
250 n2 = in[op+1] - '0';
251 buf[l] = n1*16 +n2;
/freebsd-current/sys/dev/bhnd/cores/chipc/pwrctl/
H A Dbhnd_pwrctl_subr.c192 uint32_t n1, n2, clock, m1, m2, m3, mc; local
195 n2 = CHIPC_GET_BITS(n, CHIPC_CN_N2);
203 n2 += CHIPC_F5_BIAS;
208 n2 += CHIPC_T2_BIAS;
210 KASSERT(n2 >= 5 && n2 <= 23, ("invalid n2 value"));
234 clock = clk_base * n1 * n2;
/freebsd-current/sbin/ipf/ipfsync/
H A Dipfsyncd.c455 int n2; local
488 n2 = sizeof(*sh) + len;
491 n3 = write(lfd, buff, n2);
498 n2 -= n3;
521 int n2; local
539 n2 = SMC_RLOG;
540 (void) ioctl(lfd, SIOCIPFFL, &n2);
/freebsd-current/contrib/mandoc/
H A Dman_html.c415 list_continues(const struct roff_node *n1, const struct roff_node *n2) argument
421 n2 == NULL || n2->type != ROFFT_BLOCK)
424 (n2->tok == MAN_TP || n2->tok == MAN_TQ))
426 if (n1->tok != MAN_IP || n2->tok != MAN_IP)
429 n2 = n2->head->child;
431 s2 = n2 == NULL ? "" : n2
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dvfprintf.c181 register int n, m, n2; /* handy integers (short term usage) */ local
271 n2 = 0; \
275 n2 = 10 * n2 + to_digit(*cp); \
286 nextarg = n2; \
835 register int n, n2; /* handy integer (short term usage) */ local
861 n2 = 0; \
865 n2 = 10 * n2 + to_digit(*cp); \
871 nextarg = n2; \
[all...]
/freebsd-current/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c1354 struct node *n1, *n2; local
1357 n2 = TAILQ_FIRST(s2);
1358 TAILQ_REMOVE(s2, n2, link);
1361 if (n1->id >= n2->id)
1364 TAILQ_INSERT_TAIL(s1, n2, link);
1365 else if (n1->id > n2->id)
1366 TAILQ_INSERT_BEFORE(n1, n2, link);
1368 if (n1->type == NODE_TREE && n2->type == NODE_TREE) {
1369 if (strcmp(n1->name, n2->name) != 0)
1372 n2
[all...]
/freebsd-current/crypto/openssl/crypto/lhash/
H A Dlhash.c215 OPENSSL_LH_NODE **n, **n1, **n2, *np; local
240 n2 = &(lh->b[p + pmax]);
241 *n2 = NULL;
247 np->next = *n2;
248 *n2 = np;
/freebsd-current/usr.bin/tsort/
H A Dtsort.c195 NODE *n2; local
203 n2 = get_node(s2);
209 if (n1->n_arcs[i] == n2)
221 n1->n_arcs[n1->n_narcs++] = n2;
222 ++n2->n_refcnt;
/freebsd-current/lib/libutil/
H A Dlogin_cap.c545 rmultiply(u_quad_t n1, u_quad_t n2) argument
553 if (n1 == 0 || n2 == 0)
556 return n2;
557 if (n2 == 1)
577 for (b2 = bpw; (((u_quad_t)1 << (b2-1)) & n2) == 0; --b2)
587 * h2 = n2 & ~1
589 * l2 = n2 & 1
604 m = (n1 >> 1) * (n2 >> 1);
611 r = (n1 & n2 & 1)
612 + (n2
[all...]
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c519 CRYPTO_ALIGN(16) uint32_t n2[4]; local
530 memcpy(&n2[0], npub, 3 * 4);
531 n2[3] = 0x01000000;
532 aesni_encrypt1(T, _mm_load_si128((const __m128i *) n2), rkeys);
575 aesni_encrypt8full(c + i, n2, rkeys, m + i, accum, Hv, H2v, H3v, H4v, rev); \
589 aesni_encrypt8(outni, n2, rkeys); \
607 n2[3] &= 0x00ffffff;
608 COUNTER_INC2(n2);
658 CRYPTO_ALIGN(16) uint32_t n2[4]; local
670 memcpy(&n2[
[all...]
/freebsd-current/lib/msun/ld80/
H A Dk_expl.h222 int n, n2; local
224 /* Reduce x to (k*ln2 + endpoint[n2] + r1 + r2). */
228 n2 = (unsigned)n % INTERVALS;
234 /* Evaluate expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). */
241 t = (long double)tbl[n2].lo + tbl[n2].hi;
242 *hip = tbl[n2].hi;
243 *lop = tbl[n2].lo + t * (q + r1);
/freebsd-current/lib/msun/ld128/
H A Dk_expl.h241 int n, n2; local
243 /* Reduce x to (k*ln2 + endpoint[n2] + r1 + r2). */
246 n2 = (unsigned)n % INTERVALS;
253 /* Evaluate expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). */
257 t = tbl[n2].lo + tbl[n2].hi;
258 *hip = tbl[n2].hi;
259 *lop = tbl[n2].lo + t * (q + r1);
/freebsd-current/contrib/netbsd-tests/ipf/
H A Dt_nat_exec.sh64 test_case n2 nattest text text
104 atf_add_test_case n2
/freebsd-current/contrib/pjdfstest/tests/chflags/
H A D08.t16 n2=`namegen`
H A D11.t16 n2=`namegen`
/freebsd-current/contrib/pjdfstest/tests/unlink/
H A D00.t14 n2=`namegen`
16 expect 0 mkdir ${n2} 0755
18 cd ${n2}
213 expect 0 rmdir ${n2}
/freebsd-current/crypto/openssl/test/
H A Dcms-examples.pl348 $n2 = sysread $fp2, $rd2, 4096;
349 last if ( $n1 != $n2 );
/freebsd-current/stand/libsa/
H A Dzalloc_malloc.c155 Calloc(size_t n1, size_t n2, const char *file, int line) argument
157 uintptr_t bytes = (uintptr_t)n1 * (uintptr_t)n2;
/freebsd-current/lib/libbluetooth/
H A Dbluetooth.c347 int n1, n2; local
352 if ((n2 = bt_hex_nibble(str[1])) < 0)
355 return ((((n1 & 0x0f) << 4) | (n2 & 0x0f)) & 0xff);
/freebsd-current/tools/test/stress2/misc/
H A Dall.sh206 n2=`echo $lst | wc -w | sed 's/ //g'`
215 printf "$ts all ($n1/$n2): $i\n" >> $alllog
216 printf "$ts all ($n1/$n2): $i\r\n" > $console
/freebsd-current/sys/contrib/openzfs/module/unicode/
H A Du8_textprep.c568 size_t n2, boolean_t is_it_toupper, int *errnum)
580 while (i1 < n1 && i2 < n2) {
637 } else if ((i2 + sz2) > n2) {
639 for (j = 0; (i2 + j) < n2; )
678 if (i2 >= n2)
1735 do_norm_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, size_t n2, argument
1753 s2last = s2 + n2;
1856 size_t n2; local
1896 n2 = strlen(s2);
1900 if (n < n2)
567 do_case_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, size_t n2, boolean_t is_it_toupper, int *errnum) argument
[all...]

Completed in 179 milliseconds

123456789