Searched defs:tr (Results 1 - 2 of 2) sorted by relevance

/device/google/contexthub/firmware/os/platform/stm32/
H A Drtc.c253 uint32_t dr, tr, ssr; local
262 // decrements (which can propagate changes to tr and dr)
265 tr = RTC->TR;
271 time_s += ((((tr >> 22) & 0x1) * 43200ULL) +
272 (((tr >> 20) & 0x3) * 36000ULL) +
273 (((tr >> 16) & 0xF) * 3600ULL) +
274 (((tr >> 12) & 0x7) * 600ULL) +
275 (((tr >> 8) & 0xF) * 60ULL) +
276 (((tr >> 4) & 0x7) * 10ULL) +
277 (((tr)
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dlstrlib.c705 const char *e, int tr) {
707 switch (tr) {
739 int tr = lua_type(L, 3); local
745 luaL_argcheck(L, tr == LUA_TNUMBER || tr == LUA_TSTRING ||
746 tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3,
764 add_value(&ms, &b, src, e, tr);
704 add_value(MatchState *ms, luaL_Buffer *b, const char *s, const char *e, int tr) argument

Completed in 141 milliseconds