HomeSort by relevance Sort by last modified time
    Searched refs:NBBY (Results 1 - 4 of 4) sorted by null

  /external/grub/stage2/
defs.h 67 #define NBBY 8
fs.h 388 (((map)[(loc) / NBBY] >> ((loc) % NBBY)) & (0xff >> (NBBY - (fs)->fs_frag)))
  /external/openssl/apps/
s_apps.h 128 #define NBBY 8 /* number of bits in a byte */
137 #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask (power of 2!)*/
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmutils.h 422 #ifndef NBBY
423 #define NBBY 8
425 #define setbit(a, i) (((uint8 *)a)[(i)/NBBY] |= 1<<((i)%NBBY))
426 #define clrbit(a, i) (((uint8 *)a)[(i)/NBBY] &= ~(1<<((i)%NBBY)))
427 #define isset(a, i) (((const uint8 *)a)[(i)/NBBY] & (1<<((i)%NBBY)))
428 #define isclr(a, i) ((((const uint8 *)a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0
    [all...]

Completed in 212 milliseconds