Home
last modified time | relevance | path

Searched refs:UINT64 (Results 1 – 25 of 33) sorted by relevance

12

/device/soc/telink/b91/liteos_m/src/
Dpower_b91.c45 static inline UINT64 MticksToSysticks(UINT64 mticks) in MticksToSysticks()
52 return (UINT32)((UINT64)sticks * OS_SYS_CLOCK / SYSTEM_TIMER_TICK_1S); in SysticksToMticks()
61 static inline void SetMtime(UINT64 time) in SetMtime()
70 static inline UINT64 GetMtimeCompare(void) in GetMtimeCompare()
72 return *(volatile UINT64 *)(MTIMERCMP); in GetMtimeCompare()
75 static inline UINT64 GetMtime(void) in GetMtime()
84 return (((UINT64)mtimeH) << SHIFT_32_BIT) | mtimeL; in GetMtime()
95 UINT64 mcompare = GetMtimeCompare(); in B91Suspend()
96 UINT64 mtick = GetMtime(); in B91Suspend()
113 UINT64 systicksSleepTimeout = MticksToSysticks(mcompare - mtick); in B91Suspend()
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/profile/std/dis/
Ddis_profile.c44 …TO_UINT64(u64, p) {u64 = (((UINT64)(*(p))) + ((((UINT64)(*((p) + 1)))) << 8) + ((((UINT64)(*((p) +…
45 …+ ((((UINT64)(*((p) + 4)))) << 32) + ((((UINT64)(*((p) + 5)))) << 40) + ((((UINT64)(*((p) + 6)))) …
/device/soc/hisilicon/hi3861v100/hi3861_adapter/kal/posix/src/
Dtime.c74 UINT64 tick, ns; in OsTimeSpec2Tick()
76 ns = (UINT64)tp->tv_sec * OS_SYS_NS_PER_SECOND + tp->tv_nsec; in OsTimeSpec2Tick()
87 UINT64 ns = ((UINT64)tick * OS_SYS_NS_PER_SECOND) / LOSCFG_BASE_CORE_TICK_PER_SECOND; in OsTick2TimeSpec()
94 UINT64 nseconds; in nanosleep()
95 UINT64 tick; in nanosleep()
104 nseconds = (UINT64)rqtp->tv_sec * OS_SYS_NS_PER_SECOND + rqtp->tv_nsec; in nanosleep()
/device/board/openvalley/niobeu4/liteos_m/arch/
Dlos_context.c28 UINT64 OsTickCount = 0;
79 static UINT64 ArchGetTickCycle(UINT32 *period) in ArchGetTickCycle()
81 return (UINT64)OsTickCount * (OS_SYS_CLOCK / LOSCFG_BASE_CORE_TICK_PER_SECOND); in ArchGetTickCycle()
102 static VOID ArchSysTickReload(UINT64 nextResponseTime) in ArchSysTickReload()
Dlos_arch_timer.h59 UINT64 VAL;
61 UINT64 ALARM;
62 UINT64 LOAD;
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/extended/include/
Dlos_cpup_pri.h46 UINT64 allTime; /**< Total running time */
47 UINT64 startTime; /**< Time before a task is invoked */
115 extern UINT64 OsGetCpuCycle(VOID);
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/include/
Dlos_base.h94 #define READ_UINT64(value, addr) ((value) = *((volatile UINT64 *)(addr)))
115 #define GET_UINT64(addr) (*((volatile UINT64 *)(addr)))
136 #define WRITE_UINT64(value, addr) (*((volatile UINT64 *)(addr)) = (value))
Dlos_runstop.h82 UINT64 wakeupTick;
83 UINT64 exitIdleTick;
Dlos_cpup.h104 UINT64 ullAllTime; /**< Time before a task is invoked */
Dlos_sys.h125 extern UINT64 LOS_TickCountGet(VOID);
Dlos_typedef.h58 typedef unsigned long long UINT64; typedef
/device/soc/winnermicro/wm800/board/
Dtask_demo.c46 UINT64 cycle = LOS_SysCycleGet(); in TaskSampleEntry2()
47 UINT64 nowNsec = (cycle / OS_SYS_CLOCK) * OS_SYS_NS_PER_SECOND + in TaskSampleEntry2()
/device/soc/esp/esp32/components/bt/host/bluedroid/btc/profile/std/include/
Dsrvc_api.h65 UINT64 system_id;
74 UINT64 system_id;
Ddis_api.h89 UINT64 system_id;
98 UINT64 system_id;
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/include/
Dtypedefs.h352 typedef UINT64 ulong;
357 typedef UINT64 uint64;
/device/soc/esp/esp32/components/pthread/
Dpthread.c1427 UINT64 tick, ns; in OsTimeSpec2Tick()
1429 ns = (UINT64)tp->tv_sec * OS_SYS_NS_PER_SECOND + tp->tv_nsec; in OsTimeSpec2Tick()
1440 UINT64 ns = ((UINT64)tick * OS_SYS_NS_PER_SECOND) / LOSCFG_BASE_CORE_TICK_PER_SECOND; in OsTick2TimeSpec()
1446 UINT64 cycle = LOS_SysCycleGet(); in OsGetHwTime()
1447 UINT64 nowNsec = (cycle / g_sysClock) * OS_SYS_NS_PER_SECOND + in OsGetHwTime()
1580 static INT32 OsGetTickTimeFromNow(const struct timespec *ts, clockid_t clockId, UINT64 *absTicks) in OsGetTickTimeFromNow()
1583 UINT64 nseconds; in OsGetTickTimeFromNow()
1584 UINT64 currTime; in OsGetTickTimeFromNow()
1592 currTime = (UINT64)tp.tv_sec * OS_SYS_NS_PER_SECOND + tp.tv_nsec; in OsGetTickTimeFromNow()
1593 nseconds = (UINT64)ts->tv_sec * OS_SYS_NS_PER_SECOND + ts->tv_nsec; in OsGetTickTimeFromNow()
[all …]
/device/soc/winnermicro/wm800/board/include/app/
Dwm_http_client.h41 #ifdef UINT64
42 #undef UINT64
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/kernel/base/include/
Dlos_tick_pri.h45 extern UINT64 g_tickCount;
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/middleware/driver/include/bk_private/legacy/ethermind_export/
Dbt_defines.h40 typedef unsigned long long UINT64; typedef
/device/soc/hpmicro/hpm6700/liteos_m/
Dtarget_config.h40 #define LOSCFG_BASE_CORE_TICK_RESPONSE_MAX ((UINT64)-1)
/device/qemu/riscv32_virt/liteos_m/board/
Dtarget_config.h41 #define LOSCFG_BASE_CORE_TICK_RESPONSE_MAX ((UINT64)-1)
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/middleware/driver/include/bk_private/
Dbk_fake_clock.h71 UINT64 fclk_get_local_tick64(void);
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/include/common/
Dbk_typedef.h39 typedef unsigned long long UINT64; /* Unsigned 32 bit quantity */ typedef
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/components/bk_ps/include/
Dbk_mcu_ps.h62 extern UINT32 mcu_ps_tsf_cal ( UINT64 );
/device/soc/esp/esp32/components/osal/
Dliteos_m.c35 extern UINT64 OsTickCount;

12