Lines Matching defs:value
111 * maps typedef identifiers and enum value names to a number of such
1612 * for the associated variable value(s).
1730 * in the format specifier + value(s).
1751 __u64 *value)
1765 /* Bitfield value retrieval is done in two steps; first relevant bytes are
1782 *value = (num << left_shift_bits) >> right_shift_bits;
2013 /* format of output here is [linkage] [type] [varname] = (type)value,
2151 __s64 *value)
2162 *value = (__s64)val;
2168 *value = *(__s64 *)data;
2171 *value = is_signed ? (__s64)*(__s32 *)data : *(__u32 *)data;
2174 *value = is_signed ? *(__s16 *)data : *(__u16 *)data;
2177 *value = is_signed ? *(__s8 *)data : *(__u8 *)data;
2191 __s64 value;
2194 err = btf_dump_get_enum_value(d, t, data, id, &value);
2203 if (value != e->val)
2209 btf_dump_type_values(d, is_signed ? "%d" : "%u", value);
2214 if (value != btf_enum64_value(e))
2221 (unsigned long long)value);
2264 * negative error value.
2315 __s64 value;
2326 * we are concerned with determining zero value at the array member
2404 err = btf_dump_get_enum_value(d, t, data, id, &value);
2407 if (value == 0)