Home
last modified time | relevance | path

Searched refs:dst (Results 3301 - 3325 of 10053) sorted by relevance

1...<<131132133134135136137138139140>>...403

/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_if_conversion.cpp231 // PREDSET has 3 dst operands in our IR (value written to gpr, in run_on()
240 predset->dst[2] = NULL; in run_on()
242 newpredset->dst[0] = NULL; in run_on()
243 newpredset->dst[1] = NULL; in run_on()
277 assert(phi->dst.size() == 1 || phi->src.size() == 2); in convert_phi()
279 value *d = phi->dst[0]; in convert_phi()
300 n->dst.push_back(d); in convert_phi()
H A Dsb_peephole.cpp59 for(vvec::iterator I = f->dst.begin(), E = f->dst.end(); I != E; ++I) { in run_on()
72 if (!a->dst[0]) { in run_on()
106 ns->dst[0] = f2i->dst[0]; in convert_float_setcc()
107 ns->dst[0]->def = ns; in convert_float_setcc()
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dradeon_video.c95 void *src = NULL, *dst = NULL; in rvid_resize_buffer() local
105 dst = ws->buffer_map(ws, new_buf->res->buf, cs, in rvid_resize_buffer()
107 if (!dst) in rvid_resize_buffer()
110 memcpy(dst, src, bytes); in rvid_resize_buffer()
113 dst += bytes; in rvid_resize_buffer()
114 memset(dst, 0, new_size); in rvid_resize_buffer()
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_test_dma_perf.c154 struct pipe_resource *dst, *src; in si_test_dma_perf() local
168 dst = pipe_aligned_buffer_create(screen, flags, dst_usage, size, 256); in si_test_dma_perf()
185 si_cp_dma_copy_buffer(sctx, dst, src, 0, 0, size, SI_OP_SYNC_BEFORE_AFTER, in si_test_dma_perf()
188 si_cp_dma_clear_buffer(sctx, &sctx->gfx_cs, dst, 0, size, clear_value, in si_test_dma_perf()
214 sb[0].buffer = dst; in si_test_dma_perf()
245 pipe_resource_reference(&dst, NULL); in si_test_dma_perf()
278 printf("get_best_clear_for_%s(enum radeon_bo_domain dst, uint64_t size64, bool async, bool " in si_test_dma_perf()
287 puts(" if (dst == RADEON_DOMAIN_VRAM) {"); in si_test_dma_perf()
294 printf("get_best_copy_for_%s(enum radeon_bo_domain dst, enum radeon_bo_domain src,\n", in si_test_dma_perf()
299 puts(" if (src == RADEON_DOMAIN_VRAM && dst in si_test_dma_perf()
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_qir_live_variables.c71 &inst->dst.index); in get_partial_update_state()
78 _mesa_hash_table_insert(partial_update_ht, &inst->dst.index, state); in get_partial_update_state()
91 int var = qir_reg_to_var(inst->dst); in qir_setup_def()
114 inst->cond_is_exec_mask) && !inst->dst.pack) { in qir_setup_def()
133 * as defining the temp within the block, because otherwise dst's live in qir_setup_def()
209 if (inst->dst.file == QFILE_TEMP) in qir_setup_def_use()
210 c->temp_start[inst->dst.index] = 0; in qir_setup_def_use()
/third_party/mesa3d/src/gallium/frontends/vdpau/
H A Dvdpau_private.h326 RectToPipe(const VdpRect *src, struct u_rect *dst) in RectToPipe() argument
329 dst->x0 = src->x0; in RectToPipe()
330 dst->y0 = src->y0; in RectToPipe()
331 dst->x1 = src->x1; in RectToPipe()
332 dst->y1 = src->y1; in RectToPipe()
333 return dst; in RectToPipe()
/third_party/libdrm/tests/amdgpu/
H A Damdgpu_stress.c192 uint64_t dst = virtual[to]; in submit_ib() local
203 pm4[i++] = 0xffffffff & dst; in submit_ib()
205 pm4[i++] = (0xffffffff00000000 & dst) >> 32; in submit_ib()
218 pm4[i++] = 0xffffffff & dst; in submit_ib()
219 pm4[i++] = (0xffffffff00000000 & dst) >> 32; in submit_ib()
224 dst += bytes; in submit_ib()
H A Dsecurity_tests.c153 const uint64_t dst, in amdgpu_sdma_lcopy()
165 packet[5] = htole32((uint32_t)(dst & 0xFFFFFFFFU)); in amdgpu_sdma_lcopy()
166 packet[6] = htole32((uint32_t)(dst >> 32)); in amdgpu_sdma_lcopy()
181 * @dst: destination buffer object
191 struct sec_amdgpu_bo *dst, in amdgpu_bo_lcopy()
196 struct amdgpu_bo *bos[] = { dst->bo, src->bo }; in amdgpu_bo_lcopy()
200 dst->va->address, in amdgpu_bo_lcopy()
152 amdgpu_sdma_lcopy(uint32_t *packet, const uint64_t dst, const uint64_t src, const uint32_t size, const int secure) amdgpu_sdma_lcopy() argument
190 amdgpu_bo_lcopy(struct command_ctx *ctx, struct sec_amdgpu_bo *dst, struct sec_amdgpu_bo *src, const uint32_t size, int secure) amdgpu_bo_lcopy() argument
/third_party/lwip/src/apps/snmp/
H A Dsnmp_table.c322 s32_t *dst = (s32_t *)value; in snmp_table_extract_value_from_s32ref() local
323 *dst = instance->reference.s32; in snmp_table_extract_value_from_s32ref()
324 return sizeof(*dst); in snmp_table_extract_value_from_s32ref()
330 u32_t *dst = (u32_t *)value; in snmp_table_extract_value_from_u32ref() local
331 *dst = instance->reference.u32; in snmp_table_extract_value_from_u32ref()
332 return sizeof(*dst); in snmp_table_extract_value_from_u32ref()
/third_party/lwip/test/unit/etharp/
H A Dtest_etharp.c168 ip_addr_t dst; in START_TEST() local
169 ip_addr_copy_from_ip4(dst, adrs[i]); in START_TEST()
170 err2 = udp_sendto(pcb, p, &dst, 123); in START_TEST()
203 ip_addr_t dst; in START_TEST() local
204 ip_addr_copy_from_ip4(dst, adrs[i]); in START_TEST()
205 err2 = udp_sendto(pcb, p, &dst, 123); in START_TEST()
/third_party/node/deps/v8/src/debug/wasm/gdb-server/
H A Dtransport.cc120 void Transport::CopyFromBuffer(char** dst, int32_t* len) { in CopyFromBuffer() argument
122 memcpy(*dst, buf_.get() + pos_, copy_bytes); in CopyFromBuffer()
125 *dst += copy_bytes; in CopyFromBuffer()
128 bool Transport::Read(char* dst, int32_t len) { in Read() argument
130 CopyFromBuffer(&dst, &len); in Read()
138 CopyFromBuffer(&dst, &len); in Read()
/third_party/mesa3d/src/vulkan/util/
H A Dvk_cmd_queue_gen.py462 def get_struct_copy(dst, src_name, src_type, size, types, level=0):
466 allocation = "%s = vk_zalloc(queue->alloc, %s, 8, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT);\n if (%s == NULL) goto err;\n" % (dst, size, dst)
467 copy = "memcpy((void*)%s, %s, %s);" % (dst, src_name, size)
470 tmp_dst = "%s *tmp_dst%d = (void *) %s; (void) tmp_dst%d;" % (src_type, level, dst, level)
481 null_assignment = "%s = NULL;" % dst
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_prim_restart.c68 uint16_t *dst = (uint16_t *) dst_map; in util_translate_prim_restart_data() local
71 dst[i] = (src[i] == restart_index) ? 0xffff : src[i]; in util_translate_prim_restart_data()
76 uint16_t *dst = (uint16_t *) dst_map; in util_translate_prim_restart_data() local
79 dst[i] = (src[i] == restart_index) ? 0xffff : src[i]; in util_translate_prim_restart_data()
84 uint32_t *dst = (uint32_t *) dst_map; in util_translate_prim_restart_data() local
88 dst[i] = (src[i] == restart_index) ? 0xffffffff : src[i]; in util_translate_prim_restart_data()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmVariableInitTests.cpp319 void addShaderCodeOutput (vk::SourceCollections& dst, ShaderParams params) in addShaderCodeOutput() argument
324 const deUint32 vulkanVersion = dst.usedVulkanVersion; in addShaderCodeOutput()
451 dst.spirvAsmSources.add("vert", DE_NULL) << vertexShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
452 dst.spirvAsmSources.add("frag", DE_NULL) << fragmentShader << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
584 dst.spirvAsmSources.add("vert", DE_NULL) << vertexShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
585 dst.spirvAsmSources.add("frag", DE_NULL) << fragmentShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
/third_party/skia/src/effects/imagefilters/
H A DSkMagnifierImageFilter.cpp229 SkBitmap dst; in onFilterImage() local
230 if (!dst.tryAllocPixels(info)) { in onFilterImage()
234 SkColor* dptr = dst.getAddr32(0, 0); in onFilterImage()
235 int dstWidth = dst.width(), dstHeight = dst.height(); in onFilterImage()
276 dst, ctx.surfaceProps()); in onFilterImage()
H A DSkAlphaThresholdImageFilter.cpp257 SkBitmap dst; in onFilterImage() local
258 if (!dst.tryAllocPixels(info)) { in onFilterImage()
264 SkColor* dptr = dst.getAddr32(0, 0); in onFilterImage()
265 int dstWidth = dst.width(), dstHeight = dst.height(); in onFilterImage()
303 dst, ctx.surfaceProps()); in onFilterImage()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DPixelRoutine.hpp82 Vector4f computeAdvancedBlendMode(int index, const Vector4f &src, const Vector4f &dst, const Vector4f &srcFactor, const Vector4f &dstFactor);
83 Float4 blendOpOverlay(Float4 &src, Float4 &dst);
84 Float4 blendOpColorDodge(Float4 &src, Float4 &dst);
85 Float4 blendOpColorBurn(Float4 &src, Float4 &dst);
86 Float4 blendOpHardlight(Float4 &src, Float4 &dst);
87 Float4 blendOpSoftlight(Float4 &src, Float4 &dst);
/third_party/skia/src/utils/
H A DSkCamera.cpp34 void SkPatch3D::transform(const SkM44& m, SkPatch3D* dst) const { in transform()
35 if (dst == nullptr) { in transform()
36 dst = (SkPatch3D*)this; in transform()
38 dst->fU = m * fU; in transform()
39 dst->fV = m * fV; in transform()
41 dst->fOrigin = {x, y, z}; in transform()
/third_party/skia/third_party/externals/tint/src/transform/
H A Drobustness.cc66 ProgramBuilder& b = *ctx.dst; in Transform()
224 ProgramBuilder& b = *ctx.dst; in Transform()
249 auto* max = ctx.dst->Sub(num_levels, 1); in Transform()
262 auto* max = ctx.dst->Sub( in Transform()
273 auto* max = ctx.dst->Sub(num_layers, 1); in Transform()
281 ctx.Replace(arg, level_arg ? level_arg() : ctx.dst->Expr(0)); in Transform()
/third_party/skia/tools/skqp/
H A Dcreate_apk.py76 def makedirs(dst):
77 if not os.path.exists(dst):
78 os.makedirs(dst)
158 dst = '%s/%s' % (lib_dir, skia_to_android_arch_name_map[arch])
159 makedirs(dst)
160 shutil.copy(os.path.join(build, lib), dst)
/third_party/skia/gm/
H A Dlazytiling.cpp129 char* dst = static_cast<char*>(bigBM.getAddr(kLeft, fullSize.height() - kTop - 1)); in create_bitmap() local
131 memcpy(dst, src, srcRB); in create_bitmap()
133 dst = dst - dstRB; in create_bitmap()
136 char* dst = static_cast<char*>(bigBM.getAddr(kLeft, kTop)); in create_bitmap() local
137 SkRectMemcpy(dst, dstRB, src, srcRB, in create_bitmap()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
H A DvktSpvAsmVariableInitTests.cpp319 void addShaderCodeOutput (vk::SourceCollections& dst, ShaderParams params) in addShaderCodeOutput() argument
324 const deUint32 vulkanVersion = dst.usedVulkanVersion; in addShaderCodeOutput()
451 dst.spirvAsmSources.add("vert", DE_NULL) << vertexShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
452 dst.spirvAsmSources.add("frag", DE_NULL) << fragmentShader << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
584 dst.spirvAsmSources.add("vert", DE_NULL) << vertexShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
585 dst.spirvAsmSources.add("frag", DE_NULL) << fragmentShader.specialize(spec) << SpirVAsmBuildOptions(vulkanVersion, targetSpirvVersion); in addShaderCodeOutput()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp1189 //! Add the functions used in this statement to `dst`.
1190 void getUsedFuncs (FuncSet& dst) const { this->doGetUsedFuncs(dst); } in getUsedFuncs()
1196 virtual void doGetUsedFuncs (FuncSet& dst) const = 0;
1256 void doGetUsedFuncs (FuncSet& dst) const in doGetUsedFuncs()
1258 m_value->getUsedFuncs(dst); in doGetUsedFuncs()
1324 void doGetUsedFuncs (FuncSet& dst) const in doGetUsedFuncs()
1327 m_statements[ndx]->getUsedFuncs(dst); in doGetUsedFuncs()
1346 void getUsedFuncs (FuncSet& dst) const in getUsedFuncs()
1348 this->doGetUsedFuncs(dst); in getUsedFuncs()
2732 const Interval dst = ctx.format.convert(ret); applyPoint() local
5658 genFixeds(const FloatFormat&, const Precision, vector<Void>& dst, const Interval&) const genFixeds() argument
5665 genFixeds(const FloatFormat&, const Precision, vector<bool>& dst, const Interval&) const genFixeds() argument
5684 genFixeds(const FloatFormat&, const Precision, vector<int>& dst, const Interval&) const genFixeds() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp1190 //! Add the functions used in this statement to `dst`.
1191 void getUsedFuncs (FuncSet& dst) const { this->doGetUsedFuncs(dst); } in getUsedFuncs()
1197 virtual void doGetUsedFuncs (FuncSet& dst) const = 0;
1257 void doGetUsedFuncs (FuncSet& dst) const in doGetUsedFuncs()
1259 m_value->getUsedFuncs(dst); in doGetUsedFuncs()
1325 void doGetUsedFuncs (FuncSet& dst) const in doGetUsedFuncs()
1328 m_statements[ndx]->getUsedFuncs(dst); in doGetUsedFuncs()
1347 void getUsedFuncs (FuncSet& dst) const in getUsedFuncs()
1349 this->doGetUsedFuncs(dst); in getUsedFuncs()
2705 const Interval dst = ctx.format.convert(ret); applyPoint() local
5647 genFixeds(const FloatFormat&, const Precision, vector<Void>& dst, const Interval&) const genFixeds() argument
5654 genFixeds(const FloatFormat&, const Precision, vector<bool>& dst, const Interval&) const genFixeds() argument
5673 genFixeds(const FloatFormat&, const Precision, vector<int>& dst, const Interval&) const genFixeds() argument
[all...]
/kernel/linux/linux-6.6/drivers/crypto/hisilicon/hpre/
H A Dhpre_crypto.c135 char *dst; member
246 hpre_req->dst = NULL; in hpre_get_data_dma_addr()
279 hpre_req->dst = ptr; in hpre_prepare_dma_buf()
314 struct scatterlist *dst, in hpre_hw_data_clr_all()
336 if (req->dst) { in hpre_hw_data_clr_all()
337 if (dst) in hpre_hw_data_clr_all()
338 scatterwalk_map_and_copy(req->dst, dst, 0, in hpre_hw_data_clr_all()
340 dma_free_coherent(dev, ctx->key_sz, req->dst, tmp); in hpre_hw_data_clr_all()
448 hpre_hw_data_clr_all(ctx, req, areq->dst, are in hpre_dh_cb()
312 hpre_hw_data_clr_all(struct hpre_ctx *ctx, struct hpre_asym_request *req, struct scatterlist *dst, struct scatterlist *src) hpre_hw_data_clr_all() argument
1441 hpre_ecdh_hw_data_clr_all(struct hpre_ctx *ctx, struct hpre_asym_request *req, struct scatterlist *dst, struct scatterlist *src) hpre_ecdh_hw_data_clr_all() argument
1757 hpre_curve25519_hw_data_clr_all(struct hpre_ctx *ctx, struct hpre_asym_request *req, struct scatterlist *dst, struct scatterlist *src) hpre_curve25519_hw_data_clr_all() argument
[all...]

Completed in 33 milliseconds

1...<<131132133134135136137138139140>>...403