Home
last modified time | relevance | path

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

/system/chre/platform/slpi/see/
Dsee_helper.cc589 auto *attrVal = static_cast<SeeAttrArg *>(*arg); in decodeSnsStdAttrValue() local
593 if (!attrVal->initialized) { in decodeSnsStdAttrValue()
594 attrVal->initialized = true; in decodeSnsStdAttrValue()
595 attrVal->fltMin = FLT_MAX; in decodeSnsStdAttrValue()
596 attrVal->fltMax = FLT_MIN; in decodeSnsStdAttrValue()
598 if (data->value.flt < attrVal->fltMin) { in decodeSnsStdAttrValue()
599 attrVal->fltMin = data->value.flt; in decodeSnsStdAttrValue()
601 if (data->value.flt > attrVal->fltMax) { in decodeSnsStdAttrValue()
602 attrVal->fltMax = data->value.flt; in decodeSnsStdAttrValue()
605 attrVal->int64 = data->value.sint; in decodeSnsStdAttrValue()
[all …]