Searched defs:mask_ (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/mojo/public/bindings/lib/
H A Darray_internal.h76 uint8_t mask_; member in class:mojo::internal::ArrayDataTraits::BitRef
/external/marisa-trie/lib/marisa/
H A Dintvector.h39 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/
H A Dintvector.h39 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
/external/chromium/net/disk_cache/
H A Ddisk_cache_test_base.h60 mask_ = mask;
127 uint32 mask_; member in class:DiskCacheTestWithCache
H A Dbackend_impl.h348 uint32 mask_; // Binary mask to map a hash to the hash table. member in class:disk_cache::BackendImpl
/external/chromium_org/net/disk_cache/
H A Ddisk_cache_test_base.h78 mask_ = mask;
154 uint32 mask_; member in class:DiskCacheTestWithCache
H A Dbackend_impl.h361 uint32 mask_; // Binary mask to map a hash to the hash table. member in class:disk_cache::BackendImpl
/external/chromium_org/cc/trees/
H A Dlayer_tree_host_unittest_occlusion.cc60 mask_(TestLayer::Create()) {
112 scoped_refptr<TestLayer> mask_; member in class:cc::__anon4264::LayerTreeHostOcclusionTest
232 child_->SetMaskLayer(mask_.get());
266 child_->SetMaskLayer(mask_.get());
/external/chromium_org/chromeos/network/onc/
H A Donc_utils.cc256 : mask_(mask) {
266 return scoped_ptr<base::Value>(new base::StringValue(mask_));
274 std::string mask_; member in class:chromeos::onc::__anon7583::OncMaskValues
/external/chromium_org/sandbox/win/src/sidestep/
H A Dmini_disassembler_types.h174 unsigned char mask_; member in struct:sidestep::OpcodeTable
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dmini_disassembler_types.h213 unsigned char mask_; member in struct:sidestep::OpcodeTable
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dmini_disassembler_types.h213 unsigned char mask_; member in struct:sidestep::OpcodeTable
/external/chromium_org/tools/memory_watcher/
H A Dmini_disassembler_types.h176 unsigned char mask_; member in struct:sidestep::OpcodeTable
/external/chromium_org/tools/traceline/traceline/sidestep/
H A Dmini_disassembler_types.h174 unsigned char mask_; member in struct:sidestep::OpcodeTable
/external/chromium_org/ui/gfx/image/
H A Dimage_skia_operations.cc279 mask_(mask) {
288 ImageSkiaRep mask_rep = mask_.GetRepresentation(scale);
291 mask_rep = mask_.GetRepresentation(1.0f);
302 const ImageSkia mask_; member in class:gfx::__anon15214::ButtonImageSource
/external/chromium/net/tools/flip_server/
H A Depoll_server.h824 fd_(fd), mask_(mask), function_(function) {}
828 if (mask_ != 0) {
829 (*os) << "\tmask: " << EventMaskToString(mask_);
833 int mask_; member in class:net::EpollServer::EventRecorder::FDMaskOutput
/external/chromium_org/net/tools/epoll_server/
H A Depoll_server.h814 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
/external/v8/src/
H A Dmark-compact.h173 : 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...]
H A Dspaces.h129 : 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
/external/chromium_org/v8/src/
H A Dmark-compact.h173 : 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...]
H A Dspaces.h128 : 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
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh317 inline void set_mask (hb_mask_t mask_) { mask = mask_; } argument
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsubgpos-private.hh312 inline void set_mask (hb_mask_t mask_) { mask = mask_; } argument
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.c43 #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_(
[all...]

Completed in 690 milliseconds