/third_party/skia/tools/fm/ |
H A D | fm.cpp | 222 SkRect dst = {x*dim, y*dim, (x+1)*dim, (y+1)*dim}; in init() 225 canvas->clipRect(dst, /*doAntiAlias=*/true); in init() 226 canvas->concat(SkMatrix::RectToRect(SkRect::MakeSize(animation->size()), dst, in init()
|
/third_party/pulseaudio/src/modules/ |
H A D | module-virtual-sink.c | 214 float *src, *dst; in sink_input_pop_cb() local 259 dst = pa_memblock_acquire(chunk->memblock); in sink_input_pop_cb() 266 dst+c, u->channels * sizeof(float), in sink_input_pop_cb()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | evp.rs | 274 pub fn EVP_MD_CTX_copy_ex(dst: *mut EVP_MD_CTX, src: *const EVP_MD_CTX) -> c_int; in EVP_MD_CTX_copy_ex() 621 pub fn EVP_EncodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; in EVP_EncodeBlock() 622 pub fn EVP_DecodeBlock(dst: *mut c_uchar, src: *const c_uchar, src_len: c_int) -> c_int; in EVP_DecodeBlock()
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | print.rs | 414 let mut dst = String::new(); in roundtrip_with() variables 415 printer.print(&ast, &mut dst).unwrap(); in roundtrip_with() 416 assert_eq!(given, dst); in roundtrip_with()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
H A D | common.c | 452 char *dst = (char *) str; in wpa_unicode2ascii_inplace() local 454 *dst++ = (char) *str++; in wpa_unicode2ascii_inplace() 455 *dst = '\0'; in wpa_unicode2ascii_inplace()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ap_drv_ops.h | 107 unsigned int wait, const u8 *dst, const u8 *data, 111 unsigned int wait, const u8 *dst, 139 int add_buf_data(struct wpabuf **dst, const u8 *data, size_t len);
|
H A D | fils_hlp.c | 479 struct sta_info *sta, const u8 *dst, in fils_process_hlp_udp() 510 struct sta_info *sta, const u8 *dst, in fils_process_hlp_ip() 532 return fils_process_hlp_udp(hapd, sta, dst, pos, len); in fils_process_hlp_ip() 545 wpa_printf(MSG_DEBUG, "FILS: HLP request from " MACSTR_SEC " (dst=" MACSTR_SEC in fils_process_hlp_req() 478 fils_process_hlp_udp(struct hostapd_data *hapd, struct sta_info *sta, const u8 *dst, const u8 *pos, size_t len) fils_process_hlp_udp() argument 509 fils_process_hlp_ip(struct hostapd_data *hapd, struct sta_info *sta, const u8 *dst, const u8 *pos, size_t len) fils_process_hlp_ip() argument
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglChooseConfigReference.cpp | 511 void chooseConfigReference (const Library& egl, EGLDisplay display, std::vector<EGLConfig>& dst, const std::vector<std::pair<EGLenum, EGLint> >& attributes) in chooseConfigReference() argument 540 // Write to dst list in chooseConfigReference() 541 dst.resize(filteredConfigs.size()); in chooseConfigReference() 543 dst[ndx] = filteredConfigs[ndx].getEglConfig(); in chooseConfigReference()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | fils_hlp.c | 479 struct sta_info *sta, const u8 *dst, in fils_process_hlp_udp() 510 struct sta_info *sta, const u8 *dst, in fils_process_hlp_ip() 532 return fils_process_hlp_udp(hapd, sta, dst, pos, len); in fils_process_hlp_ip() 545 wpa_printf(MSG_DEBUG, "FILS: HLP request from " MACSTR " (dst=" MACSTR in fils_process_hlp_req() 478 fils_process_hlp_udp(struct hostapd_data *hapd, struct sta_info *sta, const u8 *dst, const u8 *pos, size_t len) fils_process_hlp_udp() argument 509 fils_process_hlp_ip(struct hostapd_data *hapd, struct sta_info *sta, const u8 *dst, const u8 *pos, size_t len) fils_process_hlp_ip() argument
|
/third_party/ffmpeg/libavcodec/ |
H A D | ffv1dec.c | 983 uint8_t *dst[4]; in decode_frame() local 989 dst[j] = p->data[j] + p->linesize[j] * in decode_frame() 996 dst[1] = p->data[1]; in decode_frame() 999 av_image_copy(dst, p->linesize, src, in decode_frame() 1047 static int update_thread_context(AVCodecContext *dst, const AVCodecContext *src) in update_thread_context() argument 1050 FFV1Context *fdst = dst->priv_data; in update_thread_context() 1053 if (dst == src) in update_thread_context() 1080 ff_thread_release_ext_buffer(dst, &fdst->picture); in update_thread_context()
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_afftdn.c | 604 AVFilterContext *ctx = inlink->dst; in config_input() 984 double *dst = dnch->out_samples; in filter_channel() local 1003 dst[m] += s->window[m] * fft_in[m] / (1LL << 23); in filter_channel() 1011 AVFilterContext *ctx = inlink->dst; in output_frame() 1111 float *dst = (float *)out->extended_data[ch]; in output_frame() local 1116 dst[m] = orig[m]; in output_frame() 1120 dst[m] = src[m]; in output_frame() 1124 dst[m] = orig[m] - src[m]; in output_frame()
|
/third_party/ffmpeg/libavdevice/ |
H A D | decklink_dec.cpp | 194 static void extract_luma_from_v210(uint16_t *dst, const uint8_t *src, int width) in extract_luma_from_v210() argument 198 *dst++ = (src[1] >> 2) + ((src[2] & 15) << 6); in extract_luma_from_v210() 199 *dst++ = src[4] + ((src[5] & 3) << 8); in extract_luma_from_v210() 200 *dst++ = (src[6] >> 4) + ((src[7] & 63) << 4); in extract_luma_from_v210() 205 static void unpack_v210(uint16_t *dst, const uint8_t *src, int width) in unpack_v210() argument 209 *dst++ = src[0] + ((src[1] & 3) << 8); in unpack_v210() 210 *dst++ = (src[1] >> 2) + ((src[2] & 15) << 6); in unpack_v210() 211 *dst++ = (src[2] >> 4) + ((src[3] & 63) << 4); in unpack_v210()
|
/third_party/icu/icu4c/source/common/unicode/ |
H A D | unistr.h | 1447 * [`start`, `start + length`) into the array `dst`, 1449 * If the string aliases to `dst` itself as an external buffer, 1454 * @param dst array in which to copy characters. The length of `dst` 1456 * @param dstStart the offset in `dst` where the first character 1462 Char16Ptr dst, 1505 * into the array `dst`, beginning at `dstStart`. 1508 * @param dst array in which to copy characters. The length of `dst` 1510 * @param dstStart the offset in `dst` wher 4479 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4492 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/tegra/ |
H A D | tegra_context.c | 710 struct tegra_resource *dst = to_tegra_resource(pdst); in tegra_resource_copy_region() local 713 context->gpu->resource_copy_region(context->gpu, dst->gpu, dst_level, dstx, in tegra_resource_copy_region() 726 info.dst.resource = tegra_resource_unwrap(info.dst.resource); in tegra_blit() 755 struct tegra_surface *dst = to_tegra_surface(pdst); in tegra_clear_render_target() local 757 context->gpu->clear_render_target(context->gpu, dst->gpu, color, dstx, in tegra_clear_render_target() 774 struct tegra_surface *dst = to_tegra_surface(pdst); in tegra_clear_depth_stencil() local 776 context->gpu->clear_depth_stencil(context->gpu, dst->gpu, flags, depth, in tegra_clear_depth_stencil()
|
/third_party/mesa3d/src/gallium/drivers/virgl/ |
H A D | virgl_encode.c | 1191 virgl_encoder_write_dword(ctx->cbuf, blit->dst.level); in virgl_encode_blit() 1192 virgl_encoder_write_dword(ctx->cbuf, pipe_to_virgl_format(blit->dst.format)); in virgl_encode_blit() 1193 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.x); in virgl_encode_blit() 1194 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.y); in virgl_encode_blit() 1195 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.z); in virgl_encode_blit() 1196 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.width); in virgl_encode_blit() 1197 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.height); in virgl_encode_blit() 1198 virgl_encoder_write_dword(ctx->cbuf, blit->dst.box.depth); in virgl_encode_blit()
|
/third_party/node/deps/icu-small/source/common/unicode/ |
H A D | unistr.h | 1447 * [`start`, `start + length`) into the array `dst`, 1449 * If the string aliases to `dst` itself as an external buffer, 1454 * @param dst array in which to copy characters. The length of `dst` 1456 * @param dstStart the offset in `dst` where the first character 1462 Char16Ptr dst, 1505 * into the array `dst`, beginning at `dstStart`. 1508 * @param dst array in which to copy characters. The length of `dst` 1510 * @param dstStart the offset in `dst` wher 4506 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4519 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_resource.c | 1127 struct crocus_resource *dst = (void *) p_dst; in crocus_replace_buffer_storage() local 1130 assert(memcmp(&dst->surf, &src->surf, sizeof(dst->surf)) == 0); in crocus_replace_buffer_storage() 1132 struct crocus_bo *old_bo = dst->bo; in crocus_replace_buffer_storage() 1136 dst->bo = src->bo; in crocus_replace_buffer_storage() 1141 screen->vtbl.rebind_buffer(ice, dst); in crocus_replace_buffer_storage() 1485 char *dst = in crocus_unmap_tiled_memcpy() local 1494 isl_memcpy_linear_to_tiled(x1, x2, y1, y2, dst, ptr, in crocus_unmap_tiled_memcpy()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | pmeth_lib.c | 445 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src) in EVP_PKEY_meth_copy() argument 447 int pkey_id = dst->pkey_id; in EVP_PKEY_meth_copy() 448 int flags = dst->flags; in EVP_PKEY_meth_copy() 450 *dst = *src; in EVP_PKEY_meth_copy() 453 dst->pkey_id = pkey_id; in EVP_PKEY_meth_copy() 454 dst->flags = flags; in EVP_PKEY_meth_copy() 1678 int (*copy) (EVP_PKEY_CTX *dst, in EVP_PKEY_meth_set_copy() 1863 int (**pcopy) (EVP_PKEY_CTX *dst, in EVP_PKEY_meth_get_copy() 1677 EVP_PKEY_meth_set_copy(EVP_PKEY_METHOD *pmeth, int (*copy) (EVP_PKEY_CTX *dst, const EVP_PKEY_CTX *src)) EVP_PKEY_meth_set_copy() argument 1862 EVP_PKEY_meth_get_copy(const EVP_PKEY_METHOD *pmeth, int (**pcopy) (EVP_PKEY_CTX *dst, const EVP_PKEY_CTX *src)) EVP_PKEY_meth_get_copy() argument
|
/third_party/openssl/crypto/evp/ |
H A D | pmeth_lib.c | 444 void EVP_PKEY_meth_copy(EVP_PKEY_METHOD *dst, const EVP_PKEY_METHOD *src) in EVP_PKEY_meth_copy() argument 446 int pkey_id = dst->pkey_id; in EVP_PKEY_meth_copy() 447 int flags = dst->flags; in EVP_PKEY_meth_copy() 449 *dst = *src; in EVP_PKEY_meth_copy() 452 dst->pkey_id = pkey_id; in EVP_PKEY_meth_copy() 453 dst->flags = flags; in EVP_PKEY_meth_copy() 1677 int (*copy) (EVP_PKEY_CTX *dst, in EVP_PKEY_meth_set_copy() 1862 int (**pcopy) (EVP_PKEY_CTX *dst, in EVP_PKEY_meth_get_copy() 1676 EVP_PKEY_meth_set_copy(EVP_PKEY_METHOD *pmeth, int (*copy) (EVP_PKEY_CTX *dst, const EVP_PKEY_CTX *src)) EVP_PKEY_meth_set_copy() argument 1861 EVP_PKEY_meth_get_copy(const EVP_PKEY_METHOD *pmeth, int (**pcopy) (EVP_PKEY_CTX *dst, const EVP_PKEY_CTX *src)) EVP_PKEY_meth_get_copy() argument
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
H A D | unistr.h | 1447 * [`start`, `start + length`) into the array `dst`, 1449 * If the string aliases to `dst` itself as an external buffer, 1454 * @param dst array in which to copy characters. The length of `dst` 1456 * @param dstStart the offset in `dst` where the first character 1462 Char16Ptr dst, 1505 * into the array `dst`, beginning at `dstStart`. 1508 * @param dst array in which to copy characters. The length of `dst` 1510 * @param dstStart the offset in `dst` wher 4479 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const extract() argument 4492 extractBetween(int32_t start, int32_t limit, char16_t *dst, int32_t dstStart) const extractBetween() argument [all...] |
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderExecUtil.cpp | 708 void log (tcu::TestLog& dst) const { dst << m_program; } in log() 737 void log (tcu::TestLog& dst) const { dst << m_program; } in log() 778 void log (tcu::TestLog& dst) const { dst << m_program; } in log() 820 void log (tcu::TestLog& dst) const { dst << m_program; } in log()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_tcp.c | 342 struct sockaddr_in *dst; in dpp_ipaddr_to_sockaddr() local 349 dst = (struct sockaddr_in *) addr; in dpp_ipaddr_to_sockaddr() 350 os_memset(dst, 0, sizeof(*dst)); in dpp_ipaddr_to_sockaddr() 351 dst->sin_family = AF_INET; in dpp_ipaddr_to_sockaddr() 352 dst->sin_addr.s_addr = ipaddr->u.v4.s_addr; in dpp_ipaddr_to_sockaddr() 353 dst->sin_port = htons(port); in dpp_ipaddr_to_sockaddr() 354 *addrlen = sizeof(*dst); in dpp_ipaddr_to_sockaddr()
|
/third_party/python/Modules/clinic/ |
H A D | posixmodule.c.h | 1034 "link($module, /, src, dst, *, src_dir_fd=None, dst_dir_fd=None,\n" 1041 " descriptor open to a directory, and the respective path string (src or dst)\n" 1054 os_link_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd, 1061 static const char * const _keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", "follow_symlinks", NULL}; in os_link() 1066 path_t dst = PATH_T_INITIALIZE("link", "dst", 0, 0); in os_link() local 1078 if (!path_converter(args[1], &dst)) { in os_link() 1105 return_value = os_link_impl(module, &src, &dst, src_dir_fd, dst_dir_fd, follow_symlinks); in os_link() 1110 /* Cleanup for dst */ in os_link() 1111 path_cleanup(&dst); in os_link() 1573 path_t dst = PATH_T_INITIALIZE("rename", "dst", 0, 0); os_rename() local 1641 path_t dst = PATH_T_INITIALIZE("replace", "dst", 0, 0); os_replace() local 4292 path_t dst = PATH_T_INITIALIZE("symlink", "dst", 0, 0); os_symlink() local 5746 int dst; os_copy_file_range() local 5837 int dst; os_splice() local [all...] |
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_physical_device.c | 2247 VkBaseOutStructure *dst = (void *)&local_info->format; in vn_physical_device_fix_image_format_info() local 2283 dst->pNext = pnext; in vn_physical_device_fix_image_format_info() 2284 dst = pnext; in vn_physical_device_fix_image_format_info() 2296 dst->pNext = (void *)&local_info->modifier; in vn_physical_device_fix_image_format_info() 2297 dst = dst->pNext; in vn_physical_device_fix_image_format_info() 2323 dst->pNext = (void *)list; in vn_physical_device_fix_image_format_info() 2324 dst = dst->pNext; in vn_physical_device_fix_image_format_info() 2329 dst in vn_physical_device_fix_image_format_info() [all...] |
/third_party/node/deps/openssl/openssl/ |
H A D | Configure | 2634 dst => 'sources' } }, 2636 dst => 'sources' }, 2641 dst => 'shared_sources' } }, 2643 dst => 'sources' } }, 2645 dst => 'sources' } } 2648 next if ($intent->{$kind}->{dst} eq 'shared_sources' 2652 my $dst = $intent->{$kind}->{dst}; 2672 $unified_info{$dst}->{$prod}->{$newobj} = 1; 2702 $unified_info{$dst} [all...] |