Lines Matching refs:Value
20 /// Utility function to encode a SLEB128 value.
21 void MCObjectWriter::EncodeSLEB128(int64_t Value, raw_ostream &OS) {
24 uint8_t Byte = Value & 0x7f;
26 Value >>= 7;
27 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
28 ((Value == -1) && ((Byte & 0x40) != 0))));
35 /// Utility function to encode a ULEB128 value.
36 void MCObjectWriter::EncodeULEB128(uint64_t Value, raw_ostream &OS) {
38 uint8_t Byte = Value & 0x7f;
39 Value >>= 7;
40 if (Value != 0)
43 } while (Value != 0);