/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/chromium_org/mojo/public/bindings/lib/ |
array_internal.h | 76 uint8_t mask_; member in class:mojo::internal::ArrayDataTraits::BitRef
|
/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:__anon33121::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/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/cc/trees/ |
layer_tree_host_unittest_occlusion.cc | 60 mask_(TestLayer::Create()) { 112 scoped_refptr<TestLayer> mask_; member in class:cc::__anon3954::LayerTreeHostOcclusionTest 232 child_->SetMaskLayer(mask_.get()); 266 child_->SetMaskLayer(mask_.get());
|
/external/chromium_org/chromeos/network/onc/ |
onc_utils.cc | 256 : mask_(mask) { 266 return scoped_ptr<base::Value>(new base::StringValue(mask_)); 274 std::string mask_; member in class:chromeos::onc::__anon7273::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/epoll_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 | 279 mask_(mask) { 288 ImageSkiaRep mask_rep = mask_.GetRepresentation(scale); 291 mask_rep = mask_.GetRepresentation(1.0f); 302 const ImageSkia mask_; member in class:gfx::__anon14897::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 | 128 : cell_(cell), mask_(mask), data_only_(data_only) { } 131 inline CellType mask() { return mask_; } 135 return cell_ == other.cell_ && mask_ == other.mask_; 139 inline void Set() { *cell_ |= mask_; } 140 inline bool Get() { return (*cell_ & mask_) != 0; } 141 inline void Clear() { *cell_ &= ~mask_; } 146 CellType new_mask = mask_ << 1; 156 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...] |