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

1 2

  /external/vulkan-validation-layers/layers/
unique_objects.h 454 for (uint32_t idx0 = 0; idx0 < createInfoCount; ++idx0) {
455 local_pCreateInfos[idx0].initialize(&pCreateInfos[idx0]);
456 if (pCreateInfos[idx0].basePipelineHandle) {
457 local_pCreateInfos[idx0].basePipelineHandle =
458 (VkPipeline)((VkUniqueObject *)pCreateInfos[idx0].basePipelineHandle)->actualObject;
460 if (pCreateInfos[idx0].layout) {
461 local_pCreateInfos[idx0].layout = (VkPipelineLayout)((VkUniqueObject *)pCreateInfos[idx0].layout)->actualObject
    [all...]
object_tracker.h     [all...]
  /external/eigen/test/
visitor.cpp 101 Index idx0 = internal::random<Index>(0,size-1); local
105 v1(idx0) = v1(idx1);
106 v2(idx0) = v2(idx2);
109 VERIFY(eigen_minidx == (std::min)(idx0,idx1));
110 VERIFY(eigen_maxidx == (std::min)(idx0,idx2));
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 199 u32 idx0 = *meta; local
203 u32 idx = idx0;
226 if (*meta != idx0) {
227 idx0 = *meta;
237 mys->next = idx0;
238 if (atomic_compare_exchange_strong((atomic_uint32_t*)meta, &idx0,
  /external/v8/test/webkit/
date-set-to-nan.js 300 for (var idx0 in testValues)
301 if (idx0 != 0) {
303 var setResult = date["set" + functionNameRoot](testValues[idx0]);
306 + testValues[idx0] + ") was "
328 for (var idx0 in testValues)
330 if (idx0 != 0 || idx1 != 0) {
332 var setResult = date["set" + functionNameRoot](testValues[idx0],
337 + testValues[idx0] + ", "
358 for (var idx0 in testValues)
361 if (idx0 != 0 || idx1 != 0 || idx2 != 0)
    [all...]
  /external/freetype/src/autofit/
afwarp.c 81 FT_Int idx_min, idx_max, idx0; local
89 idx0 = xx1 - warper->t1;
124 FT_Pos y = y0 + ( idx_min - idx0 );
141 AF_WarpScore distort = base_distort + ( idx - idx0 );
151 warper->best_delta = delta + ( idx - idx0 );
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/autofit/
afwarp.c 81 FT_Int idx_min, idx_max, idx0; local
89 idx0 = xx1 - warper->t1;
124 FT_Pos y = y0 + ( idx_min - idx0 );
141 AF_WarpScore distort = base_distort + ( idx - idx0 );
151 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 597 int i, idx0, idx1, idx2, idx3, idx4, lag; local
607 idx0 = idx1 = idx2 = idx3 = idx4 = 0;
612 idx0 = lpcStartLine[LOFILT];
614 idx1 = idx0 + i / 4;
615 idx2 = idx0 + i / 2;
616 idx3 = idx0 + i * 3 / 4;
623 idx0 = lpcStartLine[LOFILT];
631 INT sc1 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx0, idx1);
638 for (nsc1=1; (1<<nsc1)<(idx1-idx0); nsc1++);
644 rxx1_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, 0, 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 193 int idx0 = Collation.indexFromCE32(ce32); local
197 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
211 int idx0 = Collation.indexFromCE32(ce32); local
215 if (data.ces[idx0 + i] != baseData.ces[idx1 + i]) {
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 191 int idx0 = Collation.indexFromCE32(ce32); local
195 if (data.ce32s[idx0 + i] != baseData.ce32s[idx1 + i]) {
209 int idx0 = Collation.indexFromCE32(ce32); local
213 if (data.ces[idx0 + i] != baseData.ces[idx1 + i]) {
  /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/opencv3/modules/core/test/
test_mat.cpp 675 int idx0[] = {3,4,5}, idx1[] = {0, 9, 7}; local
678 cvSetRealND(&matA, idx0, val0);
680 cvSetND(&matB, idx0, val1);
684 if( A.at<float>(idx0[0], idx0[1], idx0[2]) != val0 ||
686 cvGetReal3D(&matA, idx0[0], idx0[1], idx0[2]) != val0 ||
689 Scalar(B.at<Vec4s>(idx0[0], idx0[1], idx0[2])) != val1 |
    [all...]
test_ds.cpp 614 int idx0 = (unsigned)idx < (unsigned)(sseq->count) ? idx : idx < 0 ? local
616 int bad_range = (unsigned)idx0 >= (unsigned)(sseq->count);
629 !memcmp( elem, cvTsSimpleSeqElem(sseq, idx0), sseq->elem_size ),
633 CV_TS_SEQ_CHECK_CONDITION( idx >= 0 && idx == idx0,
1135 int idx0 = cvtest::randInt(rng) % sseq->count, idx = 0; local
1176 int idx0 = cvtest::randInt(rng) % sseq->count, idx = 0; local
1235 int idx, idx0; local
1447 int idx, idx0; local
    [all...]
  /external/opencv3/modules/imgproc/src/
histogram.cpp 321 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
323 if( (unsigned)idx0 < (unsigned)size_[0] && (unsigned)idx1 < (unsigned)size_[1] )
324 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0) )[idx1].fetch_and_add(1);
333 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
335 if( (unsigned)idx0 < (unsigned)size_[0] && (unsigned)idx1 < (unsigned)size_[1] )
336 ((tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0))[idx1].fetch_and_add(1);
397 int idx0 = cvFloor(*p0*a_[0] + b_[0]);
400 if( (unsigned)idx0 < (unsigned)size_[0] &&
404 ( (tbb::atomic<int>*)(globalHistogram_ + hstep_[0]*idx0 + hstep_[1]*idx1) )[idx2].fetch_and_add(1);
414 int idx0 = cvFloor(*p0*a_[0] + b_[0])
    [all...]
  /external/opencv3/modules/ml/src/
kdtree.cpp 218 int idx0 = (int)(ptofs[first]/step);
219 int idx = _copyData ? ptpos++ : idx0;
228 labels[idx] = _labels_data ? _labels_data[idx0] : idx0;
  /external/opencv3/modules/core/include/opencv2/core/
core_c.h 646 @param idx0 The first zero-based component of the element index
649 CVAPI(uchar*) cvPtr1D( const CvArr* arr, int idx0, int* type CV_DEFAULT(NULL));
651 CVAPI(uchar*) cvPtr2D( const CvArr* arr, int idx0, int idx1, int* type CV_DEFAULT(NULL) );
653 CVAPI(uchar*) cvPtr3D( const CvArr* arr, int idx0, int idx1, int idx2,
674 @param idx0 The first zero-based component of the element index
676 CVAPI(CvScalar) cvGet1D( const CvArr* arr, int idx0 );
678 CVAPI(CvScalar) cvGet2D( const CvArr* arr, int idx0, int idx1 );
680 CVAPI(CvScalar) cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 );
696 @param idx0 The first zero-based component of the element index
698 CVAPI(double) cvGetReal1D( const CvArr* arr, int idx0 );
    [all...]
mat.hpp     [all...]
  /external/libvpx/libvpx/vp8/common/mips/msa/
vp8_macros_msa.h 438 Details : 'Idx0' word element from input vector 'in0' is copied to the
447 #define ST4x4_UB(in0, in1, idx0, idx1, idx2, idx3, pdst, stride) \
452 out0_m = __msa_copy_u_w((v4i32)in0, idx0); \
    [all...]
  /external/libvpx/libvpx/vpx_dsp/mips/
macros_msa.h 498 Details : 'Idx0' word element from input vector 'in0' is copied to the
507 #define ST4x4_UB(in0, in1, idx0, idx1, idx2, idx3, pdst, stride) { \
511 out0_m = __msa_copy_u_w((v4i32)in0, idx0); \
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/opencv3/apps/traincascade/
old_ml_inner_functions.cpp     [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 707 u4 idx0 = dexParameterIteratorNextIndex(&iterator0); local
715 if (idx0 == kDexNoIndex) {
719 if (idx0 < idx1) {
721 } else if (idx0 > idx1) {
    [all...]
  /external/opencv3/modules/core/src/
matrix.cpp     [all...]

Completed in 1732 milliseconds

1 2