Lines Matching refs:value
69 void set(const T& value) {
70 base::WriteUnalignedValue(w_->AddressAt<T>(offset_), value);
125 void WriteULEB128(uintptr_t value) {
127 uint8_t byte = value & 0x7F;
128 value >>= 7;
129 if (value != 0) byte |= 0x80;
131 } while (value != 0);
134 void WriteSLEB128(intptr_t value) {
137 int8_t byte = value & 0x7F;
139 value >>= 7;
141 if ((value == 0 && !byte_sign) || (value == -1 && byte_sign)) {
650 // Processor identification value for x64 is 62 as defined in
667 // Processor identification value is 22 (EM_S390) as defined in the ABI:
744 ELFSymbol(const char* name, uintptr_t value, uintptr_t size, Binding binding,
747 value(value),
757 SerializedLayout(uint32_t name, uintptr_t value, uintptr_t size,
760 value(value),
767 uintptr_t value;
776 SerializedLayout(uint32_t name, uintptr_t value, uintptr_t size,
782 value(value),
789 uintptr_t value;
797 s->value = value;
806 uintptr_t value;
1623 // RBP for this function will be the value of RSP after pushing the RBP
1808 "Unsupported code alignment value");
1870 if (e->value != nullptr) delete static_cast<LineInfo*>(e->value);
1871 e->value = info;
1875 void* value = GetLineMap()->Remove(reinterpret_cast<void*>(addr),
1877 return static_cast<LineInfo*>(value);
1927 // returned iterator has the key in `first` and the value in `second`.