Searched refs:int64Value (Results 1 – 8 of 8) sorted by relevance
212 for (int64_t int64Value : value.value.int64Values) { in checkValueRange() local213 if (int64Value < areaConfig->minInt64Value || in checkValueRange()214 int64Value > areaConfig->maxInt64Value) { in checkValueRange()215 return Error() << "int64Value: " << int64Value in checkValueRange()
24 long int64Value;
37 long int64Value;
40 * int64Value: 102445 * int64Value: 7576 int64_t int64Value;93 int64_t int64Value;
131 for (auto& int64Value : in.value.int64Values) { in aidlToProto() local132 out->add_int64_values(int64Value); in aidlToProto()
173 for (auto& int64Value : val.value.int64Values) { in toProto() local174 protoVal->add_int64_values(int64Value); in toProto()
152 return type == DrmMetricGroup::ValueType::INT64_TYPE && expected == actual.int64Value; in ValueEquals()