Home
last modified time | relevance | path

Searched refs:src (Results 6851 - 6875 of 7155) sorted by relevance

1...<<271272273274275276277278279280>>...287

/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_nl80211.c7456 const u8 *dst, const u8 *src, in wpa_driver_nl80211_send_action()
7478 os_memcpy(hdr->addr2, src, ETH_ALEN); in wpa_driver_nl80211_send_action()
7481 if (os_memcmp(bss->addr, src, ETH_ALEN) != 0) { in wpa_driver_nl80211_send_action()
7483 MAC2STR(src)); in wpa_driver_nl80211_send_action()
7484 os_memcpy(bss->rand_addr, src, ETH_ALEN); in wpa_driver_nl80211_send_action()
8709 const u8 *dst, const u8 *src, in driver_nl80211_send_action()
8715 return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src, in driver_nl80211_send_action()
7453 wpa_driver_nl80211_send_action(struct i802_bss *bss, unsigned int freq, unsigned int wait_time, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, int no_cck) wpa_driver_nl80211_send_action() argument
8707 driver_nl80211_send_action(void *priv, unsigned int freq, unsigned int wait_time, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, int no_cck) driver_nl80211_send_action() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/
H A Ddriver_nl80211.c8552 const u8 *dst, const u8 *src,
8579 os_memcpy(hdr->addr2, src, ETH_ALEN);
8582 if (os_memcmp(bss->addr, src, ETH_ALEN) != 0) {
8584 MAC2STR_SEC(src));
8585 os_memcpy(bss->rand_addr, src, ETH_ALEN);
10020 const u8 *dst, const u8 *src,
10026 return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src,
8549 wpa_driver_nl80211_send_action(struct i802_bss *bss, unsigned int freq, unsigned int wait_time, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, int no_cck) global() argument
10018 driver_nl80211_send_action(void *priv, unsigned int freq, unsigned int wait_time, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, int no_cck) global() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Ddpp.c9076 dpp_relay_new_conn(struct dpp_relay_controller *ctrl, const u8 *src, in dpp_relay_new_conn() argument
9100 os_memcpy(conn->mac_addr, src, ETH_ALEN); in dpp_relay_new_conn()
9184 int dpp_relay_rx_action(struct dpp_global *dpp, const u8 *src, const u8 *hdr, in dpp_relay_rx_action() argument
9201 if (os_memcmp(src, conn->mac_addr, in dpp_relay_rx_action()
9217 conn = dpp_relay_new_conn(ctrl, src, freq); in dpp_relay_rx_action()
9232 int dpp_relay_rx_gas_req(struct dpp_global *dpp, const u8 *src, const u8 *data, in dpp_relay_rx_gas_req() argument
9248 if (os_memcmp(src, conn->mac_addr, in dpp_relay_rx_gas_req()
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp1347 void ImStrncpy(char* dst, const char* src, size_t count)
1352 strncpy(dst, src, count - 1);
1363 char* ImStrdupcpy(char* dst, size_t* p_dst_size, const char* src)
1366 size_t src_size = strlen(src) + 1;
1374 return (char*)memcpy(dst, (const void*)src, src_size);
2169 #define va_copy(dest, src) __builtin_va_copy(dest, src)
2171 #define va_copy(dest, src) (dest = src)
4582 // - https://git.musl-libc.org/cgit/musl/tree/src/mat in CalcTextSize()
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan.hpp820 void link( void * dstBase, void const * srcBase, VkBaseOutStructure * dst, VkBaseInStructure const * src ) in link()
822 while ( src->pNext ) in link()
824 std::ptrdiff_t offset = reinterpret_cast<char const *>( src->pNext ) - reinterpret_cast<char const *>( srcBase ); in link()
827 src = src->pNext; in link()
4065 VkAccelerationStructureNV src,
4069 return ::vkCmdBuildAccelerationStructureNV( commandBuffer, pInfo, instanceData, instanceOffset, update, dst, src, scratch, scratchOffset );
4074 VkAccelerationStructureNV src,
4077 return ::vkCmdCopyAccelerationStructureNV( commandBuffer, dst, src, mode );
/third_party/backends/backend/
H A Dmicrotek2.c6951 SANE_Int *src; in calculate_gamma() local
6955 src = ms->val[option].wa; in calculate_gamma()
6957 src = ms->val[option + color + 1].wa; in calculate_gamma()
6962 *((uint16_t *) pos + i) = (uint16_t) (src[i] / factor); in calculate_gamma()
6964 *((uint8_t *) pos + i) = (uint8_t) (src[i] / factor); in calculate_gamma()
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
H A DTestCharset.java1138 // private ByteBuffer bufferCopy(ByteBuffer src) {
1139 // ByteBuffer dest = ByteBuffer.allocate(src.limit());
1140 // System.arraycopy(src.array(), 0, dest.array(), 0, src.limit());
1141 // dest.position(src.position());
1144 // private CharBuffer bufferCopy(CharBuffer src) {
1145 // CharBuffer dest = CharBuffer.allocate(src.limit());
1146 // System.arraycopy(src.array(), 0, dest.array(), 0, src.limit());
1147 // dest.position(src
[all...]
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/
H A Dapi.js10 var _scriptDir = typeof document !== "undefined" && document.currentScript ? document.currentScript.src : void 0;
110 scriptDirectory = document.currentScript.src;
[all...]
/third_party/node/deps/v8/src/execution/ppc/
H A Dsimulator-ppc.cc5 #include "src/execution/ppc/simulator-ppc.h"
14 #include "src/base/bits.h"
15 #include "src/base/lazy-instance.h"
16 #include "src/base/overflowing-math.h"
17 #include "src/base/platform/platform.h"
18 #include "src/base/platform/wrappers.h"
19 #include "src/codegen/assembler.h"
20 #include "src/codegen/macro-assembler.h"
21 #include "src/codegen/ppc/constants-ppc.h"
22 #include "src/codege
1480 int src = a; VectorPackSaturate() local
[all...]
/third_party/pcre2/pcre2/src/
H A Dpcre2test.c2720 const unsigned char *src = (const unsigned char *)s; in emulated_memmove()
2721 if (dest > src) in emulated_memmove()
2724 src += n; in emulated_memmove()
2725 for (i = 0; i < n; ++i) *(--dest) = *(--src); in emulated_memmove()
2730 for (i = 0; i < n; ++i) *dest++ = *src++; in emulated_memmove()
/third_party/skia/third_party/externals/expat/expat/lib/
H A Dxmlparse.c7550 const XML_Char *src; in build_model() local
7552 src = dtd->scaffold[src_node].name; in build_model()
7554 *str++ = *src; in build_model()
7555 if (! *src) in build_model()
7557 src++; in build_model()
/third_party/python/Modules/expat/
H A Dxmlparse.c7582 const XML_Char *src; in build_model() local
7584 src = dtd->scaffold[src_node].name; in build_model()
7586 *str++ = *src; in build_model()
7587 if (! *src) in build_model()
7589 src++; in build_model()
/third_party/ffmpeg/libavcodec/
H A Dwavpackenc.c2815 const int8_t *src, int32_t *dst, in fill_buffer()
2821 const type *sptr = (const type *)src; \ in fill_buffer()
2839 memcpy(dst, src, nb_samples * 4); in fill_buffer()
2814 fill_buffer(WavPackEncodeContext *s, const int8_t *src, int32_t *dst, int nb_samples) fill_buffer() argument
/third_party/icu/icu4c/source/i18n/
H A Drematch.cpp1981 * @param src The source UText
1988 static UText *utext_extract_replace(UText *src, UText *dest, int64_t start, int64_t limit, UErrorCode *status) { in utext_extract_replace() argument
2000 int32_t length = utext_extract(src, start, limit, NULL, 0, status); in utext_extract_replace()
2012 utext_extract(src, start, limit, buffer.getAlias(), length+1, status); in utext_extract_replace()
/third_party/node/deps/icu-small/source/i18n/
H A Drematch.cpp1981 * @param src The source UText
1988 static UText *utext_extract_replace(UText *src, UText *dest, int64_t start, int64_t limit, UErrorCode *status) { in utext_extract_replace() argument
2000 int32_t length = utext_extract(src, start, limit, nullptr, 0, status); in utext_extract_replace()
2012 utext_extract(src, start, limit, buffer.getAlias(), length+1, status); in utext_extract_replace()
/third_party/node/deps/v8/src/execution/
H A Disolate.cc5 #include "src/execution/isolate.h"
19 #include "src/api/api-inl.h"
20 #include "src/ast/ast-value-factory.h"
21 #include "src/ast/scopes.h"
22 #include "src/base/hashmap.h"
23 #include "src/base/logging.h"
24 #include "src/base/platform/mutex.h"
25 #include "src/base/platform/platform.h"
26 #include "src/base/sys-info.h"
27 #include "src/bas
[all...]
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
H A Dmod.rs2656 // NOTE: These are in addition to the constants defined in src/unix/mod.rs
2658 // IPPROTO_IP defined in src/unix/mod.rs
2661 // IPPROTO_ICMP defined in src/unix/mod.rs
2668 // IPPROTO_TCP defined in src/unix/mod.rs
2689 // IPPROTO_UDP defined in src/unix/mod.rs
2742 // IPPROTO_IPV6 defined in src/unix/mod.rs
2775 // IPPROTO_ICMPV6 defined in src/unix/mod.rs
4236 pub fn dup3(src: ::c_int, dst: ::c_int, flags: ::c_int) -> ::c_int; in dup3()
4316 pub fn cap_rights_merge(dst: *mut cap_rights_t, src: *const cap_rights_t) -> *mut cap_rights_t; in cap_rights_merge()
4317 pub fn cap_rights_remove(dst: *mut cap_rights_t, src in cap_rights_merge()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsTestsUtils.cpp1424 std::ostringstream src; in initStdPrograms() local
1426 src << "#version 450\n" in initStdPrograms()
1444 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()) << buildOptions; in initStdPrograms()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Drematch.cpp1971 * @param src The source UText
1978 static UText *utext_extract_replace(UText *src, UText *dest, int64_t start, int64_t limit, UErrorCode *status) { in utext_extract_replace() argument
1990 int32_t length = utext_extract(src, start, limit, NULL, 0, status); in utext_extract_replace()
2002 utext_extract(src, start, limit, buffer.getAlias(), length+1, status); in utext_extract_replace()
/third_party/python/Lib/test/
H A Dtest_tarfile.py2268 with tarfile.open(tarname, encoding="iso8859-1") as src:
2269 t = src.getmember("ustar/regtype")
2271 with src.extractfile(t) as f:
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/subgroups/
H A DvktSubgroupsTestsUtils.cpp1424 std::ostringstream src; in initStdPrograms() local
1426 src << "#version 450\n" in initStdPrograms()
1444 programCollection.glslSources.add("comp") << glu::ComputeSource(src.str()) << buildOptions; in initStdPrograms()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Devents.c4597 const u8 *src = mgmt->sa; in wpa_supplicant_event() local
4605 wpa_s, src, mgmt->da, in wpa_supplicant_event()
4716 wpa_supplicant_rx_eapol(wpa_s, data->eapol_rx.src, in wpa_supplicant_event()
/third_party/ffmpeg/libavcodec/mips/
H A Dhevc_mc_biw_msa.c5909 uint8_t *src, \
5925 hevc_biwgt_copy_##WIDTH##w_msa(src, src_stride, src_16bit, MAX_PB_SIZE, \
5947 uint8_t *src, \
5964 hevc_##DIR1##_biwgt_##TAP##t_##WIDTH##w_msa(src, src_stride, src_16bit, \
6010 uint8_t *src, \
6027 hevc_hv_biwgt_##TAP##t_##WIDTH##w_msa(src, src_stride, src_16bit, \
H A Dhevc_mc_bi_msa.c4913 uint8_t *src, \
4921 hevc_bi_copy_##WIDTH##w_msa(src, src_stride, src_16bit, MAX_PB_SIZE, \
4940 uint8_t *src, \
4950 hevc_##DIR1##_bi_##TAP##t_##WIDTH##w_msa(src, src_stride, src_16bit, \
4994 uint8_t *src, \
5005 hevc_hv_bi_##TAP##t_##WIDTH##w_msa(src, src_stride, src_16bit, \
/third_party/node/deps/v8/src/api/
H A Dapi.cc5 #include "src/api/api.h"
29 #include "src/api/api-inl.h"
30 #include "src/api/api-natives.h"
31 #include "src/base/functional.h"
32 #include "src/base/logging.h"
33 #include "src/base/platform/platform.h"
34 #include "src/base/platform/time.h"
35 #include "src/base/safe_conversions.h"
36 #include "src/base/utils/random-number-generator.h"
37 #include "src/baselin
10714 TryToCopyAndConvertArrayToCppBuffer(Local<Array> src, int32_t* dst, uint32_t max_length) TryToCopyAndConvertArrayToCppBuffer() argument
10725 TryToCopyAndConvertArrayToCppBuffer(Local<Array> src, uint32_t* dst, uint32_t max_length) TryToCopyAndConvertArrayToCppBuffer() argument
10736 TryToCopyAndConvertArrayToCppBuffer(Local<Array> src, float* dst, uint32_t max_length) TryToCopyAndConvertArrayToCppBuffer() argument
10747 TryToCopyAndConvertArrayToCppBuffer(Local<Array> src, double* dst, uint32_t max_length) TryToCopyAndConvertArrayToCppBuffer() argument
[all...]

Completed in 227 milliseconds

1...<<271272273274275276277278279280>>...287