Home
last modified time | relevance | path

Searched refs:idx0 (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/v8/test/webkit/
Ddate-set-to-nan.js300 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/chromium_org/third_party/freetype/src/autofit/
Dafwarp.c81 FT_Int idx_min, idx_max, idx0; in af_warper_compute_line_best() local
89 idx0 = xx1 - warper->t1; in af_warper_compute_line_best()
124 FT_Pos y = y0 + ( idx_min - idx0 ); in af_warper_compute_line_best()
141 AF_WarpScore distort = base_distort + ( idx - idx0 ); in af_warper_compute_line_best()
151 warper->best_delta = delta + ( idx - idx0 ); in af_warper_compute_line_best()
/external/freetype/src/autofit/
Dafwarp.c81 FT_Int idx_min, idx_max, idx0; in af_warper_compute_line_best() local
89 idx0 = xx1 - warper->t1; in af_warper_compute_line_best()
124 FT_Pos y = y0 + ( idx_min - idx0 ); in af_warper_compute_line_best()
141 AF_WarpScore distort = base_distort + ( idx - idx0 ); in af_warper_compute_line_best()
151 warper->best_delta = delta + ( idx - idx0 ); in af_warper_compute_line_best()
/external/opencv/cv/include/
Dcvcompat.h479 #define cvQueryHistValue_1D( hist, idx0 ) \ argument
480 ((float)cvGetReal1D( (hist)->bins, (idx0)))
481 #define cvQueryHistValue_2D( hist, idx0, idx1 ) \ argument
482 ((float)cvGetReal2D( (hist)->bins, (idx0), (idx1)))
483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \ argument
484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2)))
490 #define cvGetHistValue_1D( hist, idx0 ) \ argument
491 ((float*)cvPtr1D( (hist)->bins, (idx0), 0))
492 #define cvGetHistValue_2D( hist, idx0, idx1 ) \ argument
493 ((float*)cvPtr2D( (hist)->bins, (idx0), (idx1), 0))
[all …]
/external/opencv/cxcore/include/
Dcxcore.h338 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,
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 );
360 CVAPI(double) cvGetReal3D( const CvArr* arr, int idx0, int idx1, int idx2 );
364 CVAPI(void) cvSet1D( CvArr* arr, int idx0, CvScalar value );
[all …]
/external/aac/libAACenc/src/
Daacenc_tns.cpp626 int i, idx0, idx1, idx2, idx3, idx4, lag; in FDKaacEnc_MergedAutoCorrelation() local
639 idx0 = lpcStartLine[LOFILT]; in FDKaacEnc_MergedAutoCorrelation()
641 idx1 = idx0 + i / 4; in FDKaacEnc_MergedAutoCorrelation()
642 idx2 = idx0 + i / 2; in FDKaacEnc_MergedAutoCorrelation()
643 idx3 = idx0 + i * 3 / 4; in FDKaacEnc_MergedAutoCorrelation()
650 idx0 = lpcStartLine[LOFILT]; in FDKaacEnc_MergedAutoCorrelation()
658 INT sc1 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx0, idx1); in FDKaacEnc_MergedAutoCorrelation()
665 for (nsc1=1; (1<<nsc1)<(idx1-idx0); nsc1++); in FDKaacEnc_MergedAutoCorrelation()
671 rxx1_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, 0, nsc1); in FDKaacEnc_MergedAutoCorrelation()
686 FIXP_DBL x1 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, lag, nsc1); in FDKaacEnc_MergedAutoCorrelation()
/external/openssh/
Dkey.c424 u_int idx0, idx1, idx2, idx3, idx4; in key_fingerprint_bubblebabble() local
426 idx0 = (((((u_int)(dgst_raw[2 * i])) >> 6) & 3) + in key_fingerprint_bubblebabble()
431 retval[j++] = vowels[idx0]; in key_fingerprint_bubblebabble()
445 idx0 = seed % 6; in key_fingerprint_bubblebabble()
448 retval[j++] = vowels[idx0]; in key_fingerprint_bubblebabble()
/external/opencv/ml/src/
Dml_inner_functions.cpp1664 int idx0 = idx[tflag ^ 1];
1667 if( sample_idx && sample_idx->data.ptr[idx0*sample_idx_step] == 0 )
1670 assert( sparse_rows[idx0] != 0 );
/external/clang/lib/CodeGen/
DCGObjCMac.cpp1688 unsigned idx0, in getConstantGEP() argument
1691 llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0), in getConstantGEP()