HomeSort by relevance Sort by last modified time
    Searched refs:mask_ (Results 1 - 25 of 49) sorted by null

1 2

  /art/runtime/base/
bounded_fifo.h 53 data_[back_index_++ & mask_] = value;
58 return data_[(back_index_ - size_) & mask_];
67 static const size_t mask_ = MaxSize - 1; member in class:art::BoundedFifoPowerOfTwo
  /external/marisa-trie/lib/marisa/
intvector.h 39 units_[unit_id] &= ~(mask_ << unit_offset);
40 units_[unit_id] |= (value & mask_) << unit_offset;
42 units_[unit_id + 1] &= ~(mask_ >> (32 - unit_offset));
43 units_[unit_id + 1] |= (value & mask_) >> (32 - unit_offset);
53 return (units_[unit_id] >> unit_offset) & mask_;
56 | (units_[unit_id + 1] << (32 - unit_offset))) & mask_;
69 return mask_;
79 + sizeof(mask_) + sizeof(size_);
88 UInt32 mask_; member in class:marisa::IntVector
intvector.cc 6 : units_(), num_bits_per_int_(0), mask_(0), size_(0) {}
36 mask_ = ~0U;
38 mask_ = (1U << num_bits_per_int) - 1;
61 mapper.map(&temp.mask_);
92 reader.read(&temp.mask_);
122 writer.write(mask_);
134 Swap(&mask_, &rhs->mask_);
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
intvector.h 39 units_[unit_id] &= ~(mask_ << unit_offset);
40 units_[unit_id] |= (value & mask_) << unit_offset;
42 units_[unit_id + 1] &= ~(mask_ >> (32 - unit_offset));
43 units_[unit_id + 1] |= (value & mask_) >> (32 - unit_offset);
53 return (units_[unit_id] >> unit_offset) & mask_;
56 | (units_[unit_id + 1] << (32 - unit_offset))) & mask_;
69 return mask_;
79 + sizeof(mask_) + sizeof(size_);
88 UInt32 mask_; member in class:marisa_alpha::IntVector
intvector.cc 6 : units_(), num_bits_per_int_(0), mask_(0), size_(0) {}
36 mask_ = ~0U;
38 mask_ = (1U << num_bits_per_int) - 1;
61 mapper.map(&temp.mask_);
92 reader.read(&temp.mask_);
122 writer.write(mask_);
134 Swap(&mask_, &rhs->mask_);
  /sdk/emulator/qtools/
hash_table.h 33 int mask_; member in class:HashTable
51 mask_ = pow2 - 1;
100 int pos = HashFunction(key) & mask_;
129 int pos = HashFunction(key) & mask_;
153 int pos = HashFunction(key) & mask_;
  /external/chromium/net/disk_cache/
disk_cache_test_base.h 60 mask_ = mask;
127 uint32 mask_; member in class:DiskCacheTestWithCache
disk_cache_test_base.cc 22 mask_(0),
38 if (mask_ || new_eviction_)
267 if (mask_)
268 cache_impl_ = new disk_cache::BackendImpl(path, mask_, thread, NULL);
backend_impl.cc 344 mask_(0),
370 mask_(mask),
706 Addr entry_address(data_->table[hash & mask_]);
719 } else if (data_->table[hash & mask_]) {
781 data_->table[hash & mask_] = entry_address.value();
906 if (data_->table[hash & mask_])
909 data_->table[hash & mask_] = address.value();
936 data_->table[hash & mask_] = child;
    [all...]
  /external/v8/src/
mark-compact.h 173 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
179 mask_ = RoundDownToPowerOf2(static_cast<int>(obj_high - obj_low)) - 1;
184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
205 top_ = ((top_ + 1) & mask_);
215 top_ = ((top_ + 1) & mask_);
221 top_ = ((top_ - 1) & mask_);
232 bottom_ = ((bottom_ - 1) & mask_);
240 int mask() { return mask_; }
245 // array_[(top - 1) & mask_] is the top element in the deque. The Deque is
250 int mask_; member in class:v8::internal::MarkingDeque
    [all...]
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.h 78 mask_ = mask;
154 uint32 mask_; member in class:DiskCacheTestWithCache
disk_cache_test_base.cc 56 mask_(0),
92 EXPECT_TRUE(CheckCacheIntegrity(cache_path_, new_eviction_, mask_));
237 EXPECT_TRUE(CheckCacheIntegrity(cache_path_, new_eviction_, mask_));
292 if (mask_)
293 cache_impl_ = new disk_cache::BackendImpl(cache_path_, mask_, runner, NULL);
backend_impl.cc 148 mask_(0),
174 mask_(mask),
547 Addr entry_address(data_->table[hash & mask_]);
560 } else if (data_->table[hash & mask_]) {
622 data_->table[hash & mask_] = entry_address.value();
757 if (data_->table[hash & mask_])
760 data_->table[hash & mask_] = address.value();
788 data_->table[hash & mask_] = child;
812 uint32 i = entry->GetHash() & mask_;
    [all...]
  /external/chromium_org/v8/src/
mark-compact.h 173 : array_(NULL), top_(0), bottom_(0), mask_(0), overflowed_(false) { }
179 mask_ = RoundDownToPowerOf2(static_cast<int>(obj_high - obj_low)) - 1;
184 inline bool IsFull() { return ((top_ + 1) & mask_) == bottom_; }
205 top_ = ((top_ + 1) & mask_);
215 top_ = ((top_ + 1) & mask_);
221 top_ = ((top_ - 1) & mask_);
232 bottom_ = ((bottom_ - 1) & mask_);
240 int mask() { return mask_; }
245 // array_[(top - 1) & mask_] is the top element in the deque. The Deque is
250 int mask_; member in class:v8::internal::MarkingDeque
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c 43 #define mask_(BitVector) *(BitVector-1) macro
530 oldmask = mask_(oldaddr);
539 mask_(newaddr) = newmask;
596 *(Z+size_(Z)-1) &= mask_(Z);
605 N_word maskX = mask_(X);
606 N_word maskY = mask_(Y);
646 N_word mask = mask_(addr);
659 N_word mask = mask_(addr);
694 *(addr+size-1) &= mask_(addr);
710 /* mask = mask_(Y); *
    [all...]
  /external/chromium_org/net/disk_cache/v3/
backend_worker.cc 112 mask_(0),
237 // Reset the mask_ if it was not given by the user.
239 mask_ = 0;
439 if (!mask_)
440 mask_ = data_->header.table_len - 1;
backend_impl_v3.cc 87 mask_(0),
113 mask_(mask),
227 data_->table[hash & mask_] = child;
561 Addr entry_address(data_->table[hash & mask_]);
574 } else if (data_->table[hash & mask_]) {
636 data_->table[hash & mask_] = entry_address.value();
920 // Reset the mask_ if it was not given by the user.
922 mask_ = 0;
    [all...]
  /external/chromium_org/sandbox/win/src/sidestep/
mini_disassembler_types.h 174 unsigned char mask_; member in struct:sidestep::OpcodeTable
mini_disassembler.cpp 124 current_byte = current_byte & table.mask_; // Mask out the bits we will use
176 if (table.mask_ != 0xff) {
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
mini_disassembler_types.h 213 unsigned char mask_; member in struct:sidestep::OpcodeTable
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
mini_disassembler_types.h 213 unsigned char mask_; member in struct:sidestep::OpcodeTable
  /external/chromium_org/tools/memory_watcher/
mini_disassembler_types.h 176 unsigned char mask_; member in struct:sidestep::OpcodeTable
  /external/chromium_org/tools/traceline/traceline/sidestep/
mini_disassembler_types.h 174 unsigned char mask_; member in struct:sidestep::OpcodeTable
  /external/chromium/net/tools/flip_server/
epoll_server.h 824 fd_(fd), mask_(mask), function_(function) {}
833 int mask_; member in class:net::EpollServer::EventRecorder::FDMaskOutput
    [all...]
  /external/chromium_org/net/tools/flip_server/
epoll_server.h 814 fd_(fd), mask_(mask), function_(function) {}
818 if (mask_ != 0) {
819 (*os) << "\tmask: " << EventMaskToString(mask_);
823 int mask_; member in class:net::EpollServer::EventRecorder::FDMaskOutput
    [all...]

Completed in 1283 milliseconds

1 2