Searched refs:CHAR_BIT (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/stdlib/
H A Dreallocarr.c53 #define SQRT_SIZE_MAX (((size_t)1) << (sizeof(size_t) * CHAR_BIT / 2))
/bionic/linker/
H A Dlinker_sleb128.h48 static const size_t size = CHAR_BIT * sizeof(value);
/bionic/tools/relocation_packer/src/
H A Dsleb128.cc50 static const size_t size = CHAR_BIT * sizeof(value);
98 static const size_t size = CHAR_BIT * sizeof(value);
/bionic/libc/include/
H A Dlimits.h58 #define CHAR_BIT 8 macro
/bionic/tools/versioner/current/
H A Dlimits.h58 #define CHAR_BIT 8 macro
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c216 ((p)->ncsalloc / CHAR_BIT * (p)->g->csetsize + \
623 # define BACKSL (1<<CHAR_BIT)
1245 p->ncsalloc += CHAR_BIT;
1247 assert(nc % CHAR_BIT == 0);
1248 nbytes = nc / CHAR_BIT * css;
1254 if (reallocarr(&p->g->setbits, nc / CHAR_BIT, css)) {
1260 p->g->sets[i].ptr = p->g->setbits + css*(i/CHAR_BIT);
1266 cs->ptr = p->g->setbits + css*((no)/CHAR_BIT);
1267 cs->mask = 1 << (unsigned int)((no) % CHAR_BIT);
1565 ncols = (g->ncsets+(CHAR_BIT
[all...]
H A Dregexec.c230 if (g->nstates <= (sopno)(CHAR_BIT*sizeof(states1)) && !(eflags&REG_LARGE))
/bionic/libc/tzcode/
H A Dprivate.h109 #include "limits.h" /* for CHAR_BIT et al. */
492 #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
/bionic/libc/dns/net/
H A Dgetaddrinfo.c1659 for (j = 0; j < CHAR_BIT; ++j) {
1660 if (x & (1 << (CHAR_BIT - 1))) {
1661 return i * CHAR_BIT + j;
1666 return sizeof(*a1) * CHAR_BIT;

Completed in 1180 milliseconds