Home
last modified time | relevance | path

Searched refs:srcp (Results 1 – 5 of 5) sorted by relevance

/wlan-driver/qca-wifi-host-cmn/qdf/linux/src/
Dqdf_threads.c307 bool qdf_cpumask_empty(const qdf_cpu_mask *srcp) in qdf_cpumask_empty() argument
309 return cpumask_empty(srcp); in qdf_cpumask_empty()
315 const qdf_cpu_mask *srcp) in qdf_cpumask_copy() argument
317 return cpumask_copy(dstp, srcp); in qdf_cpumask_copy()
367 qdf_cpumask_complement(qdf_cpu_mask *dstp, const qdf_cpu_mask *srcp) in qdf_cpumask_complement() argument
369 cpumask_andnot(dstp, cpu_possible_mask, srcp); in qdf_cpumask_complement()
373 qdf_cpumask_complement(qdf_cpu_mask *dstp, const qdf_cpu_mask *srcp) in qdf_cpumask_complement() argument
375 cpumask_complement(dstp, srcp); in qdf_cpumask_complement()
/wlan-driver/qca-wifi-host-cmn/qdf/inc/
Dqdf_threads.h192 bool qdf_cpumask_empty(const qdf_cpu_mask *srcp);
203 const qdf_cpu_mask *srcp);
274 qdf_cpumask_complement(qdf_cpu_mask *dstp, const qdf_cpu_mask *srcp);
/wlan-driver/qca-wifi-host-cmn/target_if/spectral/
Dtarget_if_spectral.h114 #define SPECTRAL_MESSAGE_COPY_CHAR_ARRAY(destp, srcp, len) do { \ argument
117 src = (uint32_t *)(srcp); \
124 #define SPECTRAL_MESSAGE_COPY_CHAR_ARRAY(destp, srcp, len) \ argument
125 OS_MEMCPY((destp), (srcp), (len));
/wlan-driver/qcacld-3.0/core/wma/src/
Dwma_mgmt.c3789 uint32_t *destp, *srcp; in wma_mem_endianness_based_copy() local
3792 srcp = (uint32_t *) src; in wma_mem_endianness_based_copy()
3794 *destp = cpu_to_le32(*srcp); in wma_mem_endianness_based_copy()
3796 srcp++; in wma_mem_endianness_based_copy()
/wlan-driver/qca-wifi-host-cmn/wmi/inc/
Dwmi_unified_param.h529 #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) do { \ argument
532 src = (u_int32_t *)srcp; \
540 #define WMI_HOST_IF_MSG_COPY_CHAR_ARRAY(destp, srcp, len) OS_MEMCPY(destp,\ argument
541 srcp, len)