Lines Matching refs:attrVal
590 auto *attrVal = static_cast<SeeAttrArg *>(*arg); in decodeSnsStdAttrValue() local
594 if (!attrVal->initialized) { in decodeSnsStdAttrValue()
595 attrVal->initialized = true; in decodeSnsStdAttrValue()
596 attrVal->fltMin = FLT_MAX; in decodeSnsStdAttrValue()
597 attrVal->fltMax = FLT_MIN; in decodeSnsStdAttrValue()
599 if (data->value.flt < attrVal->fltMin) { in decodeSnsStdAttrValue()
600 attrVal->fltMin = data->value.flt; in decodeSnsStdAttrValue()
602 if (data->value.flt > attrVal->fltMax) { in decodeSnsStdAttrValue()
603 attrVal->fltMax = data->value.flt; in decodeSnsStdAttrValue()
606 attrVal->int64 = data->value.sint; in decodeSnsStdAttrValue()
608 attrVal->boolVal = data->value.boolean; in decodeSnsStdAttrValue()
610 strlcpy(attrVal->strVal, static_cast<const char *>(data->strData.buf), in decodeSnsStdAttrValue()
611 sizeof(attrVal->strVal)); in decodeSnsStdAttrValue()