Searched refs:tt (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-3.6.0/components/mdns/host_test/components/esp_timer_linux/ |
D | timer_task.cpp | 23 auto * tt = new TimerTaskMock(cb); in create_tt() local 24 return tt; in create_tt() 27 extern "C" void destroy_tt(void* tt) in destroy_tt() argument 29 auto * timer_task = static_cast<TimerTaskMock *>(tt); in destroy_tt() 34 extern "C" void set_tout(void* tt, uint32_t ms) in set_tout() argument 36 auto * timer_task = static_cast<TimerTaskMock *>(tt); in set_tout()
|
D | esp_timer_linux.c | 21 void destroy_tt(void* tt); 23 void set_tout(void* tt, uint32_t ms);
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/ |
D | aes.c | 412 uint_8t tt; in shift_sub_rows() local 417 tt = st[1]; st[ 1] = s_box(st[ 5]); st[ 5] = s_box(st[ 9]); in shift_sub_rows() 418 st[ 9] = s_box(st[13]); st[13] = s_box( tt ); in shift_sub_rows() 420 tt = st[2]; st[ 2] = s_box(st[10]); st[10] = s_box( tt ); in shift_sub_rows() 421 tt = st[6]; st[ 6] = s_box(st[14]); st[14] = s_box( tt ); in shift_sub_rows() 423 tt = st[15]; st[15] = s_box(st[11]); st[11] = s_box(st[ 7]); in shift_sub_rows() 424 st[ 7] = s_box(st[ 3]); st[ 3] = s_box( tt ); in shift_sub_rows() 429 uint_8t tt; in inv_shift_sub_rows() local 434 tt = st[13]; st[13] = is_box(st[9]); st[ 9] = is_box(st[5]); in inv_shift_sub_rows() 435 st[ 5] = is_box(st[1]); st[ 1] = is_box( tt ); in inv_shift_sub_rows() [all …]
|
D | smp_keys.c | 192 UINT8 *tt = p_cb->tk; in smp_use_static_passkey() local 197 UINT32_TO_STREAM(tt, passkey); in smp_use_static_passkey() 250 UINT8 *tt = p_cb->tk; in smp_proc_passkey() local 266 UINT32_TO_STREAM(tt, passkey); in smp_proc_passkey()
|
/hal_espressif-3.6.0/components/pthread/test/ |
D | test_pthread_cxx.cpp | 61 std::time_t tt = system_clock::to_time_t(system_clock::now()); in thread_main() local 62 struct std::tm *ptm = std::localtime(&tt); in thread_main()
|
/hal_espressif-3.6.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/ |
D | asm_arm.inc | 644 uint32_t i, tt; 659 "subs %[tt], %[k], %[i] \n\t" /* tt = k-i */ 661 "ldr %[t1], [%[left], %[tt]] \n\t" /* t1 = left[k - i] */ 666 "cmp %[i], %[tt] \n\t" /* (i < k - i) ? */ 680 "subs %[tt], %[k], %[i] \n\t" /* tt = k - i */ 681 "cmp %[i], %[tt] \n\t" /* i <= k - i? */ 700 [k] "+r" (k), [i] "=&r" (i), [tt] "=&r" (tt), [t0] "=&r" (t0), [t1] "=&r" (t1)
|
/hal_espressif-3.6.0/examples/wifi/wifi_eap_fast/main/ |
D | server.key | 13 MdSJtOshAoGBAPzk0eswkcbFYtpnpBNmBAr1dtAdW1lfjUI2ucMMwt7Wns0P/tt+
|
/hal_espressif-3.6.0/components/fatfs/src/ |
D | ff.c | 3117 const TCHAR *tp, *tt; local 3125 tt = tp = *path; 3127 …do tc = *tt++; while ((UINT)tc >= (FF_USE_LFN ? ' ' : '!') && tc != ':'); /* Find a colon in the p… 3131 if (IsDigit(*tp) && tp + 2 == tt) { /* Is there a numeric volume ID + colon? */ 3144 } while ((c || tp != tt) && ++i < FF_VOLUMES); /* Repeat for each id until pattern match */ 3149 *path = tt; /* Snip the drive prefix off */
|