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

1 2

  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
unique_objects.cpp 401 for (uint32_t idx0 = 0; idx0 < createInfoCount; ++idx0) {
402 local_pCreateInfos[idx0].initialize(&pCreateInfos[idx0]);
403 if (pCreateInfos[idx0].basePipelineHandle) {
404 local_pCreateInfos[idx0].basePipelineHandle =
406 ->unique_id_mapping[reinterpret_cast<const uint64_t &>(pCreateInfos[idx0].basePipelineHandle)];
408 if (pCreateInfos[idx0].layout) {
409 local_pCreateInfos[idx0].layout
    [all...]
object_tracker.cpp 568 for (uint32_t idx0 = 0; idx0 < submitCount; ++idx0) {
569 if (pSubmits[idx0].pCommandBuffers) {
570 for (uint32_t idx1 = 0; idx1 < pSubmits[idx0].commandBufferCount; ++idx1) {
571 skip_call |= ValidateObject(queue, pSubmits[idx0].pCommandBuffers[idx1],
575 if (pSubmits[idx0].pSignalSemaphores) {
576 for (uint32_t idx2 = 0; idx2 < pSubmits[idx0].signalSemaphoreCount; ++idx2) {
577 skip_call |= ValidateObject(queue, pSubmits[idx0].pSignalSemaphores[idx2],
581 if (pSubmits[idx0].pWaitSemaphores)
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_intrinsics.c 34 idx0, idx1, idx2, _flags) \
44 [NIR_INTRINSIC_ ## idx0] = 1, \
nir_intrinsics.h 33 * num_variables, num_indices, idx0, idx1, idx2, flags)
301 #define SYSTEM_VALUE(name, components, num_indices, idx0, idx1, idx2) \
304 idx0, idx1, idx2, \
392 #define LOAD(name, srcs, num_indices, idx0, idx1, idx2, flags) \
393 INTRINSIC(load_##name, srcs, ARR(1, 1, 1, 1), true, 0, 0, num_indices, idx0, idx1, idx2, flags)
427 #define STORE(name, srcs, num_indices, idx0, idx1, idx2, flags) \
428 INTRINSIC(store_##name, srcs, ARR(0, 1, 1, 1), false, 0, 0, num_indices, idx0, idx1, idx2, flags)
  /external/vulkan-validation-layers/layers/
unique_objects.cpp 289 for (uint32_t idx0 = 0; idx0 < createInfoCount; ++idx0) {
290 local_pCreateInfos[idx0].initialize(&pCreateInfos[idx0]);
291 if (pCreateInfos[idx0].basePipelineHandle) {
292 local_pCreateInfos[idx0].basePipelineHandle = Unwrap(device_data, pCreateInfos[idx0].basePipelineHandle);
294 if (pCreateInfos[idx0].layout) {
295 local_pCreateInfos[idx0].layout = Unwrap(device_data, pCreateInfos[idx0].layout)
    [all...]
object_tracker_utils.cpp 446 for (uint32_t idx0 = 0; idx0 < descriptorCopyCount; ++idx0) {
447 if (pDescriptorCopies[idx0].dstSet) {
448 skip |= ValidateObject(device, pDescriptorCopies[idx0].dstSet, kVulkanObjectTypeDescriptorSet, false,
451 if (pDescriptorCopies[idx0].srcSet) {
452 skip |= ValidateObject(device, pDescriptorCopies[idx0].srcSet, kVulkanObjectTypeDescriptorSet, false,
477 for (uint32_t idx0 = 0; idx0 < createInfoCount; ++idx0) {
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorStriding.h 174 const Index idx0 = indices[0] / m_outputStrides[i]; local
176 inputIndices[0] += idx0 * m_inputStrides[i];
178 indices[0] -= idx0 * m_outputStrides[i];
185 const Index idx0 = indices[0] / m_outputStrides[i]; local
187 inputIndices[0] += idx0 * m_inputStrides[i];
189 indices[0] -= idx0 * m_outputStrides[i];
299 const Index idx0 = indices[0] / this->m_outputStrides[i]; local
301 inputIndices[0] += idx0 * this->m_inputStrides[i];
303 indices[0] -= idx0 * this->m_outputStrides[i];
310 const Index idx0 = indices[0] / this->m_outputStrides[i] local
    [all...]
TensorContractionMapper.h 158 const Index idx0 = nocontract_val[0] / m_ij_strides[i]; local
160 linidx[0] += idx0 * m_nocontract_strides[i];
162 nocontract_val[0] -= idx0 * m_ij_strides[i];
178 const Index idx0 = contract_val[0] / m_k_strides[i]; local
180 linidx[0] += idx0 * m_contract_strides[i];
182 contract_val[0] -= idx0 * m_k_strides[i];
TensorMorphing.h 419 const Index idx0 = indices[0] / m_fastOutputStrides[i]; local
421 inputIndices[0] += (idx0 + m_offsets[i]) * m_inputStrides[i];
423 indices[0] -= idx0 * m_outputStrides[i];
430 const Index idx0 = indices[0] / m_fastOutputStrides[i]; local
432 inputIndices[0] += (idx0 + m_offsets[i]) * m_inputStrides[i];
434 indices[0] -= idx0 * m_outputStrides[i];
569 const Index idx0 = indices[0] / this->m_fastOutputStrides[i]; local
571 inputIndices[0] += (idx0 + this->m_offsets[i]) * this->m_inputStrides[i];
573 indices[0] -= idx0 * this->m_outputStrides[i];
580 const Index idx0 = indices[0] / this->m_fastOutputStrides[i] local
    [all...]
  /external/eigen/test/
visitor.cpp 106 Index idx0 = internal::random<Index>(0,size-1); local
110 v1(idx0) = v1(idx1);
111 v2(idx0) = v2(idx2);
114 VERIFY(eigen_minidx == (std::min)(idx0,idx1));
115 VERIFY(eigen_maxidx == (std::min)(idx0,idx2));
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 208 u32 idx0 = *meta; local
212 u32 idx = idx0;
235 if (*meta != idx0) {
236 idx0 = *meta;
246 mys->next = idx0;
247 if (atomic_compare_exchange_strong((atomic_uint32_t*)meta, &idx0,
  /external/freetype/src/autofit/
afwarp.c 81 FT_Int idx_min, idx_max, idx0; local
89 idx0 = xx1 - warper->t1;
123 FT_Pos y = y0 + ( idx_min - idx0 );
140 AF_WarpScore distort = base_distort + ( idx - idx0 );
150 warper->best_delta = delta + ( idx - idx0 );
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_bitvector.h 146 uptr i0 = idx0(idx);
161 uptr i0 = idx0(idx);
175 uptr i0 = idx0(idx);
327 uptr idx0(uptr idx) const { function in class:__sanitizer::TwoLevelBitVector
  /external/aac/libAACenc/src/
aacenc_tns.cpp 625 int i, idx0, idx1, idx2, idx3, idx4, lag; local
636 idx0 = lpcStartLine[LOFILT];
638 idx1 = idx0 + i / 4;
639 idx2 = idx0 + i / 2;
640 idx3 = idx0 + i * 3 / 4;
646 idx0 = lpcStartLine[LOFILT];
654 INT sc1 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx0, idx1);
661 for (nsc1 = 1; (1 << nsc1) < (idx1 - idx0); nsc1++)
672 rxx1_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, 0, nsc1);
690 FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, lag, nsc1)
    [all...]
  /external/opencv/cv/include/
cvcompat.h 479 #define cvQueryHistValue_1D( hist, idx0 ) \
480 ((float)cvGetReal1D( (hist)->bins, (idx0)))
481 #define cvQueryHistValue_2D( hist, idx0, idx1 ) \
482 ((float)cvGetReal2D( (hist)->bins, (idx0), (idx1)))
483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \
484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2)))
490 #define cvGetHistValue_1D( hist, idx0 ) \
491 ((float*)cvPtr1D( (hist)->bins, (idx0), 0))
492 #define cvGetHistValue_2D( hist, idx0, idx1 ) \
493 ((float*)cvPtr2D( (hist)->bins, (idx0), (idx1), 0)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
TailoredSet.java 196 int idx0 = Collation.indexFromCE32(ce32); local
200 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
214 int idx0 = Collation.indexFromCE32(ce32); local
218 if (data.ces[idx0 + i] != baseData.ces[idx1 + i]) {
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 194 int idx0 = Collation.indexFromCE32(ce32); local
198 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
212 int idx0 = Collation.indexFromCE32(ce32); local
216 if (data.ces[idx0 + i] != baseData.ces[idx1 + i]) {
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
local_single_store_elim_pass.h 71 // Return true if instruction in |blk0| at ordinal position |idx0|
73 bool Dominates(ir::BasicBlock* blk0, uint32_t idx0,
local_single_store_elim_pass.cpp 168 ir::BasicBlock* blk0, uint32_t idx0,
171 return idx0 <= idx1;
  /external/opencv/cxcore/include/
cxcore.h 336 /* ptr = &arr(idx0,idx1,...). All indexes are zero-based,
338 CVAPI(uchar*) cvPtr1D( const CvArr* arr, int idx0, int* type CV_DEFAULT(NULL));
339 CVAPI(uchar*) cvPtr2D( const CvArr* arr, int idx0, int idx1, int* type CV_DEFAULT(NULL) );
340 CVAPI(uchar*) cvPtr3D( const CvArr* arr, int idx0, int idx1, int idx2,
351 /* value = arr(idx0,idx1,...) */
352 CVAPI(CvScalar) cvGet1D( const CvArr* arr, int idx0 );
353 CVAPI(CvScalar) cvGet2D( const CvArr* arr, int idx0, int idx1 );
354 CVAPI(CvScalar) cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 );
358 CVAPI(double) cvGetReal1D( const CvArr* arr, int idx0 );
359 CVAPI(double) cvGetReal2D( const CvArr* arr, int idx0, int idx1 )
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
command_parser.py 86 idx0 = 0
92 argument = command[idx0:start]
99 idx0 = end
  /external/tensorflow/tensorflow/python/kernel_tests/
unique_op_test.py 69 y0, idx0 = gen_array_ops._unique_v2(x, axis=np.array([0], dtype))
70 tf_y0, tf_idx0 = sess.run([y0, idx0])
  /external/tensorflow/tensorflow/core/kernels/
bias_op.cc 251 using idx0 = Eigen::type2index<0>;
254 Eigen::IndexList<idx0, idx2, idx3> reduction_axes;
  /external/skia/src/shaders/gradients/
SkGradientShaderPriv.h 324 void addInterval(const SkGradientShaderBase&, size_t idx0, size_t idx1, SkColorSpace*);
  /external/skqp/src/shaders/gradients/
SkGradientShaderPriv.h 319 void addInterval(const SkGradientShaderBase&, size_t idx0, size_t idx1, SkColorSpace*);

Completed in 1046 milliseconds

1 2