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

  /external/stressapptest/src/
findmask.c 27 * The program iterates over all possible bitmasks within the first NUM_BITS,
49 #define NUM_BITS 32
62 for (mask = num; mask < (1ULL << (NUM_BITS + 1)); mask += NUM_THREADS) {
  /external/libchrome/base/
atomicops_unittest.cc 82 #define NUM_BITS(T) (sizeof(T) * 8)
102 (NUM_BITS(AtomicType) - 2)) + 11;
125 (NUM_BITS(AtomicType) - 2)) + 11;
142 (NUM_BITS(AtomicType) - 1));
152 test_val = static_cast<uint64_t>(1) << (NUM_BITS(AtomicType) / 2);
  /frameworks/base/core/java/android/util/
StateSet.java 96 final int NUM_BITS = VIEW_STATE_IDS.length / 2;
97 VIEW_STATE_SETS = new int[1 << NUM_BITS][];
  /external/python/cpython2/Modules/_ctypes/
cfield.c 434 #define NUM_BITS(x) ((x) >> 16)
436 /* Doesn't work if NUM_BITS(size) == 0, but it never happens in SET() call. */
437 #define BIT_MASK(type, size) (((((type)1 << (NUM_BITS(size) - 1)) - 1) << 1) + 1)
443 if (NUM_BITS(size)) { \
444 v <<= (sizeof(v)*8 - LOW_BIT(size) - NUM_BITS(size)); \
445 v >>= (sizeof(v)*8 - NUM_BITS(size)); \
450 (NUM_BITS(size) ? \
    [all...]
  /external/python/cpython3/Modules/_ctypes/
cfield.c 424 #define NUM_BITS(x) ((x) >> 16)
426 /* Doesn't work if NUM_BITS(size) == 0, but it never happens in SET() call. */
427 #define BIT_MASK(type, size) (((((type)1 << (NUM_BITS(size) - 1)) - 1) << 1) + 1)
433 if (NUM_BITS(size)) { \
434 v <<= (sizeof(v)*8 - LOW_BIT(size) - NUM_BITS(size)); \
435 v >>= (sizeof(v)*8 - NUM_BITS(size)); \
440 (NUM_BITS(size) ? \
    [all...]

Completed in 418 milliseconds