Lines Matching refs:value
138 void WriteSLeb128(int32_t value);
139 void WriteULeb128(uint32_t value);
141 void WriteByte(byte value) { eh_frame_buffer_.push_back(value); }
148 void WriteInt16(uint16_t value) {
149 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
151 void WriteInt32(uint32_t value) {
152 WriteBytes(reinterpret_cast<const byte*>(&value), sizeof(value));
154 void PatchInt32(int base_offset, uint32_t value) {
162 value);