BITS              305 third_party/harfbuzz-ng/src/hb-set-private.hh 	for (unsigned int j = 0; j < BITS; j++)
BITS              307 third_party/harfbuzz-ng/src/hb-set-private.hh 	    return i * BITS + j;
BITS              314 third_party/harfbuzz-ng/src/hb-set-private.hh 	for (unsigned int j = BITS; j; j--)
BITS              316 third_party/harfbuzz-ng/src/hb-set-private.hh 	    return (i - 1) * BITS + (j - 1);
BITS              323 third_party/harfbuzz-ng/src/hb-set-private.hh   static const unsigned int BITS = (1 << SHIFT);
BITS              324 third_party/harfbuzz-ng/src/hb-set-private.hh   static const unsigned int MASK = BITS - 1;
BITS              325 third_party/harfbuzz-ng/src/hb-set-private.hh   static const unsigned int ELTS = (MAX_G + 1 + (BITS - 1)) / BITS;
BITS              334 third_party/harfbuzz-ng/src/hb-set-private.hh   ASSERT_STATIC (sizeof (elt_t) * 8 == BITS);
BITS               17 third_party/libwebp/utils/bit_reader.c #define MK(X) (((range_t)(X) << (BITS)) | (MASK))
BITS               77 third_party/libwebp/utils/bit_reader.c     br->value_ |= (bit_t)(*br->buf_++) << ((BITS) - 8 - br->bits_);
BITS               93 third_party/libwebp/utils/bit_reader.h #if (BITS > 32)
BITS               96 third_party/libwebp/utils/bit_reader.h #elif (BITS == 32)
BITS               99 third_party/libwebp/utils/bit_reader.h #elif (BITS == 24)
BITS              102 third_party/libwebp/utils/bit_reader.h #elif (BITS == 16)
BITS              112 third_party/libwebp/utils/bit_reader.h #define MASK ((((bit_t)1) << (BITS)) - 1)
BITS              158 third_party/libwebp/utils/bit_reader.h     br->buf_ += (BITS) >> 3;
BITS              160 third_party/libwebp/utils/bit_reader.h #if (BITS > 32)
BITS              178 third_party/libwebp/utils/bit_reader.h     bits >>= 64 - BITS;
BITS              179 third_party/libwebp/utils/bit_reader.h #elif (BITS >= 24)
BITS              192 third_party/libwebp/utils/bit_reader.h     bits >>= (32 - BITS);
BITS              193 third_party/libwebp/utils/bit_reader.h #elif (BITS == 16)
BITS              201 third_party/libwebp/utils/bit_reader.h     if (BITS != 8 * sizeof(bit_t)) bits >>= (8 * sizeof(bit_t) - BITS);
BITS              206 third_party/libwebp/utils/bit_reader.h     br->value_ = bits | (br->value_ << (BITS));
BITS              208 third_party/libwebp/utils/bit_reader.h     br->bits_ += (BITS);
BITS              247 third_party/libwebp/utils/bit_reader.h   const bit_t idx = br->range_ >> (BITS);
BITS              265 third_party/libwebp/utils/bit_reader.h       (range_t)((uint32_t)(br->range_ >> (BITS)) * prob) << ((BITS) - 8);
BITS              267 third_party/libwebp/utils/bit_reader.h   if (br->range_ <= (((range_t)0x7e << (BITS)) | (MASK))) {
BITS               84 third_party/tcmalloc/chromium/src/page_heap.h template <int BITS> class MapSelector {
BITS               86 third_party/tcmalloc/chromium/src/page_heap.h   typedef TCMalloc_PageMap3<BITS-kPageShift> Type;
BITS               87 third_party/tcmalloc/chromium/src/page_heap.h   typedef PackedCache<BITS-kPageShift, uint64_t> CacheType;
BITS               68 third_party/tcmalloc/chromium/src/pagemap.h template <int BITS>
BITS               71 third_party/tcmalloc/chromium/src/pagemap.h   static const int LENGTH = 1 << BITS;
BITS               79 third_party/tcmalloc/chromium/src/pagemap.h     array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
BITS               80 third_party/tcmalloc/chromium/src/pagemap.h     memset(array_, 0, sizeof(void*) << BITS);
BITS               98 third_party/tcmalloc/chromium/src/pagemap.h     if ((k >> BITS) > 0) {
BITS              115 third_party/tcmalloc/chromium/src/pagemap.h     while (k < (1 << BITS)) {
BITS              130 third_party/tcmalloc/chromium/src/pagemap.h template <int BITS>
BITS              134 third_party/tcmalloc/chromium/src/pagemap.h   static const int LENGTH = 1 << BITS;
BITS              144 third_party/tcmalloc/chromium/src/pagemap.h   char committed_[sizeof(void*) << (BITS - kPageShift - 3)];
BITS              169 third_party/tcmalloc/chromium/src/pagemap.h     size_t size = sizeof(*array_) << BITS;
BITS              294 third_party/tcmalloc/chromium/src/pagemap.h     if ((k >> BITS) > 0) {
BITS              310 third_party/tcmalloc/chromium/src/pagemap.h     while (k < (1 << BITS)) {
BITS              321 third_party/tcmalloc/chromium/src/pagemap.h template <int BITS>
BITS              328 third_party/tcmalloc/chromium/src/pagemap.h   static const int LEAF_BITS = BITS - ROOT_BITS;
BITS              350 third_party/tcmalloc/chromium/src/pagemap.h     if ((k >> BITS) > 0 || root_[i1] == NULL) {
BITS              357 third_party/tcmalloc/chromium/src/pagemap.h     ASSERT(k >> BITS == 0);
BITS              387 third_party/tcmalloc/chromium/src/pagemap.h     Ensure(0, 1 << BITS);
BITS              391 third_party/tcmalloc/chromium/src/pagemap.h     while (k < (1 << BITS)) {
BITS              410 third_party/tcmalloc/chromium/src/pagemap.h template <int BITS>
BITS              414 third_party/tcmalloc/chromium/src/pagemap.h   static const int INTERIOR_BITS = (BITS + 2) / 3; // Round-up
BITS              418 third_party/tcmalloc/chromium/src/pagemap.h   static const int LEAF_BITS = BITS - 2*INTERIOR_BITS;
BITS              454 third_party/tcmalloc/chromium/src/pagemap.h     if ((k >> BITS) > 0 ||
BITS              462 third_party/tcmalloc/chromium/src/pagemap.h     ASSERT(k >> BITS == 0);
BITS              503 third_party/tcmalloc/chromium/src/pagemap.h     while (k < (Number(1) << BITS)) {
BITS               82 third_party/tcmalloc/vendor/src/page_heap.h template <int BITS> class MapSelector {
BITS               84 third_party/tcmalloc/vendor/src/page_heap.h   typedef TCMalloc_PageMap3<BITS-kPageShift> Type;
BITS               85 third_party/tcmalloc/vendor/src/page_heap.h   typedef PackedCache<BITS-kPageShift, uint64_t> CacheType;
BITS               62 third_party/tcmalloc/vendor/src/pagemap.h template <int BITS>
BITS               65 third_party/tcmalloc/vendor/src/pagemap.h   static const int LENGTH = 1 << BITS;
BITS               73 third_party/tcmalloc/vendor/src/pagemap.h     array_ = reinterpret_cast<void**>((*allocator)(sizeof(void*) << BITS));
BITS               74 third_party/tcmalloc/vendor/src/pagemap.h     memset(array_, 0, sizeof(void*) << BITS);
BITS               92 third_party/tcmalloc/vendor/src/pagemap.h     if ((k >> BITS) > 0) {
BITS              109 third_party/tcmalloc/vendor/src/pagemap.h     while (k < (1 << BITS)) {
BITS              118 third_party/tcmalloc/vendor/src/pagemap.h template <int BITS>
BITS              125 third_party/tcmalloc/vendor/src/pagemap.h   static const int LEAF_BITS = BITS - ROOT_BITS;
BITS              147 third_party/tcmalloc/vendor/src/pagemap.h     if ((k >> BITS) > 0 || root_[i1] == NULL) {
BITS              154 third_party/tcmalloc/vendor/src/pagemap.h     ASSERT(k >> BITS == 0);
BITS              184 third_party/tcmalloc/vendor/src/pagemap.h     Ensure(0, 1 << BITS);
BITS              188 third_party/tcmalloc/vendor/src/pagemap.h     while (k < (1 << BITS)) {
BITS              207 third_party/tcmalloc/vendor/src/pagemap.h template <int BITS>
BITS              211 third_party/tcmalloc/vendor/src/pagemap.h   static const int INTERIOR_BITS = (BITS + 2) / 3; // Round-up
BITS              215 third_party/tcmalloc/vendor/src/pagemap.h   static const int LEAF_BITS = BITS - 2*INTERIOR_BITS;
BITS              251 third_party/tcmalloc/vendor/src/pagemap.h     if ((k >> BITS) > 0 ||
BITS              259 third_party/tcmalloc/vendor/src/pagemap.h     ASSERT(k >> BITS == 0);
BITS              300 third_party/tcmalloc/vendor/src/pagemap.h     while (k < (Number(1) << BITS)) {
BITS              291 third_party/zlib/infback.c             state->last = BITS(1);
BITS              293 third_party/zlib/infback.c             switch (BITS(2)) {
BITS              352 third_party/zlib/infback.c             state->nlen = BITS(5) + 257;
BITS              354 third_party/zlib/infback.c             state->ndist = BITS(5) + 1;
BITS              356 third_party/zlib/infback.c             state->ncode = BITS(4) + 4;
BITS              371 third_party/zlib/infback.c                 state->lens[order[state->have++]] = (unsigned short)BITS(3);
BITS              392 third_party/zlib/infback.c                     here = state->lencode[BITS(state->lenbits)];
BITS              411 third_party/zlib/infback.c                         copy = 3 + BITS(2);
BITS              418 third_party/zlib/infback.c                         copy = 3 + BITS(3);
BITS              425 third_party/zlib/infback.c                         copy = 11 + BITS(7);
BITS              486 third_party/zlib/infback.c                 here = state->lencode[BITS(state->lenbits)];
BITS              494 third_party/zlib/infback.c                             (BITS(last.bits + last.op) >> last.bits)];
BITS              533 third_party/zlib/infback.c                 state->length += BITS(state->extra);
BITS              540 third_party/zlib/infback.c                 here = state->distcode[BITS(state->distbits)];
BITS              548 third_party/zlib/infback.c                             (BITS(last.bits + last.op) >> last.bits)];
BITS              566 third_party/zlib/infback.c                 state->offset += BITS(state->extra);
BITS              645 third_party/zlib/inflate.c                 ((BITS(8) << 8) + (hold >> 8)) % 31) {
BITS              650 third_party/zlib/inflate.c             if (BITS(4) != Z_DEFLATED) {
BITS              656 third_party/zlib/inflate.c             len = BITS(4) + 8;
BITS              819 third_party/zlib/inflate.c             state->last = BITS(1);
BITS              821 third_party/zlib/inflate.c             switch (BITS(2)) {
BITS              883 third_party/zlib/inflate.c             state->nlen = BITS(5) + 257;
BITS              885 third_party/zlib/inflate.c             state->ndist = BITS(5) + 1;
BITS              887 third_party/zlib/inflate.c             state->ncode = BITS(4) + 4;
BITS              902 third_party/zlib/inflate.c                 state->lens[order[state->have++]] = (unsigned short)BITS(3);
BITS              923 third_party/zlib/inflate.c                     here = state->lencode[BITS(state->lenbits)];
BITS              942 third_party/zlib/inflate.c                         copy = 3 + BITS(2);
BITS              949 third_party/zlib/inflate.c                         copy = 3 + BITS(3);
BITS              956 third_party/zlib/inflate.c                         copy = 11 + BITS(7);
BITS             1017 third_party/zlib/inflate.c                 here = state->lencode[BITS(state->lenbits)];
BITS             1025 third_party/zlib/inflate.c                             (BITS(last.bits + last.op) >> last.bits)];
BITS             1058 third_party/zlib/inflate.c                 state->length += BITS(state->extra);
BITS             1067 third_party/zlib/inflate.c                 here = state->distcode[BITS(state->distbits)];
BITS             1075 third_party/zlib/inflate.c                             (BITS(last.bits + last.op) >> last.bits)];
BITS             1095 third_party/zlib/inflate.c                 state->offset += BITS(state->extra);