/third_party/curl/lib/ |
H A D | mime.c | 1200 curl_mimepart *dst, const curl_mimepart *src) in Curl_mime_duppart() 1207 DEBUGASSERT(dst); in Curl_mime_duppart() 1214 res = curl_mime_data(dst, src->data, (size_t) src->datasize); in Curl_mime_duppart() 1217 res = curl_mime_filedata(dst, src->data); in Curl_mime_duppart() 1223 res = curl_mime_data_cb(dst, src->datasize, src->readfunc, in Curl_mime_duppart() 1230 res = mime? curl_mime_subparts(dst, mime): CURLE_OUT_OF_MEMORY; in Curl_mime_duppart() 1253 res = curl_mime_headers(dst, hdrs, TRUE); in Curl_mime_duppart() 1261 dst->encoder = src->encoder; in Curl_mime_duppart() 1262 res = curl_mime_type(dst, src->mimetype); in Curl_mime_duppart() 1265 res = curl_mime_name(dst, sr in Curl_mime_duppart() 1199 Curl_mime_duppart(struct Curl_easy *data, curl_mimepart *dst, const curl_mimepart *src) Curl_mime_duppart() argument [all...] |
/third_party/mbedtls/library/ |
H A D | x509_crt.c | 2723 static int x509_inet_pton_ipv4(const char *src, void *dst); 2728 static int x509_inet_pton_ipv6(const char *src, void *dst) in x509_inet_pton_ipv6() argument 2821 memcpy(dst, addr, sizeof(addr)); in x509_inet_pton_ipv6() 2825 static int x509_inet_pton_ipv4(const char *src, void *dst) in x509_inet_pton_ipv4() argument 2828 uint8_t *res = (uint8_t *) dst; in x509_inet_pton_ipv4() 2863 static int x509_inet_pton_ipv6(const char *src, void *dst) in x509_inet_pton_ipv6() argument 2865 return inet_pton(AF_INET6, src, dst) == 1 ? 0 : -1; in x509_inet_pton_ipv6() 2868 static int x509_inet_pton_ipv4(const char *src, void *dst) in x509_inet_pton_ipv4() argument 2870 return inet_pton(AF_INET, src, dst) == 1 ? 0 : -1; in x509_inet_pton_ipv4() 2875 size_t mbedtls_x509_crt_parse_cn_inet_pton(const char *cn, void *dst) in mbedtls_x509_crt_parse_cn_inet_pton() argument [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_split_vars.c | 651 unsigned dst_level, nir_deref_instr *dst, in emit_split_copies() 661 dst = nir_build_deref_follower(b, dst, dst_p); in emit_split_copies() 675 nir_copy_deref(b, dst, src); in emit_split_copies() 690 nir_build_deref_array_imm(b, dst, i), in emit_split_copies() 697 nir_build_deref_array_wildcard(b, dst), in emit_split_copies() 1239 nir_deref_instr *dst = nir_src_as_deref(intrin->src[0]); in find_used_components_impl() local 1241 mark_deref_used(dst, 0, ~0, src, var_usage_map, modes, mem_ctx); in find_used_components_impl() 1242 mark_deref_used(src, ~0, 0, dst, var_usage_map, modes, mem_ctx); in find_used_components_impl() 1511 nir_deref_instr *dst in shrink_vec_var_access_impl() local 649 emit_split_copies(nir_builder *b, struct array_var_info *dst_info, nir_deref_path *dst_path, unsigned dst_level, nir_deref_instr *dst, struct array_var_info *src_info, nir_deref_path *src_path, unsigned src_level, nir_deref_instr *src) emit_split_copies() argument [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | isolate.h | 193 #define ASSIGN_RETURN_ON_SCHEDULED_EXCEPTION_VALUE(isolate, dst, call, value) \ 196 if (!(call).ToLocal(&dst)) { \ 243 #define ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, dst, call, value) \ 245 if (!(call).ToHandle(&dst)) { \ 251 #define ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, dst, call) \ 254 ASSIGN_RETURN_ON_EXCEPTION_VALUE(__isolate__, dst, call, \ 258 #define ASSIGN_RETURN_ON_EXCEPTION(isolate, dst, call, T) \ 259 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, dst, call, MaybeHandle<T>()) 385 #define MAYBE_ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate, dst, call, value) \ 387 if (!(call).To(&dst)) { \ [all...] |
/third_party/pcre2/pcre2/src/ |
H A D | pcre2_jit_simd_inc.h | 958 static inline vect_t fast_forward_char_pair_compare(compare_type ctype, vect_t dst, vect_t cmp1, vect_t cmp2) 962 vect_t tmp = dst; 963 dst = VCEQQ(dst, cmp1); 965 dst = VORRQ(dst, tmp); 966 return dst; 970 dst = VORRQ(dst, cmp2); 971 dst [all...] |
/third_party/skia/gm/ |
H A D | wacky_yuv_formats.cpp | 424 SkColor4f* dst = (SkColor4f *) planes->fFull.getAddr(0, 0); in extract_planes() local 439 dst->fR = yuva[0] / 255.0f; in extract_planes() 440 dst->fG = yuva[1] / 255.0f; in extract_planes() 441 dst->fB = yuva[2] / 255.0f; in extract_planes() 442 dst->fA = yuva[3] / 255.0f; in extract_planes() 443 ++dst; in extract_planes() 447 dst = (SkColor4f *) planes->fQuarter.getAddr(0, 0); in extract_planes() 477 dst->fR = yAccum / (4.0f * 255.0f); in extract_planes() 478 dst->fG = uAccum / (4.0f * 255.0f); in extract_planes() 479 dst in extract_planes() [all...] |
/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 774 SkRect src, dst; in make_fuzz_imageFilter() local 775 fuzz->next(&src, &dst); in make_fuzz_imageFilter() 777 return SkImageFilters::Tile(src, dst, std::move(input)); in make_fuzz_imageFilter() 1273 SkRect dst; 1275 fuzz->next(&src, &dst, &usePaint); 1282 canvas->drawImageRect(img.get(), SkRect::Make(src), dst, SkSamplingOptions(), 1289 SkRect dst; 1303 fuzz->next(&dst); 1304 canvas->drawImageNine(img.get(), center, dst, SkFilterMode::kNearest, 1311 SkRect dst; [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server.c | 113 static int eap_copy_buf(struct wpabuf **dst, const struct wpabuf *src) in eap_copy_buf() argument 118 wpabuf_free(*dst); in eap_copy_buf() 119 *dst = wpabuf_dup(src); in eap_copy_buf() 120 return *dst ? 0 : -1; in eap_copy_buf() 124 static int eap_copy_data(u8 **dst, size_t *dst_len, in eap_copy_data() argument 130 os_free(*dst); in eap_copy_data() 131 *dst = os_malloc(src_len); in eap_copy_data() 132 if (*dst) { in eap_copy_data() 133 os_memcpy(*dst, src, src_len); in eap_copy_data() 142 #define EAP_COPY(dst, sr [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server.c | 112 static int eap_copy_buf(struct wpabuf **dst, const struct wpabuf *src) in eap_copy_buf() argument 117 wpabuf_free(*dst); in eap_copy_buf() 118 *dst = wpabuf_dup(src); in eap_copy_buf() 119 return *dst ? 0 : -1; in eap_copy_buf() 123 static int eap_copy_data(u8 **dst, size_t *dst_len, in eap_copy_data() argument 129 os_free(*dst); in eap_copy_data() 130 *dst = os_malloc(src_len); in eap_copy_data() 131 if (*dst) { in eap_copy_data() 132 os_memcpy(*dst, src, src_len); in eap_copy_data() 141 #define EAP_COPY(dst, sr [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_context.c | 3194 zink_get_cmdbuf(struct zink_context *ctx, struct zink_resource *src, struct zink_resource *dst) in zink_get_cmdbuf() argument 3199 if (dst) in zink_get_cmdbuf() 3200 unordered_exec &= unordered_res_exec(ctx, dst, true); in zink_get_cmdbuf() 3203 if (dst) in zink_get_cmdbuf() 3204 dst->obj->unordered_write = unordered_exec; in zink_get_cmdbuf() 3528 VkAccessFlags dst = flags == PIPE_TEXTURE_BARRIER_FRAMEBUFFER ? in zink_texture_barrier() local 3536 if (ctx->rp_clears_enabled && dst == VK_ACCESS_INPUT_ATTACHMENT_READ_BIT) in zink_texture_barrier() 3553 dmb.dstAccessMask = dst; in zink_texture_barrier() 3571 bmb.dstAccessMask = dst; in zink_texture_barrier() 3585 mem_barrier(struct zink_context *ctx, VkPipelineStageFlags src_stage, VkPipelineStageFlags dst_stage, VkAccessFlags src, VkAccessFlags dst) in mem_barrier() argument 3607 VkPipelineStageFlags dst = is_compute ? cs_flags : gfx_flags; zink_flush_memory_barrier() local 3985 zink_copy_buffer(struct zink_context *ctx, struct zink_resource *dst, struct zink_resource *src, unsigned dst_offset, unsigned src_offset, unsigned size) zink_copy_buffer() argument 4004 zink_copy_image_buffer(struct zink_context *ctx, struct zink_resource *dst, struct zink_resource *src, unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, unsigned src_level, const struct pipe_box *src_box, enum pipe_map_flags map_flags) zink_copy_image_buffer() argument 4118 struct zink_resource *dst = zink_resource(pdst); zink_resource_copy_region() local 4355 zink_context_replace_buffer_storage(struct pipe_context *pctx, struct pipe_resource *dst, struct pipe_resource *src, unsigned num_rebinds, uint32_t rebind_mask, uint32_t delete_buffer_id) zink_context_replace_buffer_storage() argument [all...] |
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | instruction-selector-x64.cc | 3204 InstructionOperand dst = g.DefineAsRegister(node); in VisitS128Const() local 3206 Emit(kX64S128Zero, dst); in VisitS128Const() 3208 Emit(kX64S128AllOnes, dst); in VisitS128Const() 3210 Emit(kX64S128Const, dst, g.UseImmediate(val[0]), g.UseImmediate(val[1]), in VisitS128Const() 3280 // When no-AVX, define dst == src to save a move. in VisitF64x2ReplaceLane() 3281 InstructionOperand dst = in VisitF64x2ReplaceLane() local 3283 Emit(kX64F64x2ReplaceLane, dst, g.UseRegister(node->InputAt(0)), in VisitF64x2ReplaceLane() 3308 InstructionOperand dst = IsSupported(AVX) ? g.DefineAsRegister(node) \ 3311 Emit(kX64##Opcode, dst, g.UseRegister(node->InputAt(0)), \ 3314 Emit(kX64##Opcode, dst, 3383 InstructionOperand dst = VisitS128Select() local 3433 InstructionOperand dst = VisitI64x2ShrS() local 3759 InstructionOperand dst = VisitI8x16Shuffle() local 3865 InstructionOperand dst = selector->IsSupported(AVX) VisitMinOrMax() local 3914 InstructionOperand dst = CpuFeatures::IsSupported(AVX) VisitI32x4ExtAddPairwiseI16x8S() local 3922 InstructionOperand dst = CpuFeatures::IsSupported(AVX) VisitI32x4ExtAddPairwiseI16x8U() local 3937 InstructionOperand dst = CpuFeatures::IsSupported(AVX) VisitI16x8ExtAddPairwiseI8x16U() local 3952 InstructionOperand dst = VisitF64x2ConvertLowI32x4U() local 3971 InstructionOperand dst = CpuFeatures::IsSupported(AVX) VisitI32x4TruncSatF64x2UZero() local [all...] |
/third_party/glslang/glslang/HLSL/ |
H A D | hlslParseHelper.cpp | 2192 TIntermAggregate* dst = new TIntermAggregate(EOpConstructVec4); in transformEntryPoint() local 2193 dst->getSequence().push_back(pos_xyz); in transformEntryPoint() 2194 dst->getSequence().push_back(recip_w); in transformEntryPoint() 2195 dst->setType(TType(EbtFloat, EvqTemporary, 4)); in transformEntryPoint() 2196 dst->setLoc(loc); in transformEntryPoint() 2197 input = dst; in transformEntryPoint() 5044 TIntermAggregate* dst = new TIntermAggregate(EOpConstructVec4); in decomposeIntrinsic() local 5046 dst->getSequence().push_back(intermediate.addConstantUnion(1.0, EbtFloat, loc, true)); in decomposeIntrinsic() 5047 dst->getSequence().push_back(handleBinaryMath(loc, "mul", EOpMul, src0y, src1y)); in decomposeIntrinsic() 5048 dst in decomposeIntrinsic() 5175 TIntermAggregate* dst = new TIntermAggregate(EOpConstructVec4); decomposeIntrinsic() local 6786 mergeQualifiers(TQualifier& dst, const TQualifier& src) mergeQualifiers() argument 7486 mergeObjectLayoutQualifiers(TQualifier& dst, const TQualifier& src, bool inheritOnly) mergeObjectLayoutQualifiers() argument [all...] |
/third_party/skia/src/gpu/geometry/ |
H A D | GrTriangulator.cpp | 710 static void rewind(EdgeList* activeEdges, Vertex** current, Vertex* dst, const Comparator& c) { in rewind() argument 711 if (!current || *current == dst || c.sweep_lt((*current)->fPoint, dst->fPoint)) { in rewind() 715 TESS_LOG("rewinding active edges from vertex %g to vertex %g\n", v->fID, dst->fID); in rewind() 716 while (v != dst) { in rewind() 726 if (c.sweep_lt(top->fPoint, dst->fPoint) && in rewind() 729 dst = top; in rewind() 968 void GrTriangulator::mergeVertices(Vertex* src, Vertex* dst, VertexList* mesh, in mergeVertices() argument 971 src->fPoint.fX, src->fPoint.fY, src->fID, dst->fID); in mergeVertices() 972 dst in mergeVertices() [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkLightingImageFilter.cpp | 288 SkBitmap* dst, in lightBitmap() 291 SkASSERT(dst->width() == bounds.width() && dst->height() == bounds.height()); in lightBitmap() 296 SkPMColor* dptr = dst->getAddr32(0, 0); in lightBitmap() 378 SkBitmap* dst, in lightBitmap() 383 lightingType, light, src, dst, surfaceScale, bounds); in lightBitmap() 386 lightingType, light, src, dst, surfaceScale, bounds); in lightBitmap() 1310 SkBitmap dst; in onFilterImage() local 1311 if (!dst.tryAllocPixels(info)) { in onFilterImage() 1324 &dst, in onFilterImage() 285 lightBitmap(const BaseLightingType& lightingType, const SkImageFilterLight* l, const SkBitmap& src, SkBitmap* dst, SkScalar surfaceScale, const SkIRect& bounds) lightBitmap() argument 375 lightBitmap(const BaseLightingType& lightingType, const SkImageFilterLight* light, const SkBitmap& src, SkBitmap* dst, SkScalar surfaceScale, const SkIRect& bounds) lightBitmap() argument 1451 SkBitmap dst; onFilterImage() local [all...] |
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fTextureMultisampleTests.cpp | 150 void drawSample (tcu::Surface& dst, int sampleNdx); 475 void SamplePosRasterizationTest::drawSample (tcu::Surface& dst, int sampleNdx) in drawSample() argument 518 glu::readPixels (m_context.getRenderContext(), 0, 0, dst.getAccess()); in drawSample() 566 void drawSample (tcu::Surface& dst, int sample); 1000 void SampleMaskCase::drawSample (tcu::Surface& dst, int sample) 1043 glu::readPixels (m_context.getRenderContext(), 0, 0, dst.getAccess()); 1113 void sampleTexture (tcu::Surface& dst, float value); 1114 bool verifyImage (const tcu::Surface& dst); 1516 void MultisampleTextureUsageCase::sampleTexture (tcu::Surface& dst, float value) 1574 glu::readPixels(m_context.getRenderContext(), 0, 0, dst [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | dpp_supplicant.c | 38 unsigned int freq, const u8 *dst, 46 unsigned int freq, const u8 *dst, 84 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR in wpas_dpp_qr_code() 199 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR in wpas_dpp_auth_resp_retry_timeout() 399 DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d", in wpas_dpp_send_conn_status_result() 427 unsigned int freq, const u8 *dst, in wpas_dpp_tx_status() 438 wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR_SEC in wpas_dpp_tx_status() 439 " result=%s", freq, MAC2STR_SEC(dst), res_txt); in wpas_dpp_tx_status() 440 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR in wpas_dpp_tx_status() 441 " freq=%u result=%s", MAC2STR(dst), fre in wpas_dpp_tx_status() 426 wpas_dpp_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_dpp_tx_status() argument 660 const u8 *dst; wpas_dpp_auth_init_next() local 2602 wpas_dpp_tx_pkex_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_dpp_tx_pkex_status() argument 3106 wpas_dpp_tx_introduction_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_dpp_tx_introduction_status() argument 3532 wpas_dpp_chirp_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_dpp_chirp_tx_status() argument [all...] |
/device/soc/hisilicon/hi3516dv300/sdk_linux/sample/taurus/ai_sample/mpp_help/include/ |
H A D | ive_img.h | 80 int ImgYuvCrop(const IVE_IMAGE_S *src, IVE_IMAGE_S *dst, const RectBox* origBox);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/mbedtls/include/mbedtls/ |
H A D | md_internal.h | 81 void (*clone_func)( void *dst, const void *src );
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/ |
H A D | mali_kbase_kinstr_prfcnt.h | 110 * @dst: Non-NULL pointer to the sample's dump buffer object. 119 int kbasep_kinstr_prfcnt_set_block_meta_items(struct kbase_hwcnt_dump_buffer *dst,
|
/third_party/ffmpeg/libavcodec/ |
H A D | h264chroma.h | 25 typedef void (*h264_chroma_mc_func)(uint8_t *dst /*align 8*/, uint8_t *src /*align 1*/, ptrdiff_t srcStride, int h, int x, int y);
|
H A D | packet_internal.h | 48 int (*copy)(AVPacket *dst, const AVPacket *src),
|
H A D | xface.h | 99 void ff_xface_generate_face(uint8_t *dst, uint8_t * const src);
|
H A D | mqc.h | 58 int ff_mqc_flush_to(MqcState *mqc, uint8_t *dst, int *dst_len);
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_volume.h | 86 void (*scale_samples)(uint8_t *dst, const uint8_t *src, int nb_samples,
|
H A D | convolution.h | 57 void (*filter[4])(uint8_t *dst, int width,
|