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

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 379 int idx1 = enc[enc.length - 2] & 0xff; local
387 ASN1ObjectIdentifier[] first = cache[idx1];
390 first = cache[idx1] = new ASN1ObjectIdentifier[128];
404 idx1 = (idx1 + 1) & 0xff;
405 first = cache[idx1];
408 first = cache[idx1] = new ASN1ObjectIdentifier[128];
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 196 int idx1 = (int)boxes.size() - 1; local
197 boxes.push_back(boxes[idx1].merged(objBoxes[objCenters[mid].second]));
198 children.push_back(idx1);
206 int idx1 = (int)boxes.size() - 1; local
209 boxes.push_back(boxes[idx1].merged(boxes[idx2]));
210 children.push_back(idx1);
  /external/dropbear/libtomcrypt/src/math/fp/
ltc_ecc_fp_mulmod.c 1114 int idx1, idx2, err; local
    [all...]
  /external/chromium_org/v8/test/webkit/
date-set-to-nan.js 329 for (var idx1 in testValues)
330 if (idx0 != 0 || idx1 != 0) {
333 testValues[idx1]);
338 + testValues[idx1] + ") was "
359 for (var idx1 in testValues)
361 if (idx0 != 0 || idx1 != 0 || idx2 != 0) {
364 testValues[idx1],
369 + testValues[idx1] + ", "
391 for (var idx1 in testValues)
394 if (idx0 != 0 || idx1 != 0 || idx2 != 0 || idx3 != 0)
    [all...]
  /external/jdiff/src/jdiff/
CommentsHandler.java 70 int idx1 = JDiff.oldFileName.lastIndexOf('.'); local
72 String filename2 = JDiff.oldFileName.substring(0, idx1) +
  /external/aac/libAACenc/src/
aacenc_tns.cpp 626 int i, idx0, idx1, idx2, idx3, idx4, lag; local
641 idx1 = idx0 + i / 4;
651 idx1 = lpcStartLine[HIFILT];
652 idx2 = idx1 + i;
658 INT sc1 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx0, idx1);
659 INT sc2 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx1, idx2);
665 for (nsc1=1; (1<<nsc1)<(idx1-idx0); nsc1++);
666 for (nsc2=1; (1<<nsc2)<(idx2-idx1); nsc2++);
671 rxx1_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx0, idx1, 0, nsc1);
672 rxx2_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx1, idx2, 0, nsc2)
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
histogram.c 395 const uint32_t idx1 = MyRand(&seed) % out_size; local
398 const uint32_t idx2 = (idx1 + diff + 1) % out_size;
399 if (idx1 == idx2) {
403 curr_cost_diff = HistogramAddEval(out->histograms[idx1],
413 best_idx1 = idx1;
  /external/webp/src/enc/
histogram.c 395 const uint32_t idx1 = MyRand(&seed) % out_size; local
398 const uint32_t idx2 = (idx1 + diff + 1) % out_size;
399 if (idx1 == idx2) {
403 curr_cost_diff = HistogramAddEval(out->histograms[idx1],
413 best_idx1 = idx1;
  /frameworks/base/graphics/java/android/renderscript/
Mesh.java 749 * @param idx1 index of the first vertex in the triangle
755 public TriangleMeshBuilder addTriangle(int idx1, int idx2, int idx3) {
756 if((idx1 >= mMaxIndex) || (idx1 < 0) ||
766 mIndexData[mIndexCount++] = (short)idx1;
  /dalvik/libdex/
DexProto.cpp 296 u4 idx1 = dexTypeListGetIdx(typeList1, i); local
299 strcmp(dexStringByTypeIdx(dexFile1, idx1),
DexSwapVerify.cpp 734 u4 idx1 = dexParameterIteratorNextIndex(&iterator); local
736 if (idx1 == kDexNoIndex) {
745 if (idx0 < idx1) {
747 } else if (idx0 > idx1) {
1038 u4 idx1 = dexTypeListGetIdx(interfaces, i); local
    [all...]
  /external/opencv/cv/include/
cvcompat.h 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)))
492 #define cvGetHistValue_2D( hist, idx0, idx1 ) \
493 ((float*)cvPtr2D( (hist)->bins, (idx0), (idx1), 0))
494 #define cvGetHistValue_3D( hist, idx0, idx1, idx2 ) \
495 ((float*)cvPtr3D( (hist)->bins, (idx0), (idx1), (idx2), 0))
    [all...]
  /external/opencv/cv/src/
cvemd.cpp 99 int* idx1; member in struct:CvEMDState
308 int ci = state.idx1[i];
361 sizeof( int ) + sizeof(CvNode2D*)) + /* idx1 & idx2 */
385 state->idx1 = (int*) buffer;
406 state->idx1[ssize++] = i;
438 state->idx1[ssize++] = -1;
508 int ci = state->idx1[i];
    [all...]
  /external/opencv/cxcore/include/
cxcore.h 336 /* ptr = &arr(idx0,idx1,...). All indexes are zero-based,
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,...) */
353 CVAPI(CvScalar) cvGet2D( const CvArr* arr, int idx0, int idx1 );
354 CVAPI(CvScalar) cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 );
359 CVAPI(double) cvGetReal2D( const CvArr* arr, int idx0, int idx1 );
360 CVAPI(double) cvGetReal3D( const CvArr* arr, int idx0, int idx1, int idx2 );
363 /* arr(idx0,idx1,...) = value */
365 CVAPI(void) cvSet2D( CvArr* arr, int idx0, int idx1, CvScalar value )
    [all...]
  /external/opencv/cxcore/src/
cxutils.cpp 876 int idx1 = pair_buf[j], idx2 = pair_buf[j+1], row1, row2; local
878 row1 = idx1/step; row2 = idx2/step;
879 p = idata + row1*step + (idx1 - row1*cols)*elem_size;
888 int idx1 = pair_buf[j], idx2 = pair_buf[j+1], row1, row2; local
890 row1 = idx1/step; row2 = idx2/step;
891 p = data + row1*step + (idx1 - row1*cols)*elem_size;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 938 private void swap(int idx1, int idx2) {
939 Particle p1 = particles[idx1];
940 particles[idx1] = particles[idx2];
    [all...]
  /external/openssh/
key.c 424 u_int idx0, idx1, idx2, idx3, idx4; local
428 idx1 = (((u_int)(dgst_raw[2 * i])) >> 2) & 15;
432 retval[j++] = consonants[idx1];
446 idx1 = 16;
449 retval[j++] = consonants[idx1];
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbeaux.c 2915 u32 idx1; \/* Offset into aKey[] of next header element *\/ local
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 468 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
482 imgMos.V.ptr[y][x + o] = idx1;
521 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
535 imgMos.V.ptr[y + o][x] = idx1;
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Blend.cpp 468 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
482 imgMos.V.ptr[y][x + o] = idx1;
521 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
535 imgMos.V.ptr[y + o][x] = idx1;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.cpp 468 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
482 imgMos.V.ptr[y][x + o] = idx1;
521 unsigned char idx1 = imgMos.Y.ptr[y][x]; local
535 imgMos.V.ptr[y + o][x] = idx1;
    [all...]
  /art/runtime/
dex_file_verifier.cc 1608 uint32_t idx1 = interfaces->GetTypeItem(i).type_idx_; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regcomp.c 3414 int32_t idx1, idx2; local
    [all...]
  /external/opencv/ml/src/
ml_inner_functions.cpp     [all...]
  /external/guava/guava/lib/
jdiff.jar 

Completed in 801 milliseconds

1 2