Lines Matching defs:table
66 * struct udp_table - UDP table
68 * @hash: hash table, sockets are hashed on (local port)
69 * @hash2: hash table, sockets are hashed on (local port, local address)
71 * @log: log2(number of slots in hash table)
81 static inline struct udp_hslot *udp_hashslot(struct udp_table *table,
84 return &table->hash[udp_hashfn(net, num, table->mask)];
90 static inline struct udp_hslot *udp_hashslot2(struct udp_table *table,
93 return &table->hash2[hash & table->mask];