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

  /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...]
backend_impl.h 348 uint32 mask_; // Binary mask to map a hash to the hash table. member in class:disk_cache::BackendImpl
  /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...]
jsregexp.h 556 mask_(0),
561 mask_(0),
585 uint32_t mask() { return mask_; }
594 uint32_t mask_;
    [all...]
jsregexp.cc     [all...]
  /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...]
  /ndk/sources/cxx-stl/llvm-libc++/src/
regex.cpp 204 ctype_base::mask mask_; member in struct:__anon22055::classnames
257 r = i->mask_;
  /external/harfbuzz_ng/src/
hb-ot-layout-gsubgpos-private.hh 312 inline void set_mask (hb_mask_t mask_) { mask = mask_; }
    [all...]

Completed in 635 milliseconds