Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 38) sorted by relevance

12

/wlan-driver/qca-wifi-host-cmn/qdf/inc/
Dqdf_time.h212 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()
Dqdf_util.h663 #define qdf_min(a, b) __qdf_min(a, b) argument
/wlan-driver/qca-wifi-host-cmn/htc/
Dhtc_packet.h164 #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/
Di_qdf_time.h285 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()
Dqdf_time.c155 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()
Dqdf_crypto.c45 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()
Di_qdf_trace.h54 #define __printf(a, b) argument
/wlan-driver/qcacld-3.0/core/mac/src/sys/legacy/src/platform/inc/
Dsys_wrapper.h82 #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/
Ddfs.h107 #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/
Dol_rx_defrag.h120 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/
Dwlan_mlo_mgr_ap.h29 #define WLAN_AID(b) ((b) & ~0xc000) argument
/wlan-driver/qca-wifi-host-cmn/dp/cmn_dp_api/
Ddp_ratetable.h75 #define DP_ATH_EP_MUL(a, b) ((a) * (b)) argument
/wlan-driver/qca-wifi-host-cmn/wmi/src/
Dwmi_unified.c226 #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/
Dqueue.h563 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/
Dwlan_crypto_def_i.h165 #define WLAN_CRYPTO_SELECTOR(a, b, c, d) \ argument
167 (((uint32_t) (b)) << 16) | \
Dwlan_crypto_global_api.c2096 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/
Dlinux_ac.c718 #define MIN(a, b) (((a) < (b)) ? (a) : (b)) argument
/wlan-driver/qca-wifi-host-cmn/hal/wifi3.0/qca6290/
Dhal_6290.c619 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/
Dhal_6390.c621 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/
Dhal_8074v1.c662 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/
Dhal_8074v2.c645 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/
Dhal_5332.c706 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/
Dhal_6490.c1042 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/
Dhal_5018.c1160 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/
Dhal_9224.h1048 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()

12