HomeSort by relevance Sort by last modified time
    Searched refs:first_index (Results 1 - 25 of 34) sorted by null

1 2

  /external/autotest/client/cros/chameleon/
chameleon_video_capturer.py 112 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/tensorflow/tensorflow/compiler/tf2xla/kernels/
matmul_op.cc 60 int first_index = transpose_a_ ? 0 : 1; variable
64 a_shape.dim_size(first_index) == b_shape.dim_size(second_index),
  /external/v8/src/interpreter/
bytecode-register-optimizer.cc 441 int first_index = reg_list.first_register().index(); local
442 GrowRegisterMap(Register(first_index + reg_list.register_count() - 1));
444 GetRegisterInfo(Register(first_index + i))->set_allocated(true);
450 int first_index = reg_list.first_register().index(); local
452 GetRegisterInfo(Register(first_index + i))->set_allocated(false);
  /external/skia/src/shaders/gradients/
Sk4fGradientBase.cpp 191 const int first_index = reverse ? count - 1 : 0; local
192 const int last_index = count - 1 - first_index;
198 const Sk4f clamp_color = pack_color(shader.getXformedColor(first_index, dstCS),
  /external/skqp/src/shaders/gradients/
Sk4fGradientBase.cpp 191 const int first_index = reverse ? count - 1 : 0; local
192 const int last_index = count - 1 - first_index;
198 const Sk4f clamp_color = pack_color(shader.getXformedColor(first_index, dstCS),
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorReductionCuda.h 129 const Index first_index = blockIdx.x * BlockSize * NumPerThread + threadIdx.x; local
131 if (first_index == 0) {
161 Index max_iter = numext::mini<Index>(num_coeffs - first_index, NumPerThread*BlockSize);
163 const Index index = first_index + i;
223 const Index first_index = blockIdx.x * BlockSize * NumPerThread + 2*threadIdx.x; local
226 if (gridDim.x == 1 && first_index == 0) {
237 const Index max_iter = numext::mini<Index>((num_coeffs - first_index) / 2, NumPerThread*BlockSize / 2);
239 const Index index = first_index + 2*i;
256 if (gridDim.x == 1 && first_index == 0) {
TensorExecutor.h 239 const Index first_index = blockIdx.x * blockDim.x + threadIdx.x; local
243 EigenMetaKernelEval<Evaluator, Index, vectorizable>::run(eval, first_index, size, step_size);
  /external/v8/src/compiler/s390/
code-generator-s390.cc 78 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) {
79 const size_t index = *first_index;
85 *first_index += 1;
88 *first_index += 2;
91 *first_index += 2;
94 *first_index += 3;
103 size_t first_index = 0) {
104 return MemoryOperand(mode, &first_index);
356 size_t first_index = 1; local
357 MemOperand operand = i.MemoryOperand(&mode, &first_index);
380 size_t first_index = 1; local
407 size_t first_index = 1; local
433 size_t first_index = 1; local
    [all...]
  /external/mesa3d/src/compiler/glsl/
link_uniform_blocks.cpp 220 * \param first_index Value of \c block_index for the first element of the
230 unsigned first_index)
242 binding_offset, ctx, prog, first_index);
246 binding_offset, *block_index - first_index,
  /external/perf_data_converter/src/quipper/
huge_page_deducer.cc 64 MMapRange(int first_index, int last_index)
65 : first_(first_index), last_(last_index) {}
  /external/vulkan-validation-layers/demos/smoke/
Meshes.cpp 392 uint32_t first_index = 0; local
400 draw.firstIndex = first_index;
406 first_index += mesh.index_count();
  /external/sfntly/cpp/src/sfntly/table/core/
os2_table.h 382 void SetUsFirstCharIndex(int32_t first_index);
os2_table.cc 502 void OS2Table::Builder::SetUsFirstCharIndex(int32_t first_index) {
503 InternalWriteData()->WriteUShort(Offset::kUsFirstCharIndex, first_index);
  /external/v8/src/compiler/arm64/
code-generator-arm64.cc 162 MemOperand MemoryOperand(size_t* first_index) {
163 const size_t index = *first_index;
176 *first_index += 3;
180 *first_index += 2;
183 *first_index += 2;
190 MemOperand MemoryOperand(size_t first_index = 0) {
191 return MemoryOperand(&first_index);
    [all...]
  /external/v8/src/compiler/arm/
code-generator-arm.cc 65 Operand InputOperand2(size_t first_index) {
66 const size_t index = first_index;
97 MemOperand InputOffset(size_t* first_index) {
98 const size_t index = *first_index;
112 *first_index += 3;
116 *first_index += 2;
119 *first_index += 2;
126 MemOperand InputOffset(size_t first_index = 0) {
127 return InputOffset(&first_index);
    [all...]
  /external/v8/src/compiler/
graph-visualizer.cc 456 int first_index = instruction_block->first_instruction_index(); local
460 LifetimePosition::GapFromInstructionIndex(first_index).value());
  /external/valgrind/coregrind/m_debuginfo/
readpdb.c 370 unsigned short first_index; member in struct:_PDB_TYPES_OLD
382 unsigned long first_index; member in struct:_PDB_TYPES
    [all...]
  /external/v8/src/compiler/ppc/
code-generator-ppc.cc 84 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) {
85 const size_t index = *first_index;
91 *first_index += 2;
94 *first_index += 2;
101 MemOperand MemoryOperand(AddressingMode* mode, size_t first_index = 0) {
102 return MemoryOperand(mode, &first_index);
    [all...]
  /art/dex2oat/linker/
oat_writer.cc 2313 bool first_index = true; local
3133 bool first_index = true; local
    [all...]
  /external/v8/src/compiler/mips/
code-generator-mips.cc 110 MemOperand MemoryOperand(size_t* first_index) {
111 const size_t index = *first_index;
116 *first_index += 2;
    [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 110 MemOperand MemoryOperand(size_t* first_index) {
111 const size_t index = *first_index;
116 *first_index += 2;
    [all...]
  /external/v8/src/ic/
ic.cc 882 Handle<FixedArray> array, int first_index) {
    [all...]
  /external/robolectric/v3/libs/
vtd-xml-2.11.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
vtd-xml-2.11.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
vtd-xml-2.11.jar 

Completed in 802 milliseconds

1 2