/third_party/ffmpeg/libswresample/ |
D | resample_template.c | 80 int dst_index; in RENAME() local 82 for (dst_index = 0; dst_index < dst_size; dst_index++) { in RENAME() 83 dst[dst_index] = src[index2 >> 32]; in RENAME() 94 int dst_index; in RENAME() local 104 for (dst_index = 0; dst_index < n; dst_index++) { in RENAME() 117 OUT(dst[dst_index], val + (FELEML)val2); in RENAME() 119 OUT(dst[dst_index], val + val2); in RENAME() 149 int dst_index; in RENAME() local 162 for (dst_index = 0; dst_index < n; dst_index++) { in RENAME() 180 OUT(dst[dst_index], val); in RENAME()
|
/third_party/pulseaudio/src/pulsecore/ffmpeg/ |
D | resample2.c | 211 int dst_index, i; in av_resample() local 223 for(dst_index=0; dst_index < dst_size; dst_index++){ in av_resample() 224 dst[dst_index] = src[index2>>32]; in av_resample() 227 frac += dst_index * dst_incr_frac; in av_resample() 228 index += dst_index * dst_incr; in av_resample() 232 for(dst_index=0; dst_index < dst_size; dst_index++){ in av_resample() 256 dst[dst_index] = av_clip_int16(lrintf(val)); in av_resample() 259 dst[dst_index] = (unsigned)(val + 32768) > 65535 ? (val>>31) ^ 32767 : val; in av_resample() 269 if(dst_index + 1 == compensation_distance){ in av_resample() 280 compensation_distance -= dst_index; in av_resample() [all …]
|
/third_party/ffmpeg/libavresample/ |
D | resample.c | 263 int dst_index; in resample() local 281 for(dst_index = 0; dst_index < dst_size; dst_index++) { in resample() 282 c->resample_nearest(dst, dst_index, src, index2 >> 32); in resample() 286 dst_index = dst_size; in resample() 288 index += dst_index * dst_incr; in resample() 289 index += (frac + dst_index * (int64_t)dst_incr_frac) / c->src_incr; in resample() 290 frac = (frac + dst_index * (int64_t)dst_incr_frac) % c->src_incr; in resample() 292 for (dst_index = 0; dst_index < dst_size; dst_index++) { in resample() 299 c->resample_one(c, dst, dst_index, src, index, frac); in resample() 307 if (dst_index + 1 == compensation_distance) { in resample() [all …]
|
D | resample_template.c | 57 static void SET_TYPE(resample_nearest)(void *dst0, int dst_index, const void *src0, unsigned int in… in SET_TYPE() 61 dst[dst_index] = src[index]; in SET_TYPE() 64 static void SET_TYPE(resample_linear)(ResampleContext *c, void *dst0, int dst_index, in SET_TYPE() 82 OUT(dst[dst_index], val); in SET_TYPE() 86 void *dst0, int dst_index, const void *src0, in SET_TYPE() 100 OUT(dst[dst_index], val); in SET_TYPE()
|
D | resample.h | 46 int dst_index, const void *src0, 48 void (*resample_nearest)(void *dst0, int dst_index,
|
/third_party/ffmpeg/libavresample/aarch64/ |
D | resample_init.c | 36 int dst_index, const void *src0, 39 int dst_index, const void *src0, 42 int dst_index, const void *src0, 45 int dst_index, const void *src0,
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_transform.h | 293 unsigned dst_index, in tgsi_transform_op1_inst() argument 304 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op1_inst() 317 unsigned dst_index, in tgsi_transform_op2_inst() argument 331 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op2_inst() 346 unsigned dst_index, in tgsi_transform_op3_inst() argument 361 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op3_inst() 377 unsigned dst_index, in tgsi_transform_op1_swz_inst() argument 389 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op1_swz_inst() 418 unsigned dst_index, in tgsi_transform_op2_swz_inst() argument 434 inst.Dst[0].Register.Index = dst_index; in tgsi_transform_op2_swz_inst() [all …]
|
/third_party/ffmpeg/libavresample/arm/ |
D | resample_init.c | 39 int dst_index, const void *src0, 42 int dst_index, const void *src0, 45 int dst_index, const void *src0, 49 int dst_index, const void *src0,
|
/third_party/ffmpeg/libswresample/aarch64/ |
D | resample_init.c | 44 int dst_index; \ 56 for (dst_index = 0; dst_index < n; dst_index++) { \ 74 OUT(dst[dst_index], val); \
|
/third_party/ffmpeg/libswresample/arm/ |
D | resample_init.c | 44 int dst_index; \ 56 for (dst_index = 0; dst_index < n; dst_index++) { \ 74 OUT(dst[dst_index], val); \
|
/third_party/node/deps/v8/src/compiler/backend/ |
D | gap-resolver.cc | 54 int dst_index = -1; in Split() local 57 dst_index = dst_loc.register_code() * aliases; in Split() 59 dst_index = dst_loc.index(); in Split() 65 move->set_destination(AllocatedOperand(dst_kind, smaller_rep, dst_index)); in Split() 69 dst_index += dst_step; in Split() 71 AllocatedOperand(dst_kind, smaller_rep, dst_index)); in Split()
|
/third_party/node/deps/v8/src/objects/ |
D | fixed-array-inl.h | 217 void FixedArray::MoveElements(Isolate* isolate, int dst_index, int src_index, in MoveElements() argument 220 DCHECK_LE(dst_index + len, length()); in MoveElements() 223 ObjectSlot dst_slot(RawFieldOfElementAt(dst_index)); in MoveElements() 228 void FixedArray::CopyElements(Isolate* isolate, int dst_index, FixedArray src, in CopyElements() argument 231 DCHECK_LE(dst_index + len, length()); in CopyElements() 235 ObjectSlot dst_slot(RawFieldOfElementAt(dst_index)); in CopyElements() 420 void FixedDoubleArray::MoveElements(Isolate* isolate, int dst_index, in MoveElements() argument 425 MemMove(data_start + dst_index, data_start + src_index, len * kDoubleSize); in MoveElements() 466 void WeakFixedArray::CopyElements(Isolate* isolate, int dst_index, in CopyElements() argument 470 DCHECK_LE(dst_index + len, length()); in CopyElements() [all …]
|
D | fixed-array.h | 171 inline void MoveElements(Isolate* isolate, int dst_index, int src_index, 174 inline void CopyElements(Isolate* isolate, int dst_index, FixedArray src, 264 inline void MoveElements(Isolate* isolate, int dst_index, int src_index, 315 inline void CopyElements(Isolate* isolate, int dst_index, WeakFixedArray src, 396 inline void CopyElements(Isolate* isolate, int dst_index, WeakArrayList src,
|
D | property-array-inl.h | 126 void PropertyArray::CopyElements(Isolate* isolate, int dst_index, in CopyElements() argument 132 ObjectSlot dst_slot(data_start() + dst_index); in CopyElements()
|
D | property-array.h | 48 inline void CopyElements(Isolate* isolate, int dst_index, PropertyArray src,
|
D | scope-info.h | 337 void CopyElements(Isolate* isolate, int dst_index, ScopeInfo src,
|
/third_party/gn/src/gn/ |
D | hash_table_base.h | 514 size_t dst_index = node->hash_value() & new_mask; in GrowBuckets() local 516 Node* node2 = new_buckets + dst_index; in GrowBuckets() 521 dst_index = (dst_index + 1) & new_mask; in GrowBuckets()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_vbuf.c | 1010 unsigned dst_index = start_slot + i; in u_vbuf_set_vertex_buffers() local 1012 pipe_vertex_buffer_unreference(&mgr->vertex_buffer[dst_index]); in u_vbuf_set_vertex_buffers() 1013 pipe_vertex_buffer_unreference(&mgr->real_vertex_buffer[dst_index]); in u_vbuf_set_vertex_buffers() 1022 unsigned dst_index = start_slot + i; in u_vbuf_set_vertex_buffers() local 1024 struct pipe_vertex_buffer *orig_vb = &mgr->vertex_buffer[dst_index]; in u_vbuf_set_vertex_buffers() 1025 struct pipe_vertex_buffer *real_vb = &mgr->real_vertex_buffer[dst_index]; in u_vbuf_set_vertex_buffers() 1037 mask |= BITFIELD_BIT(dst_index); in u_vbuf_set_vertex_buffers() 1056 nonzero_stride_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers() 1058 enabled_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers() 1062 incompatible_vb_mask |= 1 << dst_index; in u_vbuf_set_vertex_buffers() [all …]
|
/third_party/node/deps/v8/src/wasm/ |
D | wasm-external-refs.cc | 549 uint32_t dst_index, Address raw_src_array, in array_copy_wrapper() argument 559 (dst_index < src_index ? dst_index + length > src_index in array_copy_wrapper() 560 : src_index + length > dst_index); in array_copy_wrapper() 566 ObjectSlot dst_slot = dst_array.ElementSlot(dst_index); in array_copy_wrapper() 577 void* dst = ArrayElementAddress(dst_array, dst_index, element_size_bytes); in array_copy_wrapper()
|
D | wasm-external-refs.h | 116 uint32_t dst_index, Address raw_src_array,
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-wasm.cc | 655 uint32_t dst_index = args.positive_smi_value_at(1); in RUNTIME_FUNCTION() local 662 (dst_index < src_index ? dst_index + length > src_index in RUNTIME_FUNCTION() 663 : src_index + length > dst_index); in RUNTIME_FUNCTION() 666 ObjectSlot dst_slot = dst_array->ElementSlot(dst_index); in RUNTIME_FUNCTION() 677 void* dst = ArrayElementAddress(dst_array, dst_index, element_size_bytes); in RUNTIME_FUNCTION()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_state.c | 1102 unsigned dst_index = start_slot + i; in nv50_set_vertex_buffers() local 1105 nv50->vbo_user |= 1 << dst_index; in nv50_set_vertex_buffers() 1107 nv50->vbo_constant |= 1 << dst_index; in nv50_set_vertex_buffers() 1109 nv50->vbo_constant &= ~(1 << dst_index); in nv50_set_vertex_buffers() 1110 nv50->vtxbufs_coherent &= ~(1 << dst_index); in nv50_set_vertex_buffers() 1112 nv50->vbo_user &= ~(1 << dst_index); in nv50_set_vertex_buffers() 1113 nv50->vbo_constant &= ~(1 << dst_index); in nv50_set_vertex_buffers() 1117 nv50->vtxbufs_coherent |= (1 << dst_index); in nv50_set_vertex_buffers() 1119 nv50->vtxbufs_coherent &= ~(1 << dst_index); in nv50_set_vertex_buffers()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_state.c | 1046 unsigned dst_index = start_slot + i; in nvc0_set_vertex_buffers() local 1049 nvc0->vbo_user |= 1 << dst_index; in nvc0_set_vertex_buffers() 1051 nvc0->constant_vbos |= 1 << dst_index; in nvc0_set_vertex_buffers() 1053 nvc0->constant_vbos &= ~(1 << dst_index); in nvc0_set_vertex_buffers() 1054 nvc0->vtxbufs_coherent &= ~(1 << dst_index); in nvc0_set_vertex_buffers() 1056 nvc0->vbo_user &= ~(1 << dst_index); in nvc0_set_vertex_buffers() 1057 nvc0->constant_vbos &= ~(1 << dst_index); in nvc0_set_vertex_buffers() 1061 nvc0->vtxbufs_coherent |= (1 << dst_index); in nvc0_set_vertex_buffers() 1063 nvc0->vtxbufs_coherent &= ~(1 << dst_index); in nvc0_set_vertex_buffers()
|
/third_party/mesa3d/src/freedreno/ir3/ |
D | ir3_ra.c | 1175 unsigned dst_index = 0; in compress_regs_left() local 1181 while (live_index < intervals_count || dst_index < dsts_count) { in compress_regs_left() 1185 } else if (dst_index == dsts_count) { in compress_regs_left() 1188 struct ir3_register *dst = dsts[dst_index]; in compress_regs_left() 1219 process_dst ? dsts[dst_index] : in compress_regs_left() 1260 dst_index++; in compress_regs_left()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_colorconstancy.c | 257 const int dst_index = td->meta_data[INDEX_DST]; in slice_get_derivative() local 266 double *dst = td->data[dst_index][plane]; in slice_get_derivative()
|