Lines Matching defs:value
32 // DWARF expressions describe how to compute a value or specify a location.
54 inline void StackPush(AddressType value)
56 stack_.push_front(value);
61 AddressType value = stack_.front();
63 return value;
71 inline void OpPush(T value)
73 StackPush(static_cast<AddressType>(value));
89 AddressType value = 0;
96 value = static_cast<AddressType>(u8);
102 value = static_cast<AddressType>(u16);
109 value = static_cast<AddressType>(u32);
118 value = static_cast<AddressType>(u64);
124 StackPush(static_cast<UnsignedType>(value));
153 AddressType value = StackAt(reg);
154 StackPush(value);
372 auto value = static_cast<SignedType>(memory_->ReadSleb128(exprPtr));
373 value += static_cast<SignedType>(regs[reg]);
374 stack_.push_front(value);
385 auto value = static_cast<SignedType>(memory_->ReadSleb128(exprPtr));
386 value += static_cast<SignedType>(regs[reg]);
387 stack_.push_front(value);