Home
last modified time | relevance | path

Searched refs:t1 (Results 1 – 7 of 7) sorted by relevance

/drivers/hdf_core/adapter/khdf/uniproton/test/sample_driver/src/
Dosal_all_test.c79 uint64_t t1 = time->sec * HDF_KILO_UNIT * HDF_KILO_UNIT + time->usec; in OsalCheckTime() local
81 uint64_t diff = (t1 < t2) ? (t2 - t1) : (t1 - t2); in OsalCheckTime()
/drivers/hdf_core/framework/test/unittest/osal/
Dosal_all_test.c71 uint64_t t1 = time->sec * HDF_KILO_UNIT * HDF_KILO_UNIT + time->usec; in OsalCheckTime() local
73 uint64_t diff = (t1 < t2) ? (t2 - t1) : (t1 - t2); in OsalCheckTime()
/drivers/peripheral/codec/test/demo/adapter/src/
Dcodec_hdi_adapter_decode.cpp498 auto t1 = std::chrono::system_clock::now(); in Run() local
537 std::chrono::duration<double> diff = t2 - t1; in Run()
/drivers/peripheral/codec/test/demo/idl/src/
Dcodec_hdi_decode.cpp656 auto t1 = std::chrono::system_clock::now(); in Run() local
689 std::chrono::duration<double> diff = t2 - t1; in Run()
/drivers/peripheral/codec/test/demo/v2.0/src/
Dcodec_hdi_decode.cpp610 auto t1 = std::chrono::system_clock::now(); in Run() local
644 std::chrono::duration<double> diff = t2 - t1; in Run()
Dcodec_hdi_encode.cpp473 auto t1 = std::chrono::system_clock::now(); in Run() local
507 std::chrono::duration<double> diff = t2 - t1; in Run()
/drivers/peripheral/input/udriver/src/
Dinput_device_manager.cpp48 std::thread t1(std::bind(&InputDeviceManager::WorkerThread, this)); in Init() local
50 thread_ = std::move(t1); in Init()