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

  /external/v8/src/
utils.h 216 // BitField is a help template for encoding and decode bitfield with
219 class BitField {
222 // bitfield without compiler warnings we have to compute 2^32 without
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocatorFixedVMPool.cpp 85 typedef uint64_t BitField;
94 COMPILE_ASSERT(entries <= (sizeof(BitField) * 8), AllocationTableLeaf_entries_fit_in_BitField);
114 BitField mask = ((1ull << count) - 1) << (alignment - count);
133 BitField mask = ((1ull << count) - 1) << entry;
169 BitField m_allocated;
240 typedef uint64_t BitField;
249 COMPILE_ASSERT(entries <= (sizeof(BitField) * 8), AllocationTableDirectory_entries_fit_in_BitField);
268 BitField bit = 1;
286 BitField allocated = m_full | m_hasSuballocation;
291 BitField mask = ((1ull << count) - 1) << (alignment - count)
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 107 BitField, // This is a bitfield l-value, use getBitfield*.
120 // BitField start bit and size
174 bool isBitField() const { return LVType == BitField; }
247 // bitfield lvalue
300 R.LVType = BitField;
  /external/chromium/chrome/browser/sync/syncable/
syncable.h 120 enum BitField {
281 inline void put(BitField field, bool value) {
313 inline bool ref(BitField field) const {
388 inline bool Get(BitField field) const {
500 bool Put(BitField field, bool value);
    [all...]
  /external/v8/src/arm/
constants-arm.h 549 inline int BitField(int hi, int lo) const {
567 static inline int BitField(Instr instr, int hi, int lo) {
590 return static_cast<Condition>(BitField(31, 28));
637 return static_cast<Opcode>(BitField(24, 21));
645 return static_cast<ShiftOp>(BitField(6, 5));
659 inline int PUField() const { return BitField(24, 23); }

Completed in 155 milliseconds