/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | if_statement.cc | 15 #include "src/ast/if_statement.h" 17 #include "src/program_builder.h" 25 const Source& src, in IfStatement() 29 : Base(pid, src), in IfStatement() 49 auto src = ctx->Clone(source); in Clone() local 53 return ctx->dst->create<IfStatement>(src, cond, b, el); in Clone() 24 IfStatement(ProgramID pid, const Source& src, const Expression* cond, const BlockStatement* b, ElseStatementList else_stmts) IfStatement() argument
|
H A D | interpolate_decoration.cc | 15 #include "src/ast/interpolate_decoration.h" 19 #include "src/program_builder.h" 27 const Source& src, in InterpolateDecoration() 30 : Base(pid, src), type(ty), sampling(smpl) {} in InterpolateDecoration() 41 auto src = ctx->Clone(source); in Clone() local 42 return ctx->dst->create<InterpolateDecoration>(src, type, sampling); in Clone() 26 InterpolateDecoration(ProgramID pid, const Source& src, InterpolationType ty, InterpolationSampling smpl) InterpolateDecoration() argument
|
H A D | matrix.cc | 15 #include "src/ast/matrix.h" 17 #include "src/program_builder.h" 25 const Source& src, in Matrix() 29 : Base(pid, src), type(subtype), rows(r), columns(c) { in Matrix() 50 auto src = ctx->Clone(source); in Clone() local 52 return ctx->dst->create<Matrix>(src, ty, rows, columns); in Clone() 24 Matrix(ProgramID pid, const Source& src, const Type* subtype, uint32_t r, uint32_t c) Matrix() argument
|
H A D | pointer.cc | 15 #include "src/ast/pointer.h" 17 #include "src/program_builder.h" 25 const Source& src, in Pointer() 29 : Base(pid, src), type(subtype), storage_class(sc), access(ac) {} in Pointer() 51 auto src = ctx->Clone(source); in Clone() local 53 return ctx->dst->create<Pointer>(src, ty, storage_class, access); in Clone() 24 Pointer(ProgramID pid, const Source& src, const Type* const subtype, ast::StorageClass sc, ast::Access ac) Pointer() argument
|
H A D | struct.cc | 15 #include "src/ast/struct.h" 19 #include "src/ast/struct_block_decoration.h" 20 #include "src/program_builder.h" 28 const Source& src, in Struct() 32 : Base(pid, src, n), members(std::move(m)), decorations(std::move(decos)) { in Struct() 53 auto src = ctx->Clone(source); in Clone() local 57 return ctx->dst->create<Struct>(src, n, mem, decos); in Clone() 27 Struct(ProgramID pid, const Source& src, Symbol n, StructMemberList m, DecorationList decos) Struct() argument
|
H A D | struct_member.cc | 15 #include "src/ast/struct_member.h" 17 #include "src/program_builder.h" 25 const Source& src, in StructMember() 29 : Base(pid, src), symbol(sym), type(ty), decorations(std::move(decos)) { in StructMember() 45 auto src = ctx->Clone(source); in Clone() local 49 return ctx->dst->create<StructMember>(src, sym, ty, decos); in Clone() 24 StructMember(ProgramID pid, const Source& src, const Symbol& sym, const ast::Type* ty, DecorationList decos) StructMember() argument
|
/third_party/skia/third_party/externals/abseil-cpp/ |
H A D | conanfile.py | 41 self.copy("*.h", dst="include", src=".") 42 self.copy("*.inc", dst="include", src=".") 43 self.copy("*.a", dst="lib", src=".", keep_path=False) 44 self.copy("*.lib", dst="lib", src=".", keep_path=False)
|
/third_party/vk-gl-cts/framework/delibs/debase/ |
H A D | deMemory.h | 66 * \param src Source buffer 70 DE_INLINE void* deMemcpy (void* dst, const void* src, size_t numBytes) in deMemcpy() argument 72 return memcpy(dst, src, numBytes); in deMemcpy() 75 DE_INLINE void* deMemmove (void* dst, const void* src, size_t numBytes) in deMemmove() argument 77 return memmove(dst, src, numBytes); in deMemmove()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | runlist.c | 56 * @src: 63 static void ntfs_rl_mm(runlist_element *base, int dst, int src, int size) in ntfs_rl_mm() argument 65 if ((dst != src) && (size > 0)) in ntfs_rl_mm() 66 memmove(base + dst, base + src, size * sizeof(*base)); in ntfs_rl_mm() 74 * @src: 82 runlist_element *srcbase, int src, int size) in ntfs_rl_mc() 85 memcpy(dstbase + dst, srcbase + src, size * sizeof(*dstbase)); in ntfs_rl_mc() 154 * @src: new runlist to test for mergeability with @dst 162 static BOOL ntfs_rl_are_mergeable(runlist_element *dst, runlist_element *src) in ntfs_rl_are_mergeable() argument 164 if (!dst || !src) { in ntfs_rl_are_mergeable() 81 ntfs_rl_mc(runlist_element *dstbase, int dst, runlist_element *srcbase, int src, int size) ntfs_rl_mc() argument 196 __ntfs_rl_merge(runlist_element *dst, runlist_element *src) __ntfs_rl_merge() argument 221 ntfs_rl_append(runlist_element *dst, int dsize, runlist_element *src, int ssize, int loc) ntfs_rl_append() argument 288 ntfs_rl_insert(runlist_element *dst, int dsize, runlist_element *src, int ssize, int loc) ntfs_rl_insert() argument 384 ntfs_rl_replace(runlist_element *dst, int dsize, runlist_element *src, int ssize, int loc) ntfs_rl_replace() argument 472 ntfs_rl_split(runlist_element *dst, int dsize, runlist_element *src, int ssize, int loc) ntfs_rl_split() argument 1943 runlist_element *src; test_rl_pure_test() local [all...] |
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | macro-assembler-mips.h | 12 #include "src/codegen/assembler.h" 13 #include "src/codegen/mips/assembler-mips.h" 14 #include "src/common/globals.h" 15 #include "src/objects/contexts.h" 16 #include "src/objects/tagged-index.h" 279 void push(Register src) { in push() argument 281 sw(src, MemOperand(sp, 0)); in push() 284 void Push(Register src) { push(src); } in Push() argument 323 void Push(Register src, Conditio argument 472 SmiUntag(Register dst, Register src) SmiUntag() argument 713 Move(Register dst, Register src) Move() argument 719 Move_d(FPURegister dst, FPURegister src) Move_d() argument 725 Move_s(FPURegister dst, FPURegister src) Move_s() argument 731 Move(FPURegister dst, FPURegister src) Move() argument 733 Move(Register dst_low, Register dst_high, FPURegister src) Move() argument 738 FmoveHigh(Register dst_high, FPURegister src) FmoveHigh() argument 746 FmoveLow(Register dst_low, FPURegister src) FmoveLow() argument 1114 SmiTag(Register dst, Register src) SmiTag() argument 1152 DecodeField(Register dst, Register src) DecodeField() argument [all...] |
/third_party/ffmpeg/libavcodec/loongarch/ |
H A D | hevcdsp_lsx.h | 30 uint8_t *src, \ 91 uint8_t *src, \ 148 uint8_t *src, \ 184 uint8_t *src, \ 204 void ff_hevc_loop_filter_luma_h_8_lsx(uint8_t *src, ptrdiff_t stride, 208 void ff_hevc_loop_filter_luma_v_8_lsx(uint8_t *src, ptrdiff_t stride, 212 void ff_hevc_loop_filter_chroma_h_8_lsx(uint8_t *src, ptrdiff_t stride, 216 void ff_hevc_loop_filter_chroma_v_8_lsx(uint8_t *src, ptrdiff_t stride, 220 void ff_hevc_sao_edge_filter_8_lsx(uint8_t *dst, uint8_t *src,
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_epx.c | 57 const uint32_t *src = (const uint32_t *)in->data[p]; in epx2_slice() local 61 src_line[0] = src + src_linesize * FFMAX(slice_start - 1, 0); in epx2_slice() 62 src_line[1] = src + src_linesize * slice_start; in epx2_slice() 63 src_line[2] = src + src_linesize * FFMIN(slice_start + 1, height-1); in epx2_slice() 124 const uint32_t *src = (const uint32_t *)in->data[p]; in epx3_slice() local 128 src_line[0] = src + src_linesize * FFMAX(slice_start - 1, 0); in epx3_slice() 129 src_line[1] = src + src_linesize * slice_start; in epx3_slice() 130 src_line[2] = src + src_linesize * FFMIN(slice_start + 1, height-1); in epx3_slice() 200 AVFilterContext *ctx = outlink->src; in config_output()
|
H A D | opencl.c | 83 AVFilterContext *avctx = outlink->src; in ff_opencl_filter_config_output() 208 char *src = NULL; in ff_opencl_filter_load_program_from_file() local 223 err = av_reallocp(&src, len); in ff_opencl_filter_load_program_from_file() 227 err = snprintf(src, len, "#line 1 \"%s\"\n", filename); in ff_opencl_filter_load_program_from_file() 239 rb = fread(src + pos, 1, len - pos - 1, file); in ff_opencl_filter_load_program_from_file() 248 err = av_reallocp(&src, len); in ff_opencl_filter_load_program_from_file() 252 src[pos] = 0; in ff_opencl_filter_load_program_from_file() 254 src_const = src; in ff_opencl_filter_load_program_from_file() 259 av_freep(&src); in ff_opencl_filter_load_program_from_file()
|
/third_party/icu/icu4c/source/common/ |
H A D | unistr_cnv.cpp | 79 UnicodeString::UnicodeString(const char *src, int32_t srcLength, in UnicodeString() argument 85 if(src==NULL) { in UnicodeString() 92 srcLength=(int32_t)uprv_strlen(src); in UnicodeString() 98 doCodepageCreate(src, srcLength, cnv, errorCode); in UnicodeString() 102 doCodepageCreate(src, srcLength, cnv, errorCode); in UnicodeString() 262 const UChar *src=getArrayStart()+start, *srcLimit=src+length; in doExtract() local 278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract() 289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_io_to_temporaries.c | 57 nir_variable *src = exec_node_data(nir_variable, src_node, node); in emit_copies() local 63 if (src->data.mode == nir_var_shader_out && in emit_copies() 64 !src->data.fb_fetch_output) in emit_copies() 74 nir_copy_var(b, dest, src); in emit_copies() 202 new_interp->src[0] = nir_src_for_ssa(&new_interp_deref->dest.ssa); in emit_interp() 206 new_interp->src[1] = interp->src[1]; in emit_interp() 224 nir_deref_path_init(&interp_path, nir_src_as_deref(interp->src[0]), NULL); in fixup_interpolation_instr() 248 nir_ssa_def *load = nir_load_deref(b, nir_src_as_deref(interp->src[0])); in fixup_interpolation_instr()
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_copy_vrs_htile.c | 83 tex->src[0].src_type = nir_tex_src_coord; in build_copy_vrs_htile_shader() 84 tex->src[0].src = nir_src_for_ssa(global_id); in build_copy_vrs_htile_shader() 85 tex->src[1].src_type = nir_tex_src_lod; in build_copy_vrs_htile_shader() 86 tex->src[1].src = nir_src_for_ssa(nir_imm_int(&b, 0)); in build_copy_vrs_htile_shader() 87 tex->src[2].src_type = nir_tex_src_texture_deref; in build_copy_vrs_htile_shader() 88 tex->src[2].src = nir_src_for_ssa(input_vrs_img_deref); in build_copy_vrs_htile_shader()
|
H A D | radv_meta_fmask_expand.c | 62 tex->src[0].src_type = nir_tex_src_coord; in build_fmask_expand_compute_shader() 63 tex->src[0].src = nir_src_for_ssa(tex_coord); in build_fmask_expand_compute_shader() 64 tex->src[1].src_type = nir_tex_src_ms_index; in build_fmask_expand_compute_shader() 65 tex->src[1].src = nir_src_for_ssa(nir_imm_int(&b, i)); in build_fmask_expand_compute_shader() 66 tex->src[2].src_type = nir_tex_src_texture_deref; in build_fmask_expand_compute_shader() 67 tex->src[2].src = nir_src_for_ssa(input_img_deref); in build_fmask_expand_compute_shader()
|
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_program.h | 236 struct zink_gfx_program *src) in zink_gfx_program_reference() 241 if (pipe_reference_described(old_dst ? &old_dst->base.reference : NULL, &src->base.reference, in zink_gfx_program_reference() 246 if (dst) *dst = src; in zink_gfx_program_reference() 262 struct zink_compute_program *src) in zink_compute_program_reference() 267 if (pipe_reference_described(old_dst ? &old_dst->base.reference : NULL, &src->base.reference, in zink_compute_program_reference() 272 if (dst) *dst = src; in zink_compute_program_reference() 279 struct zink_program *src) in zink_program_reference() 281 struct zink_program *pg = src ? src : dst ? *dst : NULL; in zink_program_reference() 234 zink_gfx_program_reference(struct zink_context *ctx, struct zink_gfx_program **dst, struct zink_gfx_program *src) zink_gfx_program_reference() argument 260 zink_compute_program_reference(struct zink_context *ctx, struct zink_compute_program **dst, struct zink_compute_program *src) zink_compute_program_reference() argument 277 zink_program_reference(struct zink_context *ctx, struct zink_program **dst, struct zink_program *src) zink_program_reference() argument
|
/third_party/node/deps/icu-small/source/common/ |
H A D | unistr_cnv.cpp | 79 UnicodeString::UnicodeString(const char *src, int32_t srcLength, in UnicodeString() argument 85 if(src==nullptr) { in UnicodeString() 92 srcLength=(int32_t)uprv_strlen(src); in UnicodeString() 98 doCodepageCreate(src, srcLength, cnv, errorCode); in UnicodeString() 102 doCodepageCreate(src, srcLength, cnv, errorCode); in UnicodeString() 262 const char16_t *src=getArrayStart()+start, *srcLimit=src+length; in doExtract() local 278 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract() 289 ucnv_fromUnicode(cnv, &dest, destLimit, &src, srcLimit, 0, true, &errorCode); in doExtract()
|
/third_party/lwip/src/core/ipv4/ |
H A D | icmp.c | 89 const ip4_addr_t *src; in icmp_input() local 119 src = ip4_current_dest_addr(); in icmp_input() 124 src = netif_ip4_addr(inp); in icmp_input() 134 src = netif_ip4_addr(inp); in icmp_input() 205 /* We generate an answer by switching the dest and src ip addresses, in icmp_input() 213 ip4_addr_copy(iphdr->src, *src); in icmp_input() 250 ret = ip4_output_if(p, src, LWIP_IP_HDRINCL, in icmp_input() 371 ip4_addr_debug_print_val(ICMP_DEBUG, iphdr->src); in icmp_send_response() 386 ip4_addr_copy(iphdr_src, iphdr->src); in icmp_send_response() [all...] |
/third_party/mesa3d/src/gallium/targets/haiku-softpipe/ |
H A D | SoftwareRenderer.cpp | 112 void Blit(RasBuf32 src) in Blit() 116 x = src.orgX - orgX; in Blit() 117 y = src.orgY - orgY; in Blit() 118 dst.ClipSize(x, y, src.width, src.height); in Blit() 119 src.ClipSize(-x, -y, width, height); in Blit() 121 memcpy(dst.colors, src.colors, 4*dst.width); in Blit() 123 src.colors += src.stride; in Blit()
|
/third_party/mesa3d/src/panfrost/midgard/ |
H A D | midgard_address.c | 57 if (!alu->src[i].src.is_ssa) in mir_args_ssa() 243 ins->src[2] = nir_src_index(ctx, offset); in mir_set_offset() 262 ins->src[1] = nir_ssa_index(match.A.def); in mir_set_offset() 273 ins->src[2] = nir_ssa_index(match.B.def); in mir_set_offset() 292 mir_set_ubo_offset(midgard_instruction *ins, nir_src *src, unsigned bias) in mir_set_ubo_offset() argument 294 assert(src->is_ssa); in mir_set_ubo_offset() 295 struct mir_address match = mir_match_offset(src->ssa, false, false); in mir_set_ubo_offset() 298 ins->src[2] = nir_ssa_index(match.B.def); in mir_set_ubo_offset()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_prim_restart.c | 67 uint8_t *src = (uint8_t *) src_map; in util_translate_prim_restart_data() local 71 dst[i] = (src[i] == restart_index) ? 0xffff : src[i]; in util_translate_prim_restart_data() 75 uint16_t *src = (uint16_t *) src_map; in util_translate_prim_restart_data() local 79 dst[i] = (src[i] == restart_index) ? 0xffff : src[i]; in util_translate_prim_restart_data() 83 uint32_t *src = (uint32_t *) src_map; in util_translate_prim_restart_data() local 88 dst[i] = (src[i] == restart_index) ? 0xffffffff : src[i]; in util_translate_prim_restart_data() 142 /* Map original / src inde in util_translate_prim_restart_ib() [all...] |
/third_party/mesa3d/src/gallium/auxiliary/postprocess/ |
H A D | pp_run.c | 53 blit.src.resource = src_tex; in pp_blit() 54 blit.src.level = 0; in pp_blit() 55 blit.src.format = src_tex->format; in pp_blit() 56 blit.src.box.x = srcX0; in pp_blit() 57 blit.src.box.y = srcY0; in pp_blit() 58 blit.src.box.z = srcZ0; in pp_blit() 59 blit.src.box.width = srcX1 - srcX0; in pp_blit() 60 blit.src.box.height = srcY1 - srcY0; in pp_blit() 61 blit.src.box.depth = 1; in pp_blit()
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
H A D | etnaviv_compiler_nir.h | 85 src_index(nir_function_impl *impl, nir_src *src) in src_index() argument 87 return src->is_ssa ? src->ssa->index : (src->reg.reg->index + impl->ssa_alloc); in src_index() 109 /* src is different (only check for vecN) */ in update_swiz_mask() 110 if (is_vec && alu->src[i].src.ssa != &dest->ssa) in update_swiz_mask() 113 unsigned src_swiz = is_vec ? alu->src[i].swizzle[0] : alu->src[0].swizzle[i]; in update_swiz_mask() 139 /* src bypas in real_dest() [all...] |