Home
last modified time | relevance | path

Searched refs:NBBY (Results 1 – 3 of 3) sorted by relevance

/mOS-networking-stack/util/
H A Drss.c16 #define NBBY 8 /* number of bits per byte */ in BuildKeyCache() macro
97 uint8_t shift = (idx % NBBY); in BuildKeyCache()
101 bit = ((key[idx/NBBY] << shift) & 0x80) ? 1 : 0; in BuildKeyCache()
/mOS-networking-stack/core/src/
H A Dutil.c30 #ifndef NBBY in BuildKeyCache()
31 #define NBBY 8 /* number of bits per byte */ in BuildKeyCache() macro
51 uint8_t shift = (idx % NBBY); in BuildKeyCache()
55 bit = ((key[idx/NBBY] << shift) & 0x80) ? 1 : 0; in BuildKeyCache()
H A Dnetmap_module.c286 queue_range = sizeof(cpu_mask) * NBBY - __builtin_clzll(cpu_mask); in netmap_load_module_upper_half()