Searched refs:HASH_SIZE (Results 1 - 13 of 13) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/common/
H A Ddb_shash.c41 #define HASH_SIZE(power, prime) { \ macro
45 HASH_SIZE(32, 37); /* 2^5 */
46 HASH_SIZE(64, 67); /* 2^6 */
47 HASH_SIZE(128, 131); /* 2^7 */
48 HASH_SIZE(256, 257); /* 2^8 */
49 HASH_SIZE(512, 521); /* 2^9 */
50 HASH_SIZE(1024, 1031); /* 2^10 */
51 HASH_SIZE(2048, 2053); /* 2^11 */
52 HASH_SIZE(4096, 4099); /* 2^12 */
53 HASH_SIZE(819
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dinode_hash.c20 #define HASH_SIZE 311 /* Should be prime */ macro
21 #define hash_inode(i) ((i) % HASH_SIZE)
23 /* array of [HASH_SIZE] elements */
64 ino_dev_hashtable = xzalloc(HASH_SIZE * sizeof(*ino_dev_hashtable));
77 for (i = 0; ino_dev_hashtable && i < HASH_SIZE; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Ddeflate.c99 #define HASH_SIZE (unsigned)(1<<HASH_BITS) macro
100 #define HASH_MASK (HASH_SIZE-1)
102 /* HASH_SIZE and WSIZE must be powers of two */
154 Pos head[HASH_SIZE];
156 * HASH_SIZE is a dynamic value, recompile with -DDYN_ALLOC.
328 head = (Pos far *) zcalloc(HASH_SIZE, sizeof(Pos));
338 head[HASH_SIZE-1] = NIL;
339 memset((char*)head, NIL, (unsigned)(HASH_SIZE-1)*sizeof(*head));
629 for (n = 0; n < HASH_SIZE; n++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/Documentation/vm/
H A Dpage-types.c192 #define HASH_SIZE (1 << HASH_SHIFT) macro
193 #define HASH_MASK (HASH_SIZE - 1)
197 static unsigned long nr_pages[HASH_SIZE];
198 static uint64_t page_flags[HASH_SIZE];
529 /* search through the remaining (HASH_SIZE-1) slots */
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Ddma-debug.c36 #define HASH_SIZE 1024ULL macro
38 #define HASH_FN_MASK (HASH_SIZE - 1)
71 static struct hash_bucket dma_entry_hash[HASH_SIZE];
320 for (idx = 0; idx < HASH_SIZE; idx++) {
659 for (i = 0; i < HASH_SIZE; ++i) {
725 for (i = 0; i < HASH_SIZE; ++i) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/
H A Dipip.c120 #define HASH_SIZE 16 macro
125 struct ip_tunnel *tunnels_r_l[HASH_SIZE];
126 struct ip_tunnel *tunnels_r[HASH_SIZE];
127 struct ip_tunnel *tunnels_l[HASH_SIZE];
762 for (h = 0; h < HASH_SIZE; h++) {
H A Dip_gre.c127 #define HASH_SIZE 16 macro
131 struct ip_tunnel *tunnels[4][HASH_SIZE];
1293 for (h = 0; h < HASH_SIZE; h++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/kernel/
H A Daudit_tree.c166 enum {HASH_SIZE = 128}; enumerator in enum:__anon18755
167 static struct list_head chunk_hash_heads[HASH_SIZE];
173 return chunk_hash_heads + n % HASH_SIZE;
947 for (i = 0; i < HASH_SIZE; i++)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv6/
H A Dsit.c63 #define HASH_SIZE 16 macro
71 struct ip_tunnel *tunnels_r_l[HASH_SIZE];
72 struct ip_tunnel *tunnels_r[HASH_SIZE];
73 struct ip_tunnel *tunnels_l[HASH_SIZE];
1147 for (h = 0; h < HASH_SIZE; h++) {
H A Dip6_tunnel.c72 #define HASH_SIZE 32 macro
76 (HASH_SIZE - 1))
86 struct ip6_tnl *tnls_r_l[HASH_SIZE];
1392 for (h = 0; h < HASH_SIZE; h++) {
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/archival/
H A Dgzip.c174 #define HASH_SIZE (unsigned)(1<<HASH_BITS) macro
175 #define HASH_MASK (HASH_SIZE-1)
177 /* HASH_SIZE and WSIZE must be powers of two */
562 for (n = 0; n < HASH_SIZE; n++) {
1845 memset(head, 0, HASH_SIZE * sizeof(*head));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/human68k/
H A Ddeflate.s115 HASH_SIZE equ 1<<HASH_BITS define
116 HASH_MASK equ HASH_SIZE-1
178 _head: ds.w HASH_SIZE ; array of unsigned short
877 move.w #HASH_SIZE-1,d0
1008 CAL_SH HASH_SIZE
1017 move.w #(HASH_SIZE/2)-1,d0 ; two shortwords per loop
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dnamespace.c41 #define HASH_SIZE (1UL << HASH_SHIFT) macro
73 return tmp & (HASH_SIZE - 1);
2388 printk("Mount-cache hash table entries: %lu\n", HASH_SIZE);
2390 for (u = 0; u < HASH_SIZE; u++)

Completed in 139 milliseconds