Searched refs:mask_ (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
H A D | location_mask.h | 28 explicit LocationMask(ArenaAllocator *allocator) : mask_(allocator->Adapter()), usage_(allocator->Adapter()) {} in LocationMask() 37 mask_.resize(mask.size()); in Init() 49 mask_.resize(size, false); in Resize() 55 ASSERT(position < mask_.size()); in Set() 56 mask_[position] = true; in Set() 62 ASSERT(position < mask_.size()); 63 mask_[position] = false; 68 ASSERT(position < mask_.size()); 69 return mask_[position]; 85 return mask_; [all...] |
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
H A D | location_mask.h | 25 explicit LocationMask(ArenaAllocator *allocator) : mask_(allocator->Adapter()), usage_(allocator->Adapter()) {} in LocationMask() 34 mask_.resize(mask.size()); in Init() 46 mask_.resize(size, false); in Resize() 52 ASSERT(position < mask_.size()); in Set() 53 mask_[position] = true; in Set() 59 ASSERT(position < mask_.size()); 60 mask_[position] = false; 65 ASSERT(position < mask_.size()); 66 return mask_[position]; 82 return mask_; [all...] |
/arkcompiler/runtime_core/static_core/verification/util/ |
H A D | flags.h | 32 ConstBit(UInt bitMask, const UInt &givenFlags) : mask_ {bitMask}, flags_ {givenFlags} {}; in ConstBit() 42 return (flags_ & mask_) != 0; in operator bool() 47 const UInt mask_; member in ark::verifier::FlagsForEnum::ConstBit 63 properFlags |= ConstBit::mask_; in operator =() 65 properFlags &= ~ConstBit::mask_; in operator =()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
H A D | target.h | 44 explicit RegList(size_t mask) : mask_(mask) in RegList() 59 return mask_; in operator size_t() 74 return (mask_ & (size_t(1) << i)) != 0; in Has() 82 mask_ |= size_t(1) << i; in Add() 91 mask_ &= ~(size_t(1) << i); in Remove() 98 size_t i = __builtin_ctzll(mask_); in Pop() 105 return mask_; in GetMask() 109 size_t mask_ {0};
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_vector.h | 44 BitReference(WordType *data, WordType mask) : data_(data), mask_(mask) in BitReference() 56 *data_ |= mask_; in operator =() 58 *data_ &= ~mask_; in operator =() 78 return (*data_ & mask_) != 0; in operator bool() 91 WordType mask_; member in panda::final
|
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_vector.h | 45 BitReference(WordType *data, WordType mask) : data_(data), mask_(mask) in BitReference() 57 *data_ |= mask_; in operator =() 59 *data_ &= ~mask_; in operator =() 79 return (*data_ & mask_) != 0; in operator bool() 92 WordType mask_; member in ark::final
|
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/ |
H A D | IrViewer.js | 69 this.mask_ = 0xffff; 79 this.mask_ = (this.mask_ & ~(1 << btn.inTypeId_)) | (btn.inTypeMask_ << btn.inTypeId_); 150 if (type === 0 && (n1.mask & this.mask_) !== 0 && this.selectPoint_.indexOf(id2) >= 0) { //选中前继 154 if (type === 1 && (n2.mask & this.mask_) !== 0 && this.selectPoint_.indexOf(id1) >= 0) { //选中后继 244 n.hide = (n.mask & this.mask_) === 0; 253 if ((this.mask_ & (1 << i) !== 0) && (n.mask & (1 << i) !== 0)) { //进入点也加进来
|
Completed in 6 milliseconds