Searched refs:mul (Results 1 – 4 of 4) sorted by relevance
/system/logging/liblog/ |
D | log_time.cpp | 92 unsigned long mul = NS_PER_SEC; in strptime() local 97 while (isdigit(*ret) && num && (mul > 1)) { in strptime() 99 mul /= 10; in strptime() 100 tv_nsec = tv_nsec + (*ret - '0') * mul; in strptime()
|
/system/core/storaged/tests/ |
D | storaged_test.cpp | 190 struct disk_perf disk_perf_multiply(struct disk_perf perf, double mul) { in disk_perf_multiply() argument 192 retval.read_perf = (double)perf.read_perf * mul; in disk_perf_multiply() 193 retval.read_ios = (double)perf.read_ios * mul; in disk_perf_multiply() 194 retval.write_perf = (double)perf.write_perf * mul; in disk_perf_multiply() 195 retval.write_ios = (double)perf.write_ios * mul; in disk_perf_multiply() 196 retval.queue = (double)perf.queue * mul; in disk_perf_multiply()
|
/system/teeui/libteeui/include/teeui/ |
D | utils.h | 266 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/ |
D | primitives.h | 1193 int32_t mul(int16_t in, int16_t v) in mul() function
|