Searched refs:nLocal (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_stat.c86 int nLocal; /* Bytes of local payload */ member in struct:StatCell
262 int nLocal; local
274 nLocal = nMinLocal + (nTotal - nMinLocal) % (nUsable - 4);
275 if( nLocal>nMaxLocal ) nLocal = nMinLocal;
276 *pnLocal = nLocal;
324 int nLocal; /* Bytes of payload stored locally */ local
331 getLocalPayload(nUsable, p->flags, nPayload, &nLocal);
332 pCell->nLocal = nLocal;
[all...]
H A DbtreeInt.h454 u16 nLocal; /* Amount of payload held locally */ member in struct:CellInfo
H A Dbtree.c922 pInfo->nLocal = (u16)nPayload;
944 pInfo->nLocal = (u16)surplus;
946 pInfo->nLocal = (u16)minLocal;
948 pInfo->iOverflow = (u16)(pInfo->nLocal + n);
3845 || &aPayload[pCur->info.nLocal] > &pPage->aData[pBt->usableSize]
3852 if( offset<pCur->info.nLocal ){
3854 if( a+offset>pCur->info.nLocal ){
3855 a = pCur->info.nLocal - offset;
3862 offset -= pCur->info.nLocal;
3869 nextPage = get4byte(&aPayload[pCur->info.nLocal]);
4029 u32 nLocal; local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dshowdb.c189 int nLocal, /* Bytes in a[] */
199 pLimit = &a[nLocal];
208 nLocal -= n;
257 int nLocal; local
269 nLocal = surplus;
271 nLocal = minLocal;
274 nLocal = nPayload;
276 return nLocal;
297 int nLocal; local
313 nLocal
187 describeContent( unsigned char *a, int nLocal, char *zDesc ) argument
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
H A DFrameNode.java91 * @param nLocal number of local variables of this stack map frame.
104 final int nLocal,
114 this.local = asList(nLocal, local);
118 this.local = asList(nLocal, local);
121 this.local = asList(nLocal, local);
102 FrameNode( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DMethodNode.java233 final int nLocal,
238 instructions.add(new FrameNode(type, nLocal, local == null
231 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DMethodAdapter.java85 final int nLocal,
90 mv.visitFrame(type, nLocal, local, nStack, stack);
83 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DMethodVisitor.java122 * locals are defined (<code>nLocal</code> is 1, 2 or 3 and
136 * @param nLocal the number of local variables in the visited frame.
153 int nLocal,
151 visitFrame( int type, int nLocal, Object[] local, int nStack, Object[] stack) argument
H A DMethodWriter.java269 * values. In summary frame[0] = offset, frame[1] = nLocal, frame[2] =
270 * nStack, frame[3] = nLocal. All types are encoded as integers, with the
542 final int nLocal,
552 startFrame(code.length, nLocal, nStack);
553 for (int i = 0; i < nLocal; ++i) {
591 .putShort(nLocal);
592 for (int i = 0; i < nLocal; ++i) {
601 stackMap.putByte(SAME_FRAME_EXTENDED + nLocal)
603 for (int i = 0; i < nLocal; ++i) {
608 stackMap.putByte(SAME_FRAME_EXTENDED - nLocal)
540 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
1578 startFrame(final int offset, final int nLocal, final int nStack) argument
[all...]
H A DFrame.java1251 int nLocal = inputLocals.length;
1254 frame.inputLocals = new int[nLocal];
1258 for (i = 0; i < nLocal; ++i) {
1284 for (i = 0; i < nLocal; ++i) {
/external/mockito/cglib-and-asm/src/org/mockito/asm/util/
H A DASMifierMethodVisitor.java93 final int nLocal,
102 declareFrameTypes(nLocal, local);
109 buf.append(nLocal).append(", new Object[] {");
110 appendFrameTypes(nLocal, local);
116 declareFrameTypes(nLocal, local);
118 .append(nLocal)
120 appendFrameTypes(nLocal, local);
125 .append(nLocal)
91 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DCheckMethodAdapter.java357 final int nLocal,
391 if (nLocal > mLocal) {
392 throw new IllegalArgumentException("Invalid nLocal=" + nLocal
401 if (nLocal > 0 && (local == null || local.length < nLocal)) {
402 throw new IllegalArgumentException("Array local[] is shorter than nLocal");
404 for (int i = 0; i < nLocal; ++i) {
415 mv.visitFrame(type, nLocal, local, nStack, stack);
355 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
H A DTraceMethodVisitor.java169 final int nLocal,
181 appendFrameTypes(nLocal, local);
188 appendFrameTypes(nLocal, local);
192 buf.append("CHOP ").append(nLocal);
206 mv.visitFrame(type, nLocal, local, nStack, stack);
167 visitFrame( final int type, final int nLocal, final Object[] local, final int nStack, final Object[] stack) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DMethodVisitorTee.java29 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
30 mv1.visitFrame(type, nLocal, local, nStack, stack);
31 mv2.visitFrame(type, nLocal, local, nStack, stack);
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c46656 u16 nLocal; /* Amount of payload held locally */ member in struct:CellInfo
51148 u32 nLocal; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c51059 u16 nLocal; /* Amount of payload held locally */ member in struct:CellInfo
[all...]
/external/sqlite/dist/
H A Dsqlite3.c51079 u16 nLocal; /* Amount of payload held locally */ member in struct:CellInfo
[all...]

Completed in 3107 milliseconds