Searched refs:HASHSZ (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-6.6/scripts/basic/ |
H A D | fixdep.c | 115 #define HASHSZ 256 macro 116 static struct item *config_hashtab[HASHSZ], *file_hashtab[HASHSZ]; 143 aux->next = hashtab[hash % HASHSZ]; in add_to_hashtable() 144 hashtab[hash % HASHSZ] = aux; in add_to_hashtable() 156 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { in in_hashtable()
|
/kernel/linux/linux-5.10/scripts/basic/ |
H A D | fixdep.c | 166 #define HASHSZ 256 macro 167 static struct item *hashtab[HASHSZ]; 186 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { in is_defined_config() 208 aux->next = hashtab[hash % HASHSZ]; in define_config() 209 hashtab[hash % HASHSZ] = aux; in define_config()
|
/kernel/linux/linux-5.10/tools/usb/usbip/libsrc/ |
H A D | names.c | 64 #define HASHSZ 16 macro 73 return num & (HASHSZ-1); in hashnum() 77 static struct vendor *vendors[HASHSZ] = { NULL, }; 78 static struct product *products[HASHSZ] = { NULL, }; 79 static struct class *classes[HASHSZ] = { NULL, }; 80 static struct subclass *subclasses[HASHSZ] = { NULL, }; 81 static struct protocol *protocols[HASHSZ] = { NULL, };
|
/kernel/linux/linux-6.6/tools/usb/usbip/libsrc/ |
H A D | names.c | 64 #define HASHSZ 16 macro 73 return num & (HASHSZ-1); in hashnum() 77 static struct vendor *vendors[HASHSZ] = { NULL, }; 78 static struct product *products[HASHSZ] = { NULL, }; 79 static struct class *classes[HASHSZ] = { NULL, }; 80 static struct subclass *subclasses[HASHSZ] = { NULL, }; 81 static struct protocol *protocols[HASHSZ] = { NULL, };
|
Completed in 4 milliseconds