Searched refs:eptr (Results 1 – 3 of 3) sorted by relevance
31 extern half __attribute__((overloadable)) frexp(half x, int *eptr) { in frexp() argument38 *eptr = 0; in frexp()46 *eptr = -12; in frexp()51 *eptr += (ix >> 10) - 14; in frexp()
1976 extern half __attribute__((overloadable)) frexp(half x, int *eptr);1978 extern half2 __attribute__((overloadable)) frexp(half2 v1, int2 *eptr) { in frexp() argument1983 eptr->x = e[0]; in frexp()1984 eptr->y = e[1]; in frexp()1988 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { in frexp() argument1994 eptr->x = e[0]; in frexp()1995 eptr->y = e[1]; in frexp()1996 eptr->z = e[2]; in frexp()2000 extern half4 __attribute__((overloadable)) frexp(half4 v1, int4 *eptr) { in frexp() argument2007 eptr->x = e[0]; in frexp()[all …]
114 auto eptr = timeSequence.upper_bound(time); in REQUIRES() local115 if (eptr == timeSequence.begin()) return BAD_VALUE; in REQUIRES()116 --eptr; in REQUIRES()117 if (eptr == timeSequence.end()) return BAD_VALUE; in REQUIRES()118 const T* vptr = std::get_if<T>(&eptr->second); in REQUIRES()188 auto eptr = timeSequence.lower_bound(time); in dump() local189 if (eptr == timeSequence.end()) { in dump()197 const time_string_t timestring = mediametrics::timeStringFromNs(eptr->first); in dump()203 << ") " << eptr->second; in dump()204 if (++eptr == timeSequence.end()) { in dump()