/external/icu4c/tools/gencnval/ |
gencnval.c | 646 uint32_t idx, idx2; local 692 for (idx2 = 0; idx2 < tags[standard].aliasList[idx].aliasCount; idx2++) { 693 uint16_t aliasNum = tags[standard].aliasList[idx].aliases[idx2]; 795 uint16_t idx, idx2, idx3; local 798 for (idx2 = 0; idx2 < converterCount; idx2++) { 799 for (idx3 = 0; idx3 < tags[idx].aliasList[idx2].aliasCount; idx3++) [all...] |
/external/llvm/lib/CodeGen/ |
TargetInstrInfoImpl.cpp | 68 unsigned Idx1, Idx2; 69 if (!findCommutedOpIndices(MI, Idx1, Idx2)) { 76 assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() && 80 unsigned Reg2 = MI->getOperand(Idx2).getReg(); 83 unsigned SubReg2 = MI->getOperand(Idx2).getSubReg(); 85 bool Reg2IsKill = MI->getOperand(Idx2).isKill(); 94 MI->getDesc().getOperandConstraint(Idx2, MCOI::TIED_TO) == 0) { 119 MI->getOperand(Idx2).setReg(Reg1); 121 MI->getOperand(Idx2).setSubReg(SubReg1); 123 MI->getOperand(Idx2).setIsKill(Reg1IsKill) [all...] |
ShadowStackGC.cpp | 71 int Idx1, int Idx2, const char *Name); 350 int Idx, int Idx2, const char *Name) { 353 ConstantInt::get(Type::getInt32Ty(Context), Idx2) };
|
/external/valgrind/tsan/ |
suppressions.cc | 172 size_t idx2; local 173 while ((idx2 = s1.find(',')) != string::npos) { 174 supp->tools.insert(s1.substr(0, idx2)); 175 s1.erase(0, idx2 + 1);
|
/external/jdiff/src/jdiff/ |
Comments.java | 113 int idx2 = xsdFileName.lastIndexOf('/'); local 114 if (idx == -1 && idx2 == -1) { 116 } else if (idx == -1 && idx2 != -1) { 117 xsdFileName = xsdFileName.substring(0, idx2+1); 118 } else if (idx != -1 && idx2 == -1) { 120 } else if (idx != -1 && idx2 != -1) { 121 int max = idx2 > idx ? idx2 : idx;
|
CommentsHandler.java | 71 int idx2 = JDiff.newFileName.lastIndexOf('.'); local 73 "_to_" + JDiff.newFileName.substring(0, idx2);
|
RootDocToXML.java | 71 int idx2 = xsdFileName.lastIndexOf('/'); local 72 if (idx == -1 && idx2 == -1) { 74 } else if (idx == -1 && idx2 != -1) { 75 xsdFileName = xsdFileName.substring(0, idx2); 76 } else if (idx != -1 && idx2 == -1) { 78 } else if (idx != -1 && idx2 != -1) { 79 int max = idx2 > idx ? idx2 : idx; [all...] |
/external/llvm/test/Feature/ |
recursivetype.ll | 99 %idx2 = getelementptr %list* %reg115, i64 0, i32 0 ; <%list**> [#uses=1] 100 %reg116 = load %list** %idx2 ; <%list*> [#uses=1]
|
/external/llvm/test/Transforms/ADCE/ |
basictest1.ll | 50 %idx2 = getelementptr %spec_fd_t* %reg1311, i64 0, i32 1 ; <i32*> [#uses=1] 51 %reg1331 = load i32* %idx2 ; <i32> [#uses=1]
|
basictest2.ll | 50 %idx2 = getelementptr %spec_fd_t* %reg1311, i64 0, i32 1 ; <i32*> [#uses=1] 51 %reg1331 = load i32* %idx2 ; <i32> [#uses=1]
|
/external/opencv/cv/src/ |
cvtemplmatch.cpp | 342 int idx = 0, idx2 = 0; local 482 idx2 = i * sqsum_step; 484 for( j = 0; j < result->cols; j++, idx += cn, idx2 += cn ) 505 t = q0[idx2+k] - q1[idx2+k] - q2[idx2+k] + q3[idx2+k];
|
cvemd.cpp | 100 int* idx2; member in struct:CvEMDState 309 int cj = state.idx2[j]; 361 sizeof( int ) + sizeof(CvNode2D*)) + /* idx1 & idx2 */ 388 state->idx2 = (int*) buffer; 421 state->idx2[dsize++] = i; 443 state->idx2[dsize++] = -1; 517 int cj = state->idx2[j]; [all...] |
/external/aac/libAACenc/src/ |
aacenc_tns.cpp | 628 int i, idx0, idx1, idx2, idx3, idx4, lag; local 644 idx2 = idx0 + i / 2; 654 idx2 = idx1 + i; 655 idx3 = idx2 + i; 661 INT sc2 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx1, idx2); 662 INT sc3 = FDKaacEnc_ScaleUpSpectrum(pSpectrum, spectrum, idx2, idx3); 668 for (nsc2=1; (1<<nsc2)<(idx2-idx1); nsc2++); 669 for (nsc3=1; (1<<nsc3)<(idx3-idx2); nsc3++); 674 rxx2_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx1, idx2, 0, nsc2); 675 rxx3_0 = FDKaacEnc_CalcAutoCorrValue(pSpectrum, idx2, idx3, 0, nsc3) [all...] |
/external/llvm/docs/ |
GetElementPtr.html | 177 %idx2 = getelementptr i32* %MyVar, i64 1 189 idx2 = (char*) &MyVar + 4 198 <p>The obtuse part of this example is in the cases of <tt>%idx2</tt> and 317 %idx2 = getelementptr { [10 x i32 ] }* %MyVar, i64 1 324 <tt>idx2</tt> computes the address of <i>the next</i> structure after 325 <tt>%MyVar</tt>. The type of <tt>idx2</tt> is <tt>{ [10 x i32] }*</tt> and its 346 %idx2 = getelementptr { [10 x i32 ] }* %MyVar, i64 1 351 its type is <tt>i32*</tt>. The value of <tt>%idx2</tt> is also
|
/frameworks/base/graphics/java/android/renderscript/ |
Mesh.java | 749 * @param idx2 index of the second vertex in the triangle 754 public TriangleMeshBuilder addTriangle(int idx1, int idx2, int idx3) { 756 (idx2 >= mMaxIndex) || (idx2 < 0) || 766 mIndexData[mIndexCount++] = (short)idx2;
|
/hardware/ti/wlan/wl1271/CUDK/configurationutility/src/ |
wpa_core.c | 828 S32 idx, idx2; local 834 for (idx2=0; idx2 < pWpaCore->WpaSupplParams.wep_key_length; idx2++) 836 os_sprintf(TempBuf, (PS8)"%02x", pWpaCore->WpaSupplParams.wep_key[idx][idx2]);
|
/external/dropbear/libtomcrypt/src/math/fp/ |
ltc_ecc_fp_mulmod.c | 1114 int idx1, idx2, err; local [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; 880 q = idata + row2*step + (idx2 - row2*cols)*elem_size; 888 int idx1 = pair_buf[j], idx2 = pair_buf[j+1], row1, row2; local 890 row1 = idx1/step; row2 = idx2/step; 892 q = data + row2*step + (idx2 - row2*cols)*elem_size; [all...] |
/dalvik/libdex/ |
DexProto.cpp | 297 u4 idx2 = dexTypeListGetIdx(typeList2, i); local 300 dexStringByTypeIdx(dexFile2, idx2));
|
/external/opencv/cv/include/ |
cvcompat.h | 483 #define cvQueryHistValue_3D( hist, idx0, idx1, idx2 ) \ 484 ((float)cvGetReal3D( (hist)->bins, (idx0), (idx1), (idx2))) 494 #define cvGetHistValue_3D( hist, idx0, idx1, idx2 ) \ 495 ((float*)cvPtr3D( (hist)->bins, (idx0), (idx1), (idx2), 0)) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/effect/ |
ParticleEmitter.java | 938 private void swap(int idx1, int idx2) { 940 particles[idx1] = particles[idx2]; 941 particles[idx2] = p1; [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Blend.cpp | 469 unsigned char idx2 = imgMos.Y.ptr[y][x+1]; local 474 imgMos.V.ptr[y][x - o] = idx2; 522 unsigned char idx2 = imgMos.Y.ptr[y+1][x]; local 527 imgMos.V.ptr[y - o][x] = idx2; [all...] |
/external/llvm/utils/TableGen/ |
CodeGenRegisters.cpp | [all...] |
/external/opencv/cxcore/include/ |
cxcore.h | 340 CVAPI(uchar*) cvPtr3D( const CvArr* arr, int idx0, int idx1, int idx2, 354 CVAPI(CvScalar) cvGet3D( const CvArr* arr, int idx0, int idx1, int idx2 ); 360 CVAPI(double) cvGetReal3D( const CvArr* arr, int idx0, int idx1, int idx2 ); 366 CVAPI(void) cvSet3D( CvArr* arr, int idx0, int idx1, int idx2, CvScalar value ); 373 int idx1, int idx2, double value ); [all...] |
/external/openssh/ |
key.c | 424 u_int idx0, idx1, idx2, idx3, idx4; local 429 idx2 = ((((u_int)(dgst_raw[2 * i])) & 3) + 433 retval[j++] = vowels[idx2]; 447 idx2 = seed / 6; 450 retval[j++] = vowels[idx2]; [all...] |