Lines Matching defs:value
38 /* Returns zero if the value is omitted, the encoding is unknown or
74 /* Returns zero when value was read successfully, minus one otherwise. */
156 Dwarf_Addr value = 0;
167 value = read_2ubyte_unaligned_inc (cache, *p);
173 value = read_2sbyte_unaligned_inc (cache, *p);
177 if (unlikely (__libdw_cfi_read_address_inc (cache, p, 4, &value) != 0))
182 if (unlikely (__libdw_cfi_read_address_inc (cache, p, 4, &value) != 0))
184 value = (Dwarf_Sword) (Elf32_Sword) value; /* Sign-extend. */
189 if (unlikely (__libdw_cfi_read_address_inc (cache, p, 8, &value) != 0))
194 if (unlikely (__libdw_cfi_read_address_inc (cache, p, 0, &value) != 0))
199 get_uleb128 (value, *p, endp);
203 get_sleb128 (value, *p, endp);
211 *result += value;
232 #endif /* encoded-value.h */