/external/llvm/test/CodeGen/SystemZ/ |
02-MemArith.ll | 7 %idx2 = add i64 %idx, 1 ; <i64> [#uses=1] 8 %ptr = getelementptr i32* %b, i64 %idx2 ; <i32*> [#uses=1] 18 %idx2 = add i64 %idx, -1 ; <i64> [#uses=1] 19 %ptr = getelementptr i32* %b, i64 %idx2 ; <i32*> [#uses=1] 29 %idx2 = add i64 %idx, 1 ; <i64> [#uses=1] 30 %ptr = getelementptr i64* %b, i64 %idx2 ; <i64*> [#uses=1] 40 %idx2 = add i64 %idx, 1 ; <i64> [#uses=1] 41 %ptr = getelementptr i32* %b, i64 %idx2 ; <i32*> [#uses=1] 51 %idx2 = add i64 %idx, -1 ; <i64> [#uses=1] 52 %ptr = getelementptr i32* %b, i64 %idx2 ; <i32*> [#uses=1 [all...] |
/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 | 67 unsigned Idx1, Idx2; 68 if (!findCommutedOpIndices(MI, Idx1, Idx2)) { 75 assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() && 78 unsigned Reg2 = MI->getOperand(Idx2).getReg(); 80 bool Reg2IsKill = MI->getOperand(Idx2).isKill(); 109 MI->getOperand(Idx2).setReg(Reg1); 111 MI->getOperand(Idx2).setIsKill(Reg1IsKill);
|
ShadowStackGC.cpp | 71 int Idx1, int Idx2, const char *Name); 339 int Idx, int Idx2, const char *Name) { 342 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/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 | 694 * @param idx2 index of the second vertex in the triangle 699 public TriangleMeshBuilder addTriangle(int idx1, int idx2, int idx3) { 701 (idx2 >= mVtxCount) || (idx2 < 0) || 711 mIndexData[mIndexCount++] = (short)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));
|
DexSwapVerify.cpp | 1035 u4 idx2 = dexTypeListGetIdx(interfaces, j); local [all...] |
/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...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Blend.cpp | 438 unsigned char idx2 = imgMos.Y.ptr[y][x+1]; local 443 imgMos.V.ptr[y][x - o] = idx2; 491 unsigned char idx2 = imgMos.Y.ptr[y+1][x]; local 496 imgMos.V.ptr[y - o][x] = idx2; [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/llvm/utils/TableGen/ |
CodeGenRegisters.cpp | 485 // We don't care about the difference between (Idx1, Idx2) -> Idx2 and invalid
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
regcomp.c | 3414 int32_t idx1, idx2; local [all...] |
/external/iptables/libiptc/ |
libiptc.c | 613 unsigned int idx, idx2; local 631 iptcc_bsearch_chain_index(c2->name, &idx2, h); 632 if (idx != idx2) { [all...] |