Home
last modified time | relevance | path

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

/system/core/liblog/
Dlog_time.cpp99 unsigned long mul = NS_PER_SEC; in strptime() local
104 while (isdigit(*ret) && num && (mul > 1)) { in strptime()
106 mul /= 10; in strptime()
107 tv_nsec = tv_nsec + (*ret - '0') * mul; in strptime()
/system/core/libpixelflinger/arch-arm64/
Dt32cb16blend.S70 mul w16, w7, w16
81 mul w6, w7, w17
92 mul w16, w7, w17
106 mul w16, w7, w16
118 mul w6, w7, w6
129 mul w16, w7, w16
/system/core/storaged/tests/
Dstoraged_test.cpp184 struct disk_perf disk_perf_multiply(struct disk_perf perf, double mul) { in disk_perf_multiply() argument
186 retval.read_perf = (double)perf.read_perf * mul; in disk_perf_multiply()
187 retval.read_ios = (double)perf.read_ios * mul; in disk_perf_multiply()
188 retval.write_perf = (double)perf.write_perf * mul; in disk_perf_multiply()
189 retval.write_ios = (double)perf.write_ios * mul; in disk_perf_multiply()
190 retval.queue = (double)perf.queue * mul; in disk_perf_multiply()
/system/teeui/libteeui/include/teeui/
Dutils.h266 template <typename T1, typename T2, typename Numeric> using mul = BinOp<T1, T2, Numeric, Mul>;
290 template <typename T> constexpr mul<BinOp, T, Numeric> operator*(const T& v) const {
308 template <typename T> constexpr mul<MetaParam, T, Numeric> operator*(const T& v) const {
391 template <typename T> constexpr mul<Coordinate, T, Numeric> operator*(const T& v) const {
/system/media/audio_utils/include/audio_utils/
Dprimitives.h1193 int32_t mul(int16_t in, int16_t v) in mul() function