Home
last modified time | relevance | path

Searched refs:base_value (Results 1 – 5 of 5) sorted by relevance

/external/devlib/devlib/utils/
Dmisc.py265 base_value = base[k]
267 base_type = type(base_value)
270 (base_value is not None) and (other_value is not None)):
271 … raise ValueError('Type mismatch for {} got {} ({}) and {} ({})'.format(k, base_value, base_type,
273 if isinstance(base_value, dict):
274 … merged[k] = _merge_two_dicts(base_value, other_value, list_duplicates, match_types, dict_type)
275 elif isinstance(base_value, list):
277 … merged[k] = _merge_two_lists(base_value, other_value, list_duplicates, dict_type)
281 elif isinstance(base_value, set):
282 merged[k] = norm(base_value.union(other_value), dict_type)
/external/libchrome/base/trace_event/
Dtrace_event_argument.cc291 for (const auto& base_value : *list_value) in SetBaseValueWithCopiedName()
292 AppendBaseValue(*base_value); in SetBaseValueWithCopiedName()
345 for (const auto& base_value : *list_value) in AppendBaseValue()
346 AppendBaseValue(*base_value); in AppendBaseValue()
/external/webp/src/enc/
Dpicture_csp_enc.c122 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { in LinearToGamma() argument
123 const int y = Interpolate(base_value << shift); // final uplifted value in LinearToGamma()
131 static WEBP_INLINE int LinearToGamma(uint32_t base_value, int shift) { in LinearToGamma() argument
132 return (int)(base_value << shift); in LinearToGamma()
/external/toolchain-utils/cros_utils/
Dtabulator.py320 base_value = len(_StripNone(baseline_values))
321 if cell.value == base_value:
327 tmp_cell.value = 1.0 + (float(cell.value - base_value) /
/external/mesa3d/src/compiler/spirv/
Dspirv_to_nir.c280 struct vtn_value *base_value, in _foreach_decoration_helper() argument
299 _foreach_decoration_helper(b, base_value, member, dec->group, in _foreach_decoration_helper()
302 cb(b, base_value, member, dec, data); in _foreach_decoration_helper()