/wlan-driver/qca-wifi-host-cmn/qdf/inc/ |
D | qdf_time.h | 212 bool qdf_system_time_after(qdf_time_t a, qdf_time_t b); 221 bool qdf_system_time_before(qdf_time_t a, qdf_time_t b); 231 bool qdf_system_time_after_eq(qdf_time_t a, qdf_time_t b); 435 static inline bool qdf_system_time_after(qdf_time_t a, qdf_time_t b) in qdf_system_time_after() argument 437 return __qdf_system_time_after(a, b); in qdf_system_time_after() 440 static inline bool qdf_system_time_before(qdf_time_t a, qdf_time_t b) in qdf_system_time_before() argument 442 return __qdf_system_time_before(a, b); in qdf_system_time_before() 445 static inline bool qdf_system_time_after_eq(qdf_time_t a, qdf_time_t b) in qdf_system_time_after_eq() argument 447 return __qdf_system_time_after_eq(a, b); in qdf_system_time_after_eq()
|
D | qdf_util.h | 663 #define qdf_min(a, b) __qdf_min(a, b) argument
|
/wlan-driver/qca-wifi-host-cmn/htc/ |
D | htc_packet.h | 164 #define INIT_HTC_PACKET_INFO(p, b, len) \ argument 166 (p)->pBufferStart = (b); \ 171 #define SET_HTC_PACKET_INFO_RX_REFILL(p, c, b, len, ep) \ argument 174 (p)->pBuffer = (b); \ 175 (p)->pBufferStart = (b); \ 185 #define SET_HTC_PACKET_INFO_TX(p, c, b, len, ep, tag) \ argument 188 (p)->pBuffer = (b); \
|
/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/ |
D | i_qdf_time.h | 285 static inline bool __qdf_system_time_after(__qdf_time_t a, __qdf_time_t b) in __qdf_system_time_after() argument 287 return (long)((b) - (a)) < 0; in __qdf_system_time_after() 298 static inline bool __qdf_system_time_before(__qdf_time_t a, __qdf_time_t b) in __qdf_system_time_before() argument 300 return __qdf_system_time_after(b, a); in __qdf_system_time_before() 312 static inline bool __qdf_system_time_after_eq(__qdf_time_t a, __qdf_time_t b) in __qdf_system_time_after_eq() argument 314 return (long)((a) - (b)) >= 0; in __qdf_system_time_after_eq()
|
D | qdf_time.c | 155 bool qdf_system_time_after(qdf_time_t a, qdf_time_t b) in qdf_system_time_after() argument 157 return __qdf_system_time_after(a, b); in qdf_system_time_after() 162 bool qdf_system_time_before(qdf_time_t a, qdf_time_t b) in qdf_system_time_before() argument 164 return __qdf_system_time_before(a, b); in qdf_system_time_before() 169 bool qdf_system_time_after_eq(qdf_time_t a, qdf_time_t b) in qdf_system_time_after_eq() argument 171 return __qdf_system_time_after_eq(a, b); in qdf_system_time_after_eq()
|
D | qdf_crypto.c | 45 static void xor(uint8_t *a, const uint8_t *b, size_t len) in xor() argument 50 a[i] ^= b[i]; in xor() 157 static inline void xor_128(const uint8_t *a, const uint8_t *b, uint8_t *out) in xor_128() argument 162 out[i] = a[i] ^ b[i]; in xor_128()
|
D | i_qdf_trace.h | 54 #define __printf(a, b) argument
|
/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/platform/inc/ |
D | sys_wrapper.h | 82 #define tx_timer_create(a, b, c, d, e, f, g, h) tx_timer_create_intern_debug((void *)a, b, c, d… argument 84 #define tx_timer_create(a, b, c, d, e, f, g, h) tx_timer_create_intern((void *)a, b, c, d, e, f…
|
/wlan-driver/qca-wifi-host-cmn/umac/dfs/core/src/ |
D | dfs.h | 107 #define DFS_MIN(a, b) ((a) < (b)?(a):(b)) argument 108 #define DFS_MAX(a, b) ((a) > (b)?(a) : (b)) argument 109 #define DFS_DIFF(a, b)(DFS_MAX(a, b) - DFS_MIN(a, b)) argument 147 #define DFS_MARGIN_EQUAL(a, b, margin) ((DFS_DIFF(a, b)) <= margin) argument
|
/wlan-driver/qcacld-3.0/core/dp/txrx/ |
D | ol_rx_defrag.h | 120 static inline void xor_block(uint8_t *b, const uint8_t *a, qdf_size_t len) in xor_block() argument 125 b[i] ^= a[i]; in xor_block()
|
/wlan-driver/qca-wifi-host-cmn/umac/mlo_mgr/inc/ |
D | wlan_mlo_mgr_ap.h | 29 #define WLAN_AID(b) ((b) & ~0xc000) argument
|
/wlan-driver/qca-wifi-host-cmn/dp/cmn_dp_api/ |
D | dp_ratetable.h | 75 #define DP_ATH_EP_MUL(a, b) ((a) * (b)) argument
|
/wlan-driver/qca-wifi-host-cmn/wmi/src/ |
D | wmi_unified.c | 226 #define WMI_COMMAND_RECORD(h, a, b) { \ argument 236 b, wmi_record_max_length); \ 244 #define WMI_COMMAND_TX_CMP_RECORD(h, a, b, da, pa) { \ argument 258 data, b, wmi_record_max_length); \ 278 #define WMI_EVENT_RECORD(h, a, b) { \ argument 287 [*(h->log_info.wmi_event_log_buf_info.p_buf_tail_idx)].data, b,\ 296 #define WMI_RX_EVENT_RECORD(h, a, b) { \ argument 306 data, b, wmi_record_max_length); \ 335 #define WMI_MGMT_COMMAND_RECORD(h, a, b) { \ argument 347 data, b, \ [all …]
|
/wlan-driver/qca-wifi-host-cmn/utils/sys/ |
D | queue.h | 563 static inline void insque(void *a, void *b) in insque() argument 566 *head = (struct quehead *)b; in insque() 585 void insque(void *a, void *b);
|
/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/crypto/src/ |
D | wlan_crypto_def_i.h | 165 #define WLAN_CRYPTO_SELECTOR(a, b, c, d) \ argument 167 (((uint32_t) (b)) << 16) | \
|
D | wlan_crypto_global_api.c | 2096 static void wlan_crypto_gmac_pn_swap(uint8_t *a, uint8_t *b) in wlan_crypto_gmac_pn_swap() argument 2098 a[0] = b[5]; in wlan_crypto_gmac_pn_swap() 2099 a[1] = b[4]; in wlan_crypto_gmac_pn_swap() 2100 a[2] = b[3]; in wlan_crypto_gmac_pn_swap() 2101 a[3] = b[2]; in wlan_crypto_gmac_pn_swap() 2102 a[4] = b[1]; in wlan_crypto_gmac_pn_swap() 2103 a[5] = b[0]; in wlan_crypto_gmac_pn_swap()
|
/wlan-driver/qca-wifi-host-cmn/utils/pktlog/ |
D | linux_ac.c | 718 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca6290/ |
D | hal_6290.c | 619 static void hal_reo_status_get_header_6290(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_6290() argument 632 switch (b) { in hal_reo_status_get_header_6290() 676 switch (b) { in hal_reo_status_get_header_6290()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca6390/ |
D | hal_6390.c | 621 static void hal_reo_status_get_header_6390(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_6390() argument 634 switch (b) { in hal_reo_status_get_header_6390() 678 switch (b) { in hal_reo_status_get_header_6390()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca8074v1/ |
D | hal_8074v1.c | 662 static void hal_reo_status_get_header_8074v1(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_8074v1() argument 675 switch (b) { in hal_reo_status_get_header_8074v1() 719 switch (b) { in hal_reo_status_get_header_8074v1()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca8074v2/ |
D | hal_8074v2.c | 645 static void hal_reo_status_get_header_8074v2(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_8074v2() argument 658 switch (b) { in hal_reo_status_get_header_8074v2() 702 switch (b) { in hal_reo_status_get_header_8074v2()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca5332/ |
D | hal_5332.c | 706 int b, void *h1) in hal_reo_status_get_header_5332() argument 718 switch (b) { in hal_reo_status_get_header_5332() 762 switch (b) { in hal_reo_status_get_header_5332()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca6490/ |
D | hal_6490.c | 1042 static void hal_reo_status_get_header_6490(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_6490() argument 1055 switch (b) { in hal_reo_status_get_header_6490() 1099 switch (b) { in hal_reo_status_get_header_6490()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca5018/ |
D | hal_5018.c | 1160 static void hal_reo_status_get_header_5018(hal_ring_desc_t ring_desc, int b, in hal_reo_status_get_header_5018() argument 1173 switch (b) { in hal_reo_status_get_header_5018() 1217 switch (b) { in hal_reo_status_get_header_5018()
|
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qcn9224/ |
D | hal_9224.h | 1048 int b, void *h1) in hal_reo_status_get_header_9224() argument 1060 switch (b) { in hal_reo_status_get_header_9224() 1104 switch (b) { in hal_reo_status_get_header_9224()
|