Home
last modified time | relevance | path

Searched refs:first_index (Results 1 – 25 of 28) sorted by relevance

12

/external/autotest/client/cros/chameleon/
Dchameleon_video_capturer.py112 first_index = 0
115 first_index = i
118 logging.debug("*** First interesting frame at index = %s", first_index)
119 self.checksums = self.checksums[first_index:]
/external/crosvm/fuzz/
Dblock_fuzzer.rs50 let first_index = read_u64(&mut data_image); in test_one_input() localVariable
51 if first_index > MEM_SIZE / DESC_SIZE { in test_one_input()
54 let first_offset = first_index * DESC_SIZE; in test_one_input()
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_where_op.py147 first_index = selected_coords[:, 0]
148 selected_rows = array_ops.gather(condition.value_rowids(), first_index)
150 selected_cols = first_index - selected_row_starts
/external/v8/src/interpreter/
Dbytecode-register-optimizer.cc493 int first_index = reg_list.first_register().index(); in RegisterListAllocateEvent() local
494 GrowRegisterMap(Register(first_index + reg_list.register_count() - 1)); in RegisterListAllocateEvent()
496 AllocateRegister(GetRegisterInfo(Register(first_index + i))); in RegisterListAllocateEvent()
502 int first_index = reg_list.first_register().index(); in RegisterListFreeEvent() local
504 GetRegisterInfo(Register(first_index + i))->set_allocated(false); in RegisterListFreeEvent()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dmatmul_op.cc65 int first_index = transpose_a_ ? 0 : 1; in Compile() local
69 a_shape.dim_size(first_index) == b_shape.dim_size(second_index), in Compile()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReductionCuda.h129 const Index first_index = blockIdx.x * BlockSize * NumPerThread + threadIdx.x; in FullReductionKernel() local
131 if (first_index == 0) { in FullReductionKernel()
161 Index max_iter = numext::mini<Index>(num_coeffs - first_index, NumPerThread*BlockSize); in FullReductionKernel()
163 const Index index = first_index + i; in FullReductionKernel()
223 const Index first_index = blockIdx.x * BlockSize * NumPerThread + 2*threadIdx.x; in FullReductionKernelHalfFloat() local
226 if (gridDim.x == 1 && first_index == 0) { in FullReductionKernelHalfFloat()
237 …const Index max_iter = numext::mini<Index>((num_coeffs - first_index) / 2, NumPerThread*BlockSize … in FullReductionKernelHalfFloat()
239 const Index index = first_index + 2*i; in FullReductionKernelHalfFloat()
256 if (gridDim.x == 1 && first_index == 0) { in FullReductionKernelHalfFloat()
DTensorExecutor.h239 const Index first_index = blockIdx.x * blockDim.x + threadIdx.x;
243 EigenMetaKernelEval<Evaluator, Index, vectorizable>::run(eval, first_index, size, step_size);
/external/skqp/src/shaders/gradients/
DSk4fGradientBase.cpp193 const int first_index = reverse ? count - 1 : 0; in init() local
194 const int last_index = count - 1 - first_index; in init()
203 const Sk4f clamp_color = pack_color(xformedColors.fColors[first_index], in init()
/external/skia/src/shaders/gradients/
DSk4fGradientBase.cpp193 const int first_index = reverse ? count - 1 : 0; in init() local
194 const int last_index = count - 1 - first_index; in init()
203 const Sk4f clamp_color = pack_color(xformedColors.fColors[first_index], in init()
/external/mesa3d/src/compiler/glsl/
Dlink_uniform_blocks.cpp242 unsigned first_index) in process_block_array() argument
256 binding_stride, ctx, prog, first_index); in process_block_array()
261 *block_index - first_index, ctx, prog); in process_block_array()
/external/mesa3d/src/intel/vulkan/
DgenX_query.c631 uint32_t first_index, uint32_t num_queries) in emit_zero_queries() argument
643 anv_query_address(pool, first_index + i); in emit_zero_queries()
658 anv_query_address(pool, first_index + i); in emit_zero_queries()
670 first_index + i, p, false), in emit_zero_queries()
673 … khr_perf_query_availability_address(pool, first_index + i, p), in emit_zero_queries()
684 anv_query_address(pool, first_index + i); in emit_zero_queries()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dtest_utils.cc564 const int64 first_index = in CreateLiteralForConstrainedUses() local
566 for (int64 operand = first_index; operand < use->operand_count(); in CreateLiteralForConstrainedUses()
571 ShapeUtil::GetDimension(indexed_shape, operand - first_index) - in CreateLiteralForConstrainedUses()
573 operand - first_index)); in CreateLiteralForConstrainedUses()
/external/protobuf/src/google/protobuf/compiler/php/
Dphp_generator.cc332 int first_index = proto_file.find_first_of("/", start_index); in GeneratedMetadataFileName() local
364 while (first_index != string::npos) { in GeneratedMetadataFileName()
366 file_no_suffix.substr(start_index, first_index - start_index), true); in GeneratedMetadataFileName()
368 start_index = first_index + 1; in GeneratedMetadataFileName()
369 first_index = file_no_suffix.find_first_of("/", start_index); in GeneratedMetadataFileName()
381 file_no_suffix.substr(file_name_start, first_index - file_name_start), true); in GeneratedMetadataFileName()
/external/v8/src/compiler/backend/s390/
Dcode-generator-s390.cc83 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) { in MemoryOperand() argument
84 const size_t index = *first_index; in MemoryOperand()
90 *first_index += 1; in MemoryOperand()
93 *first_index += 2; in MemoryOperand()
96 *first_index += 2; in MemoryOperand()
99 *first_index += 3; in MemoryOperand()
107 size_t first_index = 0) { in MemoryOperand() argument
108 return MemoryOperand(mode, &first_index); in MemoryOperand()
332 size_t first_index = (fi); \
333 mem = i.MemoryOperand(&mode, &first_index); \
[all …]
/external/sfntly/cpp/src/sfntly/table/core/
Dos2_table.cc502 void OS2Table::Builder::SetUsFirstCharIndex(int32_t first_index) { in SetUsFirstCharIndex() argument
503 InternalWriteData()->WriteUShort(Offset::kUsFirstCharIndex, first_index); in SetUsFirstCharIndex()
Dos2_table.h382 void SetUsFirstCharIndex(int32_t first_index);
/external/v8/src/compiler/backend/arm/
Dcode-generator-arm.cc51 Operand InputOperand2(size_t first_index) { in InputOperand2() argument
52 const size_t index = first_index; in InputOperand2()
83 MemOperand InputOffset(size_t* first_index) { in InputOffset() argument
84 const size_t index = *first_index; in InputOffset()
98 *first_index += 3; in InputOffset()
102 *first_index += 2; in InputOffset()
105 *first_index += 2; in InputOffset()
108 *first_index += 1; in InputOffset()
114 MemOperand InputOffset(size_t first_index = 0) { in InputOffset() argument
115 return InputOffset(&first_index); in InputOffset()
[all …]
/external/tensorflow/tensorflow/core/grappler/utils/
Dgraph_view.cc1202 const int first_index = in ApplyNodeUpdates() local
1204 for (int i = first_index; i < node_view.NumRegularFanins(); ++i) { in ApplyNodeUpdates()
1207 node_view.regular_fanins_.resize(first_index); in ApplyNodeUpdates()
/external/v8/src/compiler/
Dgraph-visualizer.cc620 int first_index = instruction_block->first_instruction_index(); in PrintSchedule() local
624 LifetimePosition::GapFromInstructionIndex(first_index).value()); in PrintSchedule()
/external/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_private.h723 uint32_t first_index; member
Dlvp_cmd_buffer.c727 cmd->u.draw_indexed.first_index = firstIndex; in lvp_CmdDrawIndexed()
/external/v8/src/compiler/backend/ppc/
Dcode-generator-ppc.cc89 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) { in MemoryOperand() argument
90 const size_t index = *first_index; in MemoryOperand()
97 *first_index += 2; in MemoryOperand()
100 *first_index += 2; in MemoryOperand()
107 size_t first_index = 0) { in MemoryOperand() argument
108 return MemoryOperand(mode, &first_index); in MemoryOperand()
/external/v8/src/compiler/backend/mips/
Dcode-generator-mips.cc106 MemOperand MemoryOperand(size_t* first_index) { in MemoryOperand() argument
107 const size_t index = *first_index; in MemoryOperand()
112 *first_index += 2; in MemoryOperand()
/external/v8/src/compiler/backend/mips64/
Dcode-generator-mips64.cc108 MemOperand MemoryOperand(size_t* first_index) { in MemoryOperand() argument
109 const size_t index = *first_index; in MemoryOperand()
114 *first_index += 2; in MemoryOperand()
/external/mesa3d/src/amd/vulkan/
Dradv_cmd_buffer.c3008 uint32_t first_index; member
5211 index_va += info->first_index * index_size; in radv_emit_draw_packets()
5478 info.first_index = firstIndex; in radv_CmdDrawIndexed()

12