HomeSort by relevance Sort by last modified time
    Searched refs:curOffset (Results 1 - 17 of 17) sorted by null

  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimTlv.java 33 int curOffset;
43 curOffset = offset;
50 curOffset = curDataOffset + curDataLength;
67 return record[curOffset] & 0xff;
92 if (record[curOffset] == 0 || (record[curOffset] & 0xff) == 0xff) {
96 if ((record[curOffset + 1] & 0xff) < 0x80) {
98 curDataLength = record[curOffset + 1] & 0xff;
99 curDataOffset = curOffset + 2;
100 } else if ((record[curOffset + 1] & 0xff) == 0x81)
    [all...]
  /dalvik/vm/analysis/
VerifySubs.h 51 int curOffset);
55 int curOffset, bool selfOkay);
74 int curOffset, int* pOffset, bool* pConditional);
VerifySubs.c 173 * Verify a switch table. "curOffset" is the offset of the switch
177 int curOffset)
180 const u2* insns = meth->insns + curOffset;
188 assert(curOffset >= 0 && curOffset < insnCount);
192 if (curOffset + offsetToSwitch < 0 ||
193 curOffset + offsetToSwitch + 2 >= insnCount)
197 curOffset, offsetToSwitch, insnCount);
208 curOffset, offsetToSwitch);
235 if (curOffset + offsetToSwitch + tableSize > (u4) insnCount)
    [all...]
DexVerify.c 227 * Verify an array data table. "curOffset" is the offset of the fill-array-data
230 static bool checkArrayData(const Method* meth, int curOffset)
233 const u2* insns = meth->insns + curOffset;
238 assert(curOffset >= 0 && curOffset < insnCount);
242 if (curOffset + offsetToArrayData < 0 ||
243 curOffset + offsetToArrayData + 2 >= insnCount)
247 curOffset, offsetToArrayData, insnCount);
258 curOffset, offsetToArrayData);
268 if (curOffset + offsetToArrayData + tableSize > insnCount)
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
idnaconf.h 31 int curOffset;
idnaconf.cpp 45 curOffset = 0;
136 UChar c = base[curOffset];
138 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
158 if ( !(curOffset < len) ) return FALSE; // stream end
163 while (curOffset < len){
165 curOffset += t;
168 UChar c = base[curOffset];
169 if (c == BACKSLASH && curOffset < len -1){ // escaped new line mark
171 curOffset += 1 + t; // BACKSLAH and NewlineMar
    [all...]
  /external/icu4c/test/intltest/
idnaconf.h 31 int curOffset;
idnaconf.cpp 45 curOffset = 0;
136 UChar c = base[curOffset];
138 if ( c == CR && curOffset + 1 < len && base[curOffset + 1] == LF){
158 if ( !(curOffset < len) ) return FALSE; // stream end
163 while (curOffset < len){
165 curOffset += t;
168 UChar c = base[curOffset];
169 if (c == BACKSLASH && curOffset < len -1){ // escaped new line mark
171 curOffset += 1 + t; // BACKSLAH and NewlineMar
    [all...]
  /dalvik/vm/
LinearAlloc.c 119 * "curOffset" points to the location of the next pre-block header,
128 pHdr->curOffset = pHdr->firstOffset =
170 assert(*(u4*) (pHdr->mapAddr + pHdr->curOffset) == 0);
242 classLoader, pHdr->curOffset, pHdr->mapLength,
243 (pHdr->curOffset * 100) / pHdr->mapLength);
259 * We always leave "curOffset" pointing at the next place where we will
289 startOffset = pHdr->curOffset;
386 pHdr->curOffset = nextOffset;
426 getHeader(classLoader)->curOffset));
459 mem < (void*) (pHdr->mapAddr + pHdr->curOffset));
    [all...]
LinearAlloc.h 34 int curOffset; /* offset where next data goes */
Profile.h 58 volatile int curOffset;
Profile.c 408 state->curOffset = TRACE_HEADER_LEN;
538 * To avoid seeing partially-written data, we grab state->curOffset here,
552 int finalCurOffset = state->curOffset;
696 * Advance "curOffset" atomically.
699 oldOffset = state->curOffset;
706 &state->curOffset) != 0);
  /dalvik/vm/compiler/
Frontend.c 58 unsigned int curOffset,
131 *target = curOffset + (int) insn->dalvikInsn.vA;
140 *target = curOffset + (int) insn->dalvikInsn.vC;
149 *target = curOffset + (int) insn->dalvikInsn.vB;
417 unsigned int curOffset = currRun->frag.startOffset;
419 const u2 *codePtr = dexCode->insns + curOffset;
538 curBB->startOffset = curOffset;
542 curBB->startOffset = curOffset;
552 desc->method->name, curOffset);
563 insn->offset = curOffset;
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 71 private int offset = 0, curOffset = 0, nameLength;
127 curOffset = LOCHDR;
131 curOffset += EXTHDR;
149 curOffset += writeLong(cDir, def.getTotalOut());
152 curOffset += writeLong(cDir, crc.tbytes);
155 curOffset += writeShort(cDir, nameLength);
157 curOffset += writeShort(cDir, currentEntry.extra.length);
176 offset += curOffset;
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java     [all...]
  /dalvik/vm/oo/
Class.c     [all...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 297 milliseconds