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

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-cache-private.hh 35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
50 if ((v >> value_bits) != (key >> cache_bits))
52 *value = v & ((1<<value_bits)-1);
58 if (unlikely ((key >> key_bits) || (value >> value_bits)))
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value;
  /external/harfbuzz_ng/src/
hb-cache-private.hh 35 template <unsigned int key_bits, unsigned int value_bits, unsigned int cache_bits>
39 ASSERT_STATIC (key_bits + value_bits - cache_bits < 8 * sizeof (unsigned int));
50 if ((v >> value_bits) != (key >> cache_bits))
52 *value = v & ((1<<value_bits)-1);
58 if (unlikely ((key >> key_bits) || (value >> value_bits)))
61 unsigned int v = ((key>>cache_bits)<<value_bits) | value;
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV1.h 52 uint64_t* value_bits = NULL,
AppleObjCRuntimeV2.cpp     [all...]
  /external/lldb/source/DataFormatters/
Cocoa.cpp 518 uint64_t info_bits=0,value_bits = 0; local
519 if (descriptor->GetTaggedPointerInfo(&info_bits,&value_bits))
521 date_value_bits = ((value_bits << 8) | (info_bits << 4));
  /external/lldb/include/lldb/Target/
ObjCLanguageRuntime.h 202 uint64_t* value_bits = NULL,

Completed in 165 milliseconds