Home
last modified time | relevance | path

Searched refs:read_index (Results 1 – 7 of 7) sorted by relevance

/external/adhd/cras/src/dsp/
Ddrc_kernel.c979 int read_index = dk->pre_delay_read_index; in dk_copy_fragment() local
987 &dk->pre_delay_buffers[j][read_index], in dk_copy_fragment()
994 (read_index + frames_to_process) & MAX_PRE_DELAY_FRAMES_MASK; in dk_copy_fragment()
1004 int read_index = dk->pre_delay_read_index; in dk_process_delay_only() local
1010 int small = min(read_index, write_index); in dk_process_delay_only()
1011 int large = max(read_index, write_index); in dk_process_delay_only()
1021 &dk->pre_delay_buffers[j][read_index], in dk_process_delay_only()
1024 read_index = (read_index + chunk) & MAX_PRE_DELAY_FRAMES_MASK; in dk_process_delay_only()
1029 dk->pre_delay_read_index = read_index; in dk_process_delay_only()
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/kernels/
Dconcat_z.cc112 int read_index = 0; in GetConcatKernelCode() local
118 const std::string temp_name = "t" + std::to_string(read_index); in GetConcatKernelCode()
135 read_index++; in GetConcatKernelCode()
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/kernels/
Dconcat.cc62 int read_index = 0; in GetConcatZCode() local
70 const std::string temp_name = "t" + std::to_string(read_index); in GetConcatZCode()
95 read_index++; in GetConcatZCode()
/external/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_state_validate.c141 unsigned read_index = pixel_y % grid_height * hw_grid_width; in gm200_validate_sample_locations() local
143 read_index += pixel_x % grid_width; in gm200_validate_sample_locations()
144 read_index = read_index * ms + sample; in gm200_validate_sample_locations()
145 x = sample_locations[read_index][0]; in gm200_validate_sample_locations()
146 y = sample_locations[read_index][1]; in gm200_validate_sample_locations()
/external/mesa3d/src/compiler/nir/
Dnir_opt_find_array_copies.c421 unsigned write_index, unsigned read_index, in handle_write() argument
484 dst_node->first_src_read = MIN2(dst_node->first_src_read, read_index); in handle_write()
/external/v8/src/api/
Dapi.cc5315 int read_index = 0; in WriteUtf8Impl() local
5322 while (read_index < read_length) { in WriteUtf8Impl()
5331 up_to = std::min(up_to, read_index + writable_length); in WriteUtf8Impl()
5337 for (int i = read_index; i < up_to; i++) char_mask |= read_start[i]; in WriteUtf8Impl()
5339 int copy_length = up_to - read_index; in WriteUtf8Impl()
5340 memcpy(current_write, read_start + read_index, copy_length); in WriteUtf8Impl()
5342 read_index = up_to; in WriteUtf8Impl()
5344 for (; read_index < up_to; read_index++) { in WriteUtf8Impl()
5346 current_write, static_cast<uint8_t>(read_start[read_index])); in WriteUtf8Impl()
5352 for (; read_index < up_to; read_index++) { in WriteUtf8Impl()
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cArrayOfArraysTests.cpp3344 …for (size_t read_index = 0; read_index < sizeof(expressions) / sizeof(expressions[0]); read_index+… in test_shader_compilation() local
3351 shader_source += expressions[read_index]; in test_shader_compilation()