Searched refs:tspec (Results 1 – 10 of 10) sorted by relevance
/external/wpa_supplicant_8/wpa_supplicant/ |
D | wmm_ac.c | 35 static inline u8 wmm_ac_get_tsid(const struct wmm_tspec_element *tspec) in wmm_ac_get_tsid() argument 37 return (tspec->ts_info[0] >> 1) & 0x0f; in wmm_ac_get_tsid() 41 static u8 wmm_ac_get_direction(const struct wmm_tspec_element *tspec) in wmm_ac_get_direction() argument 43 return (tspec->ts_info[0] >> 5) & 0x03; in wmm_ac_get_direction() 47 static u8 wmm_ac_get_user_priority(const struct wmm_tspec_element *tspec) in wmm_ac_get_user_priority() argument 49 return (tspec->ts_info[1] >> 3) & 0x07; in wmm_ac_get_user_priority() 70 const struct wmm_tspec_element *tspec) in wmm_ac_add_ts() argument 74 u16 admitted_time = le_to_host16(tspec->medium_time); in wmm_ac_add_ts() 75 u8 up = wmm_ac_get_user_priority(tspec); in wmm_ac_add_ts() 77 u8 dir = wmm_ac_get_direction(tspec); in wmm_ac_add_ts() [all …]
|
D | wmm_ac.h | 108 struct wmm_tspec_element tspec; member
|
/external/deqp/framework/delibs/deutil/ |
D | deTimer.c | 217 struct itimerspec tspec; in deTimer_scheduleSingle() local 224 tspec.it_value.tv_sec = milliseconds / 1000; in deTimer_scheduleSingle() 225 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000; in deTimer_scheduleSingle() 226 tspec.it_interval.tv_sec = 0; in deTimer_scheduleSingle() 227 tspec.it_interval.tv_nsec = 0; in deTimer_scheduleSingle() 229 if (timer_settime(timer->timer, 0, &tspec, DE_NULL) != 0) in deTimer_scheduleSingle() 238 struct itimerspec tspec; in deTimer_scheduleInterval() local 245 tspec.it_value.tv_sec = milliseconds / 1000; in deTimer_scheduleInterval() 246 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000; in deTimer_scheduleInterval() 247 tspec.it_interval.tv_sec = tspec.it_value.tv_sec; in deTimer_scheduleInterval() [all …]
|
/external/wpa_supplicant_8/src/ap/ |
D | wmm.c | 189 const struct wmm_tspec_element *tspec, in wmm_send_action() argument 211 os_memcpy(t, tspec, sizeof(struct wmm_tspec_element)); in wmm_send_action() 219 int wmm_process_tspec(struct wmm_tspec_element *tspec) in wmm_process_tspec() argument 226 up = (tspec->ts_info[1] >> 3) & 0x07; in wmm_process_tspec() 227 psb = (tspec->ts_info[1] >> 2) & 0x01; in wmm_process_tspec() 228 dir = (tspec->ts_info[0] >> 5) & 0x03; in wmm_process_tspec() 229 tid = (tspec->ts_info[0] >> 1) & 0x0f; in wmm_process_tspec() 232 val = le_to_host16(tspec->nominal_msdu_size); in wmm_process_tspec() 236 le_to_host32(tspec->mean_data_rate)); in wmm_process_tspec() 238 le_to_host32(tspec->minimum_phy_rate)); in wmm_process_tspec() [all …]
|
D | wmm.h | 21 int wmm_process_tspec(struct wmm_tspec_element *tspec);
|
D | wpa_auth_ft.c | 2408 struct wmm_tspec_element *tspec; in wpa_ft_process_rdie() local 2410 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) { in wpa_ft_process_rdie() 2417 if (end - pos < (int) sizeof(*tspec)) { in wpa_ft_process_rdie() 2424 tspec = (struct wmm_tspec_element *) pos; in wpa_ft_process_rdie() 2425 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec)); in wpa_ft_process_rdie()
|
/external/libdrm/tests/exynos/ |
D | exynos_fimg2d_perf.c | 41 struct timespec tspec = { 0 }; in fimg2d_perf_simple() local 85 clock_gettime(CLOCK_MONOTONIC, &tspec); in fimg2d_perf_simple() 98 g2d_time = (end.tv_sec - tspec.tv_sec) * 1000000000ULL; in fimg2d_perf_simple() 99 g2d_time += (end.tv_nsec - tspec.tv_nsec); in fimg2d_perf_simple() 119 struct timespec tspec = { 0 }; in fimg2d_perf_multi() local 179 clock_gettime(CLOCK_MONOTONIC, &tspec); in fimg2d_perf_multi() 191 g2d_time = (end.tv_sec - tspec.tv_sec) * 1000000000ULL; in fimg2d_perf_multi() 192 g2d_time += (end.tv_nsec - tspec.tv_nsec); in fimg2d_perf_multi()
|
/external/autotest/client/tests/cyclictest/src/ |
D | cyclictest.c | 206 struct itimerspec tspec; in timerthread() local 240 tspec.it_interval = interval; in timerthread() 254 tspec.it_value = next; in timerthread() 256 tspec.it_value.tv_nsec = 0; in timerthread() 257 tspec.it_value.tv_sec = 1; in timerthread() 259 timer_settime(timer, par->timermode, &tspec, NULL); in timerthread()
|
/external/llvm-project/flang/tools/f18-parse-demo/ |
D | f18-parse-demo.cpp | 71 struct timespec tspec; in CPUseconds() local 72 clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &tspec); in CPUseconds() 73 return tspec.tv_nsec * 1.0e-9 + tspec.tv_sec; in CPUseconds()
|
/external/tensorflow/tensorflow/python/ops/ |
D | control_flow_ops.py | 489 return [tspec.shape for tspec in tensor_specs]
|