/third_party/icu/icu4c/source/common/ |
H A D | unistr.cpp | 84 UChar *dst, int32_t dstStart, int32_t count) in us_arrayCopy() 87 uprv_memmove(dst+dstStart, src+srcStart, (size_t)count*sizeof(*src)); in us_arrayCopy() 862 UChar *dst, in doExtract() 868 // do not copy anything if we alias dst itself in doExtract() 870 if(array + start != dst + dstStart) { in doExtract() 871 us_arrayCopy(array, start, dst, dstStart, length); in doExtract() 83 us_arrayCopy(const UChar *src, int32_t srcStart, UChar *dst, int32_t dstStart, int32_t count) us_arrayCopy() argument 860 doExtract(int32_t start, int32_t length, UChar *dst, int32_t dstStart) const doExtract() argument
|
/third_party/libuv/include/ |
H A D | uv.h | 1774 UV_EXTERN int uv_ip4_name(const struct sockaddr_in* src, char* dst, size_t size); 1775 UV_EXTERN int uv_ip6_name(const struct sockaddr_in6* src, char* dst, size_t size); 1776 UV_EXTERN int uv_ip_name(const struct sockaddr* src, char* dst, size_t size); 1778 UV_EXTERN int uv_inet_ntop(int af, const void* src, char* dst, size_t size); 1779 UV_EXTERN int uv_inet_pton(int af, const char* src, void* dst);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | uniset.cpp | 110 static void U_CALLCONV cloneUnicodeString(UElement *dst, UElement *src) { in cloneUnicodeString() argument 111 dst->pointer = new UnicodeString(*(UnicodeString*)src->pointer); in cloneUnicodeString() 886 UChar32* dst = list + i - 1; 887 UChar32* src = dst + 2; 889 while (src < srclimit) *(dst++) = *(src++);
|
H A D | unistr.cpp | 84 char16_t *dst, int32_t dstStart, int32_t count) in us_arrayCopy() 87 uprv_memmove(dst+dstStart, src+srcStart, (size_t)count*sizeof(*src)); in us_arrayCopy() 904 char16_t *dst, in doExtract() 910 // do not copy anything if we alias dst itself in doExtract() 912 if(array + start != dst + dstStart) { in doExtract() 913 us_arrayCopy(array, start, dst, dstStart, length); in doExtract() 83 us_arrayCopy(const char16_t *src, int32_t srcStart, char16_t *dst, int32_t dstStart, int32_t count) us_arrayCopy() argument 902 doExtract(int32_t start, int32_t length, char16_t *dst, int32_t dstStart) const doExtract() argument
|
/third_party/mesa3d/src/mesa/main/ |
H A D | texcompress_astc.cpp | 1840 uint8_t *dst = dst_row + sub_y * dst_stride + 1844 dst[0] = src[0]; 1845 dst[1] = src[1]; 1846 dst[2] = src[2]; 1847 dst[3] = src[3];
|
/third_party/lz4/tests/ |
H A D | frametest.c | 873 void* dst, size_t dstCapacity, o_scenario_e o_scenario, in test_lz4f_decompression_wBuffers() 884 BYTE* op = (BYTE*)dst; in test_lz4f_decompression_wBuffers() 927 "Decompression overwrites beyond assigned dst size", in test_lz4f_decompression_wBuffers() 932 if (findErrorPos) locateBuffDiff(srcRef, dst, decompressedSize, o_scenario); in test_lz4f_decompression_wBuffers() 944 if (o_scenario==o_overwrite) op = (BYTE*)dst; /* overwrite destination */ in test_lz4f_decompression_wBuffers() 953 if (findErrorPos) locateBuffDiff(srcRef, dst, decompressedSize, o_scenario); in test_lz4f_decompression_wBuffers() 968 o_scenario_e const o_scenario = (o_scenario_e)(FUZ_rand(randState) % 3); /* 0 : contiguous; 1 : non-contiguous; 2 : dst overwritten */ in test_lz4f_decompression() 969 /* tighten dst buffer conditions */ in test_lz4f_decompression() 871 test_lz4f_decompression_wBuffers( const void* cSrc, size_t cSize, void* dst, size_t dstCapacity, o_scenario_e o_scenario, const void* srcRef, size_t decompressedSize, U64 crcOrig, U32* const randState, LZ4F_dctx* const dCtx, U32 seed, U32 testNb, int findErrorPos) test_lz4f_decompression_wBuffers() argument
|
/third_party/node/deps/v8/src/regexp/x64/ |
H A D | regexp-macro-assembler-x64.cc | 709 void RegExpMacroAssemblerX64::LoadRegExpStackPointerFromMemory(Register dst) { in LoadRegExpStackPointerFromMemory() argument 712 __ movq(dst, __ ExternalReferenceAsOperand(ref, dst)); in LoadRegExpStackPointerFromMemory() 1176 void RegExpMacroAssemblerX64::ReadPositionFromRegister(Register dst, int reg) { in ReadPositionFromRegister() argument 1177 __ movq(dst, register_location(reg)); in ReadPositionFromRegister()
|
/third_party/mksh/ |
H A D | misc.c | 727 * if dest given, copy to dst 730 * debunk to dst 2459 char *dst = NULL; in strndup_i() local 2462 dst = alloc(len + 1, ap); in strndup_i() 2463 memcpy(dst, src, len); in strndup_i() 2464 dst[len] = '\0'; in strndup_i() 2466 return (dst); in strndup_i()
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | keccak1600-c64x.pl | 43 my ($src,$rot,$dst,$p) = @_; 47 $p ROTL B$src,$rot/2+1,A$dst 48 || ROTL A$src,$rot/2, B$dst 52 $p ROTL A$src,$rot/2,A$dst 53 || ROTL B$src,$rot/2,B$dst
|
/third_party/node/deps/uv/include/ |
H A D | uv.h | 1662 UV_EXTERN int uv_ip4_name(const struct sockaddr_in* src, char* dst, size_t size); 1663 UV_EXTERN int uv_ip6_name(const struct sockaddr_in6* src, char* dst, size_t size); 1664 UV_EXTERN int uv_ip_name(const struct sockaddr* src, char* dst, size_t size); 1666 UV_EXTERN int uv_inet_ntop(int af, const void* src, char* dst, size_t size); 1667 UV_EXTERN int uv_inet_pton(int af, const char* src, void* dst);
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | entry_points_gles_3_2_autogen.cpp | 128 void GL_APIENTRY GL_BlendFunci(GLuint buf, GLenum src, GLenum dst) in GL_BlendFunci() argument 131 EVENT(context, GLBlendFunci, "context = %d, buf = %u, src = %s, dst = %s", CID(context), buf, in GL_BlendFunci() 133 GLenumToString(GLenumGroup::BlendingFactor, dst)); in GL_BlendFunci() 140 ValidateBlendFunci(context, angle::EntryPoint::GLBlendFunci, buf, src, dst)); in GL_BlendFunci() 143 context->blendFunci(buf, src, dst); in GL_BlendFunci() 145 ANGLE_CAPTURE(BlendFunci, isCallValid, context, buf, src, dst); in GL_BlendFunci()
|
/third_party/openssl/crypto/sha/asm/ |
H A D | keccak1600-c64x.pl | 43 my ($src,$rot,$dst,$p) = @_; 47 $p ROTL B$src,$rot/2+1,A$dst 48 || ROTL A$src,$rot/2, B$dst 52 $p ROTL A$src,$rot/2,A$dst 53 || ROTL B$src,$rot/2,B$dst
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | uniset.cpp | 110 static void U_CALLCONV cloneUnicodeString(UElement *dst, UElement *src) { in cloneUnicodeString() argument 111 dst->pointer = new UnicodeString(*(UnicodeString*)src->pointer); in cloneUnicodeString() 886 UChar32* dst = list + i - 1; 887 UChar32* src = dst + 2; 889 while (src < srclimit) *(dst++) = *(src++);
|
H A D | unistr.cpp | 84 UChar *dst, int32_t dstStart, int32_t count) in us_arrayCopy() 87 uprv_memmove(dst+dstStart, src+srcStart, (size_t)count*sizeof(*src)); in us_arrayCopy() 861 UChar *dst, in doExtract() 867 // do not copy anything if we alias dst itself in doExtract() 869 if(array + start != dst + dstStart) { in doExtract() 870 us_arrayCopy(array, start, dst, dstStart, length); in doExtract() 83 us_arrayCopy(const UChar *src, int32_t srcStart, UChar *dst, int32_t dstStart, int32_t count) us_arrayCopy() argument 859 doExtract(int32_t start, int32_t length, UChar *dst, int32_t dstStart) const doExtract() argument
|
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | strutil.cc | 2309 // Reads from src and appends to dst, so usually dst should be empty. 2326 // @param dst The converted string is appended to this string 2339 void CleanStringLineEndings(const string &src, string *dst, in CleanStringLineEndings() argument 2341 if (dst->empty()) { in CleanStringLineEndings() 2342 dst->append(src); in CleanStringLineEndings() 2343 CleanStringLineEndings(dst, auto_end_last_line); in CleanStringLineEndings() 2347 dst->append(tmp); in CleanStringLineEndings()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver.h | 3098 * @dst: Destination MAC address 3105 int (*send_ether)(void *priv, const u8 *dst, const u8 *src, u16 proto, 3187 * @dst: Destination MAC address (Address 1) 3212 const u8 *dst, const u8 *src, const u8 *bssid, 3406 * @dst: Destination (peer) MAC address 3419 int (*send_tdls_mgmt)(void *priv, const u8 *dst, u8 action_code, 5275 const u8 *dst; member 5484 * @dst: Original destination 5493 const u8 *dst; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p.c | 2319 p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst, in p2p_reply_probe() argument 2341 if (dst && !is_broadcast_ether_addr(dst) && in p2p_reply_probe() 2342 os_memcmp(dst, p2p->cfg->dev_addr, ETH_ALEN) != 0) { in p2p_reply_probe() 2346 MAC2STR(dst)); in p2p_reply_probe() 2487 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst, in p2p_probe_req_rx() argument 2501 res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len, rx_freq); in p2p_probe_req_rx() 3738 void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst, in p2p_send_action_cb() argument 3745 p2p_dbg(p2p, "Action frame TX callback (state=%d freq=%u dst=" MACSTR in p2p_send_action_cb() 3747 p2p->pending_action_state, freq, MAC2STR(dst), MAC2ST in p2p_send_action_cb() 4915 p2p_send_action(struct p2p_data *p2p, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *buf, size_t len, unsigned int wait_time) p2p_send_action() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p.c | 2447 p2p_reply_probe(struct p2p_data *p2p, const u8 *addr, const u8 *dst, argument 2469 if (dst && !is_broadcast_ether_addr(dst) && 2470 os_memcmp(dst, p2p->cfg->dev_addr, ETH_ALEN) != 0) { 2474 MAC2STR_SEC(dst)); 2619 p2p_probe_req_rx(struct p2p_data *p2p, const u8 *addr, const u8 *dst, argument 2633 res = p2p_reply_probe(p2p, addr, dst, bssid, ie, ie_len, rx_freq); 3911 void p2p_send_action_cb(struct p2p_data *p2p, unsigned int freq, const u8 *dst, argument 3918 p2p_dbg(p2p, "Action frame TX callback (state=%d freq=%u dst=" MACSTR_SEC 3920 p2p->pending_action_state, freq, MAC2STR_SEC(dst), MAC2STR_SE 5126 p2p_send_action(struct p2p_data *p2p, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *buf, size_t len, unsigned int wait_time) global() argument [all...] |
/third_party/skia/third_party/externals/wuffs/release/c/ |
H A D | wuffs-v0.2.c | 1921 // dst", also known as just "over". 1923 // - 2 means the frame is completely opaque, so that "src over dst" and "src" 2377 uint64_t (*func)(wuffs_base__slice_u8 dst, 2387 inline uint64_t swizzle_interleaved(wuffs_base__slice_u8 dst, 2404 wuffs_base__slice_u8 dst, 2421 wuffs_base__slice_u8 dst, in swizzle_interleaved() 2424 return wuffs_base__pixel_swizzler__swizzle_interleaved(this, dst, dst_palette, in swizzle_interleaved() 4151 // wuffs_base__slice_u8__copy_from_slice calls memmove(dst.ptr, src.ptr, len) 4152 // where len is the minimum of dst.len and src.len. 4157 wuffs_base__slice_u8__copy_from_slice(wuffs_base__slice_u8 dst, in wuffs_base__slice_u8__copy_from_slice() argument 2420 swizzle_interleaved( wuffs_base__slice_u8 dst, wuffs_base__slice_u8 dst_palette, wuffs_base__slice_u8 src) const swizzle_interleaved() argument 4520 wuffs_base__pixel_swizzler__copy_1_1(wuffs_base__slice_u8 dst, wuffs_base__slice_u8 dst_palette, wuffs_base__slice_u8 src) wuffs_base__pixel_swizzler__copy_1_1() argument 4527 wuffs_base__pixel_swizzler__copy_3_1(wuffs_base__slice_u8 dst, wuffs_base__slice_u8 dst_palette, wuffs_base__slice_u8 src) wuffs_base__pixel_swizzler__copy_3_1() argument 4582 wuffs_base__pixel_swizzler__copy_4_1(wuffs_base__slice_u8 dst, wuffs_base__slice_u8 dst_palette, wuffs_base__slice_u8 src) wuffs_base__pixel_swizzler__copy_4_1() argument 4630 wuffs_base__pixel_swizzler__swap_rgbx_bgrx(wuffs_base__slice_u8 dst, wuffs_base__slice_u8 src) wuffs_base__pixel_swizzler__swap_rgbx_bgrx() argument 4725 wuffs_base__pixel_swizzler__swizzle_interleaved( const wuffs_base__pixel_swizzler* p, wuffs_base__slice_u8 dst, wuffs_base__slice_u8 dst_palette, wuffs_base__slice_u8 src) wuffs_base__pixel_swizzler__swizzle_interleaved() argument [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | heap.cc | 2101 AtomicSlot dst(dst_slot); in MoveRange() 2103 while (dst < atomic_dst_end) { in MoveRange() 2104 *dst = *src; in MoveRange() 2105 ++dst; in MoveRange() 2112 AtomicSlot dst(dst_slot + len - 1); in MoveRange() 2114 while (dst >= atomic_dst_begin) { in MoveRange() 2115 *dst = *src; in MoveRange() 2116 --dst; in MoveRange() 2151 AtomicSlot dst(dst_slot); 2153 while (dst < atomic_dst_en 7115 AllowedToBeMigrated(Map map, HeapObject obj, AllocationSpace dst) AllowedToBeMigrated() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | p2p_supplicant.c | 1414 u8 dst[ETH_ALEN]; member 1428 "P2P: Free Action frame radio work @%p (freq=%u dst=" in wpas_p2p_free_send_action_work() 1431 MAC2STR(awork->dst), MAC2STR(awork->src), in wpas_p2p_free_send_action_work() 1486 const u8 *dst, const u8 *src, in wpas_p2p_send_action_tx_status() 1511 p2p_send_action_cb(wpa_s->global->p2p, freq, dst, src, bssid, res); in wpas_p2p_send_action_tx_status() 1515 (os_memcmp(dst, wpa_s->pending_join_dev_addr, ETH_ALEN) == 0 || in wpas_p2p_send_action_tx_status() 1516 os_memcmp(dst, wpa_s->pending_join_iface_addr, ETH_ALEN) == 0) && in wpas_p2p_send_action_tx_status() 1546 if (offchannel_send_action(wpa_s, awork->freq, awork->dst, awork->src, in wpas_send_action_cb() 1559 unsigned int freq, const u8 *dst, in wpas_send_action_work() 1575 os_memcpy(awork->dst, ds in wpas_send_action_work() 1484 wpas_p2p_send_action_tx_status(struct wpa_supplicant *wpa_s, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *data, size_t data_len, enum offchannel_send_action_result result) wpas_p2p_send_action_tx_status() argument 1558 wpas_send_action_work(struct wpa_supplicant *wpa_s, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *buf, size_t len, unsigned int wait_time) wpas_send_action_work() argument 1592 wpas_send_action(void *ctx, unsigned int freq, const u8 *dst, const u8 *src, const u8 *bssid, const u8 *buf, size_t len, unsigned int wait_time, int *scheduled) wpas_send_action() argument 1980 wpas_p2p_clone_config(struct wpa_supplicant *dst, const struct wpa_supplicant *src) wpas_p2p_clone_config() argument 6991 wpas_p2p_probe_req_rx(struct wpa_supplicant *wpa_s, const u8 *addr, const u8 *dst, const u8 *bssid, const u8 *ie, size_t ie_len, unsigned int rx_freq, int ssi_signal) wpas_p2p_probe_req_rx() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vp9block.c | 1370 td->dst[0] = td->tmp_y; in ff_vp9_decode_block() 1373 td->dst[0] = f->data[0] + yoff; in ff_vp9_decode_block() 1377 td->dst[1] = td->tmp_uv[0]; in ff_vp9_decode_block() 1378 td->dst[2] = td->tmp_uv[1]; in ff_vp9_decode_block() 1381 td->dst[1] = f->data[1] + uvoff; in ff_vp9_decode_block() 1382 td->dst[2] = f->data[2] + uvoff; in ff_vp9_decode_block()
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | x86inc.asm | 139 ; cglobal foo, 2,3,7,0x40, dst, src, tmp 140 ; declares a function (foo) that automatically loads two arguments (dst and 1181 %xdefine %%dst %2 1183 %ifidn %%dst, %3 1620 ; Macros for consolidating FMA3 and FMA4 using 4-operand (dst, src1, src2, src3) syntax. 1621 ; FMA3 is only possible if dst is the same as one of the src registers.
|
/third_party/backends/backend/ |
H A D | hp5590.c | 2351 * Copy at maximum the last n lines from the src buffer to the begin of the dst 2356 copy_n_last_lines(SANE_Byte * src, SANE_Int src_len, SANE_Byte * dst, SANE_Int n, unsigned int bytes_per_line) in copy_n_last_lines() argument 2361 memcpy (dst, src1, n_copy * bytes_per_line); in copy_n_last_lines() 2378 SANE_Byte * dst = buffer2 + i * bytes_per_line; in shift_color_lines() local 2392 src = dst; in shift_color_lines() 2402 dst[p2] = src[p1]; in shift_color_lines() 2404 dst[p2 + 1] = src[p1 + 1]; in shift_color_lines()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir.c | 3181 * Helper to copy const_index[] from src to dst, without assuming they 3185 nir_intrinsic_copy_const_indices(nir_intrinsic_instr *dst, nir_intrinsic_instr *src) in nir_intrinsic_copy_const_indices() argument 3187 if (src->intrinsic == dst->intrinsic) { in nir_intrinsic_copy_const_indices() 3188 memcpy(dst->const_index, src->const_index, sizeof(dst->const_index)); in nir_intrinsic_copy_const_indices() 3193 const nir_intrinsic_info *dst_info = &nir_intrinsic_infos[dst->intrinsic]; in nir_intrinsic_copy_const_indices() 3199 /* require that dst instruction also uses the same const_index[]: */ in nir_intrinsic_copy_const_indices() 3202 dst->const_index[dst_info->index_map[i] - 1] = in nir_intrinsic_copy_const_indices()
|