Home | History | Annotate | Download | only in Support

Lines Matching refs:Value

19 /// Utility function to get the size of the ULEB128-encoded value.
20 unsigned getULEB128Size(uint64_t Value) {
23 Value >>= 7;
25 } while (Value);
29 /// Utility function to get the size of the SLEB128-encoded value.
30 unsigned getSLEB128Size(int64_t Value) {
32 int Sign = Value >> (8 * sizeof(Value) - 1);
36 unsigned Byte = Value & 0x7f;
37 Value >>= 7;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;