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

  /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
  /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
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
regex.cpp 204 ctype_base::mask mask_; member in struct:__anon34923::classnames
257 r = i->mask_;
  /external/chromium/net/disk_cache/
disk_cache_test_base.h 60 mask_ = mask;
127 uint32 mask_; member in class:DiskCacheTestWithCache
backend_impl.h 348 uint32 mask_; // Binary mask to map a hash to the hash table. member in class:disk_cache::BackendImpl
  /external/chromium_org/cc/trees/
layer_tree_host_unittest_occlusion.cc 58 mask_(TestLayer::Create()) {
106 scoped_refptr<TestLayer> mask_; member in class:cc::__anon6576::LayerTreeHostOcclusionTest
226 child_->SetMaskLayer(mask_.get());
260 child_->SetMaskLayer(mask_.get());
layer_tree_host_unittest_context.cc 1153 scoped_refptr<ContentLayer> mask_ = ContentLayer::Create(&client_); variable
1340 scoped_refptr<ContentLayer> mask_; member in class:cc::__anon6573::LayerTreeHostContextTestDontUseLostResources
    [all...]
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.h 78 mask_ = mask;
154 uint32 mask_; member in class:DiskCacheTestWithCache
backend_impl.h 361 uint32 mask_; // Binary mask to map a hash to the hash table. member in class:disk_cache::BackendImpl
  /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_org/chromeos/network/onc/
onc_utils.cc 254 : mask_(mask) {
264 return scoped_ptr<base::Value>(new base::StringValue(mask_));
272 std::string mask_; member in class:chromeos::onc::__anon9745::OncMaskValues
  /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...]
  /external/chromium_org/sandbox/win/src/sidestep/
mini_disassembler_types.h 174 unsigned char mask_; member in struct:sidestep::OpcodeTable
  /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_org/ui/gfx/image/
image_skia_operations.cc 284 mask_(mask) {
293 ImageSkiaRep mask_rep = mask_.GetRepresentation(scale_factor);
296 mask_rep = mask_.GetRepresentation(ui::SCALE_FACTOR_100P);
307 const ImageSkia mask_; member in class:gfx::__anon16715::ButtonImageSource
  /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...]
spaces.h 129 : cell_(cell), mask_(mask), data_only_(data_only) { }
132 inline CellType mask() { return mask_; }
136 return cell_ == other.cell_ && mask_ == other.mask_;
140 inline void Set() { *cell_ |= mask_; }
141 inline bool Get() { return (*cell_ & mask_) != 0; }
142 inline void Clear() { *cell_ &= ~mask_; }
147 CellType new_mask = mask_ << 1;
157 CellType mask_; member in class:v8::internal::MarkBit
    [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...]
spaces.h 127 : cell_(cell), mask_(mask), data_only_(data_only) { }
130 inline CellType mask() { return mask_; }
134 return cell_ == other.cell_ && mask_ == other.mask_;
138 inline void Set() { *cell_ |= mask_; }
139 inline bool Get() { return (*cell_ & mask_) != 0; }
140 inline void Clear() { *cell_ &= ~mask_; }
145 CellType new_mask = mask_ << 1;
155 CellType mask_; member in class:v8::internal::MarkBit
    [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...]

Completed in 971 milliseconds