Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 41) sorted by relevance

12

/wlan-driver/qca-wifi-host-cmn/umac/cmn_services/crypto/src/
Dwlan_crypto_def_i.h40 static inline uint16_t wlan_crypto_get_be16(const uint8_t *a) in wlan_crypto_get_be16() argument
42 return (a[0] << 8) | a[1]; in wlan_crypto_get_be16()
45 static inline void wlan_crypto_put_be16(uint8_t *a, uint16_t val) in wlan_crypto_put_be16() argument
47 a[0] = val >> 8; in wlan_crypto_put_be16()
48 a[1] = val & 0xff; in wlan_crypto_put_be16()
51 static inline uint16_t wlan_crypto_get_le16(const uint8_t *a) in wlan_crypto_get_le16() argument
53 return (a[1] << 8) | a[0]; in wlan_crypto_get_le16()
56 static inline void wlan_crypto_put_le16(uint8_t *a, uint16_t val) in wlan_crypto_put_le16() argument
58 a[1] = val >> 8; in wlan_crypto_put_le16()
59 a[0] = val & 0xff; in wlan_crypto_put_le16()
[all …]
/wlan-driver/qca-wifi-host-cmn/qdf/inc/
Dqdf_types.h1029 #define QDF_MAC_ADDR_REF(a) \ argument
1030 (((uintptr_t)NULL != (uintptr_t)(a)) ? (a)[0] : 0), \
1031 (((uintptr_t)NULL != (uintptr_t)(a)) ? (a)[1] : 0), \
1032 (((uintptr_t)NULL != (uintptr_t)(a)) ? (a)[2] : 0), \
1033 (((uintptr_t)NULL != (uintptr_t)(a)) ? (a)[5] : 0)
1036 #define QDF_MAC_ADDR_REF(a) (a) argument
1209 #define QDF_IPV4_ADDR_ARRAY(a) (a)[0], (a)[1], (a)[2], (a)[3] argument
1243 #define QDF_IPV6_ADDR_ARRAY(a) \ argument
1244 ((a)[0] << 8) + (a)[1], ((a)[2] << 8) + (a)[3], \
1245 ((a)[4] << 8) + (a)[5], ((a)[6] << 8) + (a)[7], \
[all …]
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
Dqdf_nbuf.h2382 #define qdf_nbuf_alloc_simple(d, s, r, a, p) \ argument
2385 #define qdf_nbuf_alloc(d, s, r, a, p) \ argument
2386 qdf_nbuf_alloc_debug(d, s, r, a, p, __func__, __LINE__)
2392 #define qdf_nbuf_frag_alloc(d, s, r, a, p) \ argument
2393 qdf_nbuf_frag_alloc_debug(d, s, r, a, p, __func__, __LINE__)
2521 #define qdf_nbuf_page_frag_alloc(d, s, r, a, p) \ argument
2522 qdf_nbuf_page_frag_alloc_debug(d, s, r, a, p, __func__, __LINE__)
2725 #define qdf_nbuf_alloc_ppe_ds(d, s, r, a, p) \ argument
Dqdf_mem.h43 #define qdf_align(a, align_size) __qdf_align(a, align_size) argument
/wlan-driver/qcacld-3.0/core/hdd/src/
Dwlan_hdd_debugfs_offload.c186 uint8_t *a = ipv6_addr; in ipv6_addr_string() local
190 (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5], (a)[6], in ipv6_addr_string()
191 (a)[7], (a)[8], (a)[9], (a)[10], (a)[11], (a)[12], (a)[13], in ipv6_addr_string()
192 (a)[14], (a)[15]); in ipv6_addr_string()
/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()
478 const uint8_t *a[1]; in qdf_aes_s2v() local
487 a[0] = buf; in qdf_aes_s2v()
488 ret = qdf_get_keyed_hash(alg, key, key_len, a, &buf_len, 1, in qdf_aes_s2v()
494 a[0] = buf; in qdf_aes_s2v()
495 ret = qdf_get_keyed_hash(alg, key, key_len, a, &buf_len, 1, d); in qdf_aes_s2v()
531 a[0] = t; in qdf_aes_s2v()
[all …]
Di_qdf_mem.h113 #define __qdf_align(a, mask) ALIGN(a, mask) 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/qcacld-3.0/core/mac/src/cfg/cfgUtil/
Ddot11f.frms28 * constituents) in a little language called "frames". When run through the
129 * Elements are defined to have a common general format consisting of a 1 octet
130 * Element ID field, a 1 octet Length field, an optional 1 octet Element ID
131 * Extension field, and a variable-length element-specific Information field.
134 * Element ID is a combination of an Element ID and an Element ID Extension for
135 * those elements that have a defined Element ID Extension. The Length field
515 * into a four-bit major part using the top MSBs and four-bit minor part
522 * introduced a new subelement (Version2) for indicating the version number
545 * This variable indicates that the AP has entered a state in which it will
548 * should enter this state if it believes a brute force attack is underway
[all …]
/wlan-driver/qca-wifi-host-cmn/utils/sys/
Dqueue.h563 static inline void insque(void *a, void *b) in insque() argument
565 struct quehead *element = (struct quehead *)a, in insque()
574 static inline void remque(void *a) in remque() argument
576 struct quehead *element = (struct quehead *)a; in remque()
585 void insque(void *a, void *b);
586 void remque(void *a);
/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/platform/
DKbuild26 # can be only compiled as a module from out-of-kernel-tree source.
32 # can be only compiled as a module from out-of-kernel-tree source.
/wlan-driver/fw-api/hw/qcn9000/
DHALcomdef.h850 #define ARR_SIZE( a ) ( sizeof( (a) ) / sizeof( (a[0]) ) ) 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/qcacld-3.0/core/wma/inc/
Dwma.h277 #define P2PIE_PUT_LE16(a, val) \ argument
279 (a)[1] = ((uint16_t) (val)) >> 8; \
280 (a)[0] = ((uint16_t) (val)) & 0xff; \
283 #define P2PIE_PUT_LE32(a, val) \ argument
285 (a)[3] = (uint8_t) ((((uint32_t) (val)) >> 24) & 0xff); \
286 (a)[2] = (uint8_t) ((((uint32_t) (val)) >> 16) & 0xff); \
287 (a)[1] = (uint8_t) ((((uint32_t) (val)) >> 8) & 0xff); \
288 (a)[0] = (uint8_t) (((uint32_t) (val)) & 0xff); \
/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
232 .command = a; \
244 #define WMI_COMMAND_TX_CMP_RECORD(h, a, b, da, pa) { \ argument
253 command = a; \
278 #define WMI_EVENT_RECORD(h, a, b) { \ argument
284 event = a; \
296 #define WMI_RX_EVENT_RECORD(h, a, b) { \ argument
302 event = a; \
335 #define WMI_MGMT_COMMAND_RECORD(h, a, b) { \ argument
343 command = a; \
[all …]
/wlan-driver/qca-wifi-host-cmn/dp/wifi3.0/
Ddp_tx_desc.c25 #define DP_TX_DESC_SIZE(a) qdf_get_pwr2(a) argument
39 #define DP_TX_DESC_SIZE(a) a argument
/wlan-driver/qcacld-3.0/core/hdd/inc/
Dwlan_hdd_main.h700 #define WPA_GET_LE16(a) ((u16) (((a)[1] << 8) | (a)[0])) argument
701 #define WPA_GET_BE24(a) ((u32) ((a[0] << 16) | (a[1] << 8) | a[2])) argument
/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/umac/cmn_services/obj_mgr/src/
Dwlan_objmgr_pdev_obj.c290 void *a; in wlan_objmgr_pdev_component_obj_attach() local
333 a = g_umac_glb_obj->pdev_status_handler_arg[i]; in wlan_objmgr_pdev_component_obj_attach()
335 s_hlr(pdev, a, obj_status); in wlan_objmgr_pdev_component_obj_attach()

12