Home
last modified time | relevance | path

Searched refs:n2 (Results 1 – 25 of 29) sorted by relevance

12

/f-stack/freebsd/netpfil/ipfw/test/
H A Dtest_dn_heap.c132 int i, n, n2, n3; in main() local
141 n2 = (argc > 2) ? atoi(argv[2]) : 0; in main()
142 if (n2 <= 0) in main()
147 while (n2-- > 0) { in main()
/f-stack/tools/libutil/
H A Dlogin_cap.c446 rmultiply(u_quad_t n1, u_quad_t n2) in rmultiply() argument
454 if (n1 == 0 || n2 == 0) in rmultiply()
457 return n2; in rmultiply()
458 if (n2 == 1) in rmultiply()
478 for (b2 = bpw; (((u_quad_t)1 << (b2-1)) & n2) == 0; --b2) in rmultiply()
505 m = (n1 >> 1) * (n2 >> 1); in rmultiply()
512 r = (n1 & n2 & 1) in rmultiply()
513 + (n2 & 1) * (n1 & ~(u_quad_t)1) in rmultiply()
514 + (n1 & 1) * (n2 & ~(u_quad_t)1); in rmultiply()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/
H A Daead_aes256gcm_aesni.c519 CRYPTO_ALIGN(16) uint32_t n2[4]; in crypto_aead_aes256gcm_encrypt_detached_afternm()
530 memcpy(&n2[0], npub, 3 * 4); in crypto_aead_aes256gcm_encrypt_detached_afternm()
531 n2[3] = 0x01000000; in crypto_aead_aes256gcm_encrypt_detached_afternm()
607 n2[3] &= 0x00ffffff; in crypto_aead_aes256gcm_encrypt_detached_afternm()
608 COUNTER_INC2(n2); in crypto_aead_aes256gcm_encrypt_detached_afternm()
670 memcpy(&n2[0], npub, 3 * 4); in crypto_aead_aes256gcm_decrypt_detached_afternm()
671 n2[3] = 0x01000000; in crypto_aead_aes256gcm_decrypt_detached_afternm()
769 n2[3] &= 0x00ffffff; in crypto_aead_aes256gcm_decrypt_detached_afternm()
771 COUNTER_INC2(n2); in crypto_aead_aes256gcm_decrypt_detached_afternm()
791 n2[3] = 0U; in crypto_aead_aes256gcm_decrypt_detached_afternm()
[all …]
/f-stack/app/nginx-1.16.1/src/core/
H A Dngx_rbtree.h65 #define ngx_rbt_copy_color(n1, n2) (n1->color = n2->color) argument
H A Dngx_string.c822 ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2) in ngx_memn2cmp() argument
827 if (n1 <= n2) { in ngx_memn2cmp()
832 n = n2; in ngx_memn2cmp()
838 if (m || n1 == n2) { in ngx_memn2cmp()
H A Dngx_string.h172 ngx_int_t ngx_memn2cmp(u_char *s1, u_char *s2, size_t n1, size_t n2);
/f-stack/freebsd/contrib/openzfs/module/unicode/
H A Du8_textprep.c577 while (i1 < n1 && i2 < n2) { in do_case_compare()
634 } else if ((i2 + sz2) > n2) { in do_case_compare()
636 for (j = 0; (i2 + j) < n2; ) in do_case_compare()
675 if (i2 >= n2) in do_case_compare()
1740 s2last = s2 + n2; in do_norm_compare()
1843 size_t n2; in u8_strcmp() local
1883 n2 = strlen(s2); in u8_strcmp()
1887 if (n < n2) in u8_strcmp()
1888 n2 = n; in u8_strcmp()
1897 n1, n2, B_TRUE, errnum)); in u8_strcmp()
[all …]
/f-stack/app/redis-5.0.5/deps/jemalloc/bin/
H A Djeprof.in1829 my $n2 = GetEntry($samples2, $l);
1841 my $source_class = (($n1 + $n2 > 0)
1849 HtmlPrintNumber($n2),
1856 UnparseAlt($n2),
4074 if ($n2 != 0) {
4077 $n2 *= $scale_factor;
4090 $n2 /= $ratio;
4095 return ($n1, $s1, $n2, $s2);
4161 my ($n1, $s1, $n2, $s2) = ($1, $2, $3, $4);
4162 if (($n1 == $n2) && ($s1 == $s2)) {
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/rng/
H A Dsparc_sun_oracle_rng.txt7 - 'SUNW,n2-rng' for Niagara 2 Platform (SUN UltraSPARC T2 CPU)
/f-stack/freebsd/kern/
H A Duipc_mbuf.c1477 struct mbuf *m, *n, *n2, **prev; in m_collapse() local
1518 if ((n2 = n->m_next) != NULL && in m_collapse()
1519 n->m_len + n2->m_len < MCLBYTES) { in m_collapse()
1524 m_copydata(n2, 0, n2->m_len, in m_collapse()
1526 m->m_len = n->m_len + n2->m_len; in m_collapse()
1527 m->m_next = n2->m_next; in m_collapse()
1531 curfrags -= frags_per_mbuf(n2); in m_collapse()
1533 m_free(n2); in m_collapse()
H A Dvfs_cache.c2285 struct namecache *ncp, *n2, *ndd; in cache_enter_time() local
2357 CK_SLIST_FOREACH(n2, ncpp, nc_hash) { in cache_enter_time()
2358 if (n2->nc_dvp == dvp && in cache_enter_time()
2359 n2->nc_nlen == cnp->cn_namelen && in cache_enter_time()
2360 !bcmp(n2->nc_name, cnp->cn_nameptr, n2->nc_nlen)) { in cache_enter_time()
2361 MPASS(cache_ncp_canuse(n2)); in cache_enter_time()
2362 if ((n2->nc_flag & NCF_NEGATIVE) != 0) in cache_enter_time()
2367 KASSERT(n2->nc_vp == vp, in cache_enter_time()
2369 __func__, n2->nc_vp, vp)); in cache_enter_time()
2382 KASSERT((n2->nc_flag & NCF_TS) != 0, in cache_enter_time()
[all …]
/f-stack/freebsd/net/
H A Dif_vlan.c442 int hwidth2, i, j, n, n2; in vlan_growhash() local
455 n2 = 1 << hwidth2; in vlan_growhash()
460 hash2 = malloc(sizeof(struct ifvlanhead) * n2, M_VLAN, M_WAITOK); in vlan_growhash()
466 for (j = 0; j < n2; j++) in vlan_growhash()
471 j = HASH(ifv->ifv_vid, n2 - 1); in vlan_growhash()
478 trunk->hmask = n2 - 1; in vlan_growhash()
482 "VLAN hash table resized from %d to %d buckets\n", n, n2); in vlan_growhash()
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/cmd/btree_test/
H A Dbtree_test.c71 const int_node_t *n2 = v2; in avl_compare() local
73 uint64_t b = n2->data; in avl_compare()
/f-stack/freebsd/mips/cavium/octe/
H A Dethernet-tx.c196 pko_command.s.n2 = 1; /* Don't pollute L2 with the outgoing packet */ in cvm_oct_xmit()
/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dhuf_compress.c446 int const n2 = (huffNode[lowS].count < huffNode[lowN].count) ? lowS-- : lowN++; in HUF_buildTree() local
447 huffNode[nodeNb].count = huffNode[n1].count + huffNode[n2].count; in HUF_buildTree()
448 huffNode[n1].parent = huffNode[n2].parent = (U16)nodeNb; in HUF_buildTree()
/f-stack/freebsd/contrib/device-tree/Bindings/arm/
H A Damlogic.yaml155 - hardkernel,odroid-n2
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c121 sfs_node_t *n2 = arg; in sfs_compare_ids() local
124 equal = n1->sn_id == n2->sn_id && in sfs_compare_ids()
125 n1->sn_parent_id == n2->sn_parent_id; in sfs_compare_ids()
/f-stack/freebsd/contrib/device-tree/src/arm64/amlogic/
H A Dmeson-g12b-odroid-n2.dts16 compatible = "hardkernel,odroid-n2", "amlogic,s922x", "amlogic,g12b";
50 label = "n2:blue";
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dip_nat.c8439 ipf_nat_cmp_rules(n1, n2) in ipf_nat_cmp_rules() argument
8440 ipnat_t *n1, *n2; in ipf_nat_cmp_rules()
8442 if (n1->in_size != n2->in_size)
8445 if (bcmp((char *)&n1->in_v, (char *)&n2->in_v,
8449 if (bcmp((char *)&n1->in_tuc, (char *)&n2->in_tuc,
8452 if (n1->in_ndst.na_atype != n2->in_ndst.na_atype)
8454 if (n1->in_ndst.na_function != n2->in_ndst.na_function)
8459 if (n1->in_nsrc.na_atype != n2->in_nsrc.na_atype)
8461 if (n1->in_nsrc.na_function != n2->in_nsrc.na_function)
8466 if (n1->in_odst.na_atype != n2->in_odst.na_atype)
[all …]
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-pko.h199 …uint64_t n2 : 1; /**< When set, packet data not allocated in L2 cache by PKO */ member
/f-stack/freebsd/contrib/openzfs/include/sys/lua/
H A Dlua.h391 int fidx2, int n2);
/f-stack/freebsd/vm/
H A Dswap_pager.c580 unsigned long n, n2; in swap_pager_swap_init() local
628 n2 = n; in swap_pager_swap_init()
646 if (n < n2) in swap_pager_swap_init()
648 n2, n); in swap_pager_swap_init()
/f-stack/dpdk/drivers/net/octeontx/
H A Docteontx_rxtx.h51 uint64_t n2 : 1; member
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlapi.c1274 int fidx2, int n2) { in lua_upvaluejoin() argument
1277 UpVal **up2 = getupvalref(L, fidx2, n2, NULL); in lua_upvaluejoin()
/f-stack/app/redis-5.0.5/src/
H A Dredis-cli.c3428 int clusterManagerSlotCountCompareDesc(const void *n1, const void *n2) { in clusterManagerSlotCountCompareDesc() argument
3430 clusterManagerNode *node2 = *((clusterManagerNode **) n2); in clusterManagerSlotCountCompareDesc()
3434 int clusterManagerCompareNodeBalance(const void *n1, const void *n2) { in clusterManagerCompareNodeBalance() argument
3436 clusterManagerNode *node2 = *((clusterManagerNode **) n2); in clusterManagerCompareNodeBalance()
6652 char *n1, *n2; in getInfoField() local
6658 n2 = strchr(p,','); in getInfoField()
6659 if (n2 && n2 < n1) n1 = n2; in getInfoField()

12