Home
last modified time | relevance | path

Searched refs:dst (Results 3426 - 3450 of 10444) sorted by relevance

1...<<131132133134135136137138139140>>...418

/third_party/alsa-lib/src/timer/
H A Dtimer_query.c269 * \param dst destination snd_timer_info_t structure
272 void snd_timer_ginfo_copy(snd_timer_ginfo_t *dst, const snd_timer_ginfo_t *src) in snd_timer_ginfo_copy() argument
274 assert(dst && src); in snd_timer_ginfo_copy()
275 *dst = *src; in snd_timer_ginfo_copy()
475 * \param dst destination snd_timer_id_t structure
478 void snd_timer_id_copy(snd_timer_id_t *dst, const snd_timer_id_t *src) in snd_timer_id_copy() argument
480 assert(dst && src); in snd_timer_id_copy()
481 *dst = *src; in snd_timer_id_copy()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTZDBTimeZoneNames.java360 String dst = names.getName(NameType.SHORT_DAYLIGHT); in prepareFind()
361 if (std == null && dst == null) { in prepareFind()
372 boolean ambiguousType = (std != null && dst != null && std.equals(dst)); in prepareFind()
381 if (dst != null) { in prepareFind()
386 trie.put(dst, dstInf); in prepareFind()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/
H A DTransformsMapperTest.java202 String src, String dst, Direction dir, String var, Visibility vis, String alias, int idx) { in oneWay()
207 appendAttribute(cldrPath, "target", dst); in oneWay()
219 String.format("%s %s %s [%s]:\n%s", src, arrow, dst, vis, alias)); in oneWay()
223 String src, String dst, String var, Visibility vis, String alias, String backAlias, int idx) { in both()
227 appendAttribute(cldrPath, "target", dst); in both()
239 String.format("%s <-> %s [%s]:\n%s\n%s", src, dst, vis, alias, backAlias)); in both()
201 oneWay( String src, String dst, Direction dir, String var, Visibility vis, String alias, int idx) oneWay() argument
222 both( String src, String dst, String var, Visibility vis, String alias, String backAlias, int idx) both() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DTZDBTimeZoneNames.java362 String dst = names.getName(NameType.SHORT_DAYLIGHT); in prepareFind()
363 if (std == null && dst == null) { in prepareFind()
374 boolean ambiguousType = (std != null && dst != null && std.equals(dst)); in prepareFind()
383 if (dst != null) { in prepareFind()
388 trie.put(dst, dstInf); in prepareFind()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_large_constants.c124 char *dst = (char *)info->constant_data + offset; in handle_constant_store() local
133 ((int32_t *)dst)[i] = -(int)val[i].b; in handle_constant_store()
137 ((uint8_t *)dst)[i] = val[i].u8; in handle_constant_store()
141 ((uint16_t *)dst)[i] = val[i].u16; in handle_constant_store()
145 ((uint32_t *)dst)[i] = val[i].u32; in handle_constant_store()
149 ((uint64_t *)dst)[i] = val[i].u64; in handle_constant_store()
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta.h158 struct radv_meta_blit2d_buffer *src_buf, struct radv_meta_blit2d_surf *dst,
167 struct radv_meta_blit2d_buffer *dst, unsigned num_rects,
172 struct radv_meta_blit2d_surf *dst, unsigned num_rects,
176 struct radv_meta_blit2d_surf *dst, unsigned num_rects,
178 void radv_meta_clear_image_cs(struct radv_cmd_buffer *cmd_buffer, struct radv_meta_blit2d_surf *dst,
203 struct radv_meta_blit2d_surf *dst);
/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()

Completed in 19 milliseconds

1...<<131132133134135136137138139140>>...418