Home | History | Annotate | Download | only in elff

Lines Matching refs:sign

143  * end is all zeroes or sign extension bits).

156 * they consist entirely of sign extension bits. Consider the 32-bit integer
157 * -2. The three high level bytes of the number are sign extension, thus LEB128
174 * sign - If true, the caller expects the LEB128 to contain a signed
178 void get_common(Dwarf_Value* value, bool sign) const {
182 value->type = sign ? DWARF_VALUE_S32 : DWARF_VALUE_U32;
194 * byte controls the sign. If 7-th bit of the last LEB128 byte is set,
215 if (sign) {
229 if (sign) {
266 const void* process(Dwarf_Value* value, bool sign) const {
267 get_common(value, sign);