/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationSimplifier.java | 141 for (int offset = 0; offset < codeLength; offset++) 143 if (partialEvaluator.isTraced(offset)) 146 offset); 148 instruction.accept(clazz, method, codeAttribute, offset, this); 159 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction) 185 replaceIntegerPushInstruction(clazz, offset, simpleInstruction); 204 replaceLongPushInstruction(clazz, offset, simpleInstruction); 217 replaceFloatPushInstruction(clazz, offset, simpleInstruction) [all...] |
LivenessAnalyzer.java | 83 * at the given offset. 94 * at the given offset. 114 * at the given offset. 125 * at the given offset. 145 * instruction at the given offset. 156 * instruction at the given offset. 213 for (int offset = codeLength - 1; offset >= 0; offset--) 215 if (partialEvaluator.isTraced(offset)) [all...] |
EvaluationShrinker.java | 165 for (int offset = 0; offset < codeLength; offset++) 167 if (partialEvaluator.isTraced(offset)) 170 offset); 172 instruction.accept(clazz, method, codeAttribute, offset, unusedParameterSimplifier); 192 for (int offset = 0; offset < codeLength; offset++) 194 if (partialEvaluator.isTraced(offset)) 230 int offset = maxMarkedOffset; local 303 int offset = maxMarkedOffset; local 379 int offset = 0; local 860 int offset = producerOffsets.instructionOffset(offsetIndex); local 952 int offset = producerOffsets.instructionOffset(offsetIndex); local [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
BytecodeArray.java | 107 * Don't record the previous offset here, so that we get to see the 115 * Finds the offset to each instruction in the bytecode array. The 116 * result is a bit set with the offset of each opcode-per-se flipped on. 138 * the indicated offset (that is, the bit index), repeating until the 151 int offset = Bits.findFirst(workSet, 0); local 152 if (offset < 0) { 155 Bits.clear(workSet, offset); 156 parseInstruction(offset, visitor); 157 visitor.setPreviousOffset(offset); 162 * Parses the instruction at the indicated offset. Indicate th [all...] |
/dalvik/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
Chunk.java | 25 * The "offset" and "length" fields are present so handlers can over-allocate 35 public int offset, length; // position within "data" field in class:Chunk 45 public Chunk(int type, byte[] data, int offset, int length) { 48 this.offset = offset; 54 * offset 0 and continue to the current position. 60 this.offset = buf.arrayOffset();
|
/dalvik/libcore/luni/src/main/java/java/io/ |
OutputStream.java | 87 * position {@code offset} to this stream. 91 * @param offset 99 * if {@code offset < 0} or {@code count < 0}, or if 100 * {@code offset + count} is bigger than the length of 103 public void write(byte[] buffer, int offset, int count) throws IOException { 112 // used (offset | count) < 0 instead of (offset < 0) || (count < 0) 117 if ((offset | count) < 0 || count > buffer.length - offset) { 121 for (int i = offset; i < offset + count; i++) [all...] |
/external/elfutils/libdw/ |
dwarf_getstring.c | 24 dwarf_getstring (dbg, offset, lenp) 26 Dwarf_Off offset; 33 || offset >= dbg->sectiondata[IDX_debug_str]->d_size) 41 + offset); 43 dbg->sectiondata[IDX_debug_str]->d_size - offset);
|
dwarf_offdie.c | 1 /* Return DIE at given offset. 24 dwarf_offdie (dbg, offset, result) 26 Dwarf_Off offset; 32 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size) 42 result->addr = (char *) dbg->sectiondata[IDX_debug_info]->d_buf + offset; 45 result->cu = __libdw_findcu (dbg, offset);
|
/external/webkit/JavaScriptCore/pcre/ |
pcre_ucp_searchfuncs.cpp | 95 int offset = ucp_table[mid].f1 & f1_casemask; local 96 if (offset & f1_caseneg) 97 offset |= f1_caseneg; 98 return !offset ? -1 : c + offset;
|
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/ |
CharacterDataImpl.java | 46 public void deleteData(int offset, int count) throws DOMException { 47 buffer.delete(offset, offset + count); 70 public void insertData(int offset, String arg) throws DOMException { 72 buffer.insert(offset, arg); 78 public void replaceData(int offset, int count, String arg) 81 buffer.replace(offset, offset + count, arg); 91 public String substringData(int offset, int count) throws DOMException { 93 return buffer.substring(offset, offset + count) [all...] |
/dalvik/libcore/nio/src/main/java/java/nio/ |
DoubleArrayBuffer.java | 36 protected final int offset; field in class:DoubleArrayBuffer 46 DoubleArrayBuffer(int capacity, double[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
FloatArrayBuffer.java | 36 protected final int offset; field in class:FloatArrayBuffer 46 FloatArrayBuffer(int capacity, float[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
IntArrayBuffer.java | 36 protected final int offset; field in class:IntArrayBuffer 46 IntArrayBuffer(int capacity, int[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
LongArrayBuffer.java | 36 protected final int offset; field in class:LongArrayBuffer 46 LongArrayBuffer(int capacity, long[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
ShortArrayBuffer.java | 36 protected final int offset; field in class:ShortArrayBuffer 46 ShortArrayBuffer(int capacity, short[] backingArray, int offset) { 49 this.offset = offset; 57 return backingArray[offset + position++]; 65 return backingArray[offset + index]; 77 System.arraycopy(backingArray, offset + position, dest, off, len);
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/ |
q_pulse.h | 66 void dec_1p_N1(int32 index, int16 N, int16 offset, int16 pos[]); 67 void dec_2p_2N1(int32 index, int16 N, int16 offset, int16 pos[]); 68 void dec_3p_3N1(int32 index, int16 N, int16 offset, int16 pos[]); 69 void dec_4p_4N1(int32 index, int16 N, int16 offset, int16 pos[]); 70 void dec_4p_4N(int32 index, int16 N, int16 offset, int16 pos[]); 71 void dec_5p_5N(int32 index, int16 N, int16 offset, int16 pos[]); 72 void dec_6p_6N_2(int32 index, int16 N, int16 offset, int16 pos[]);
|
/frameworks/base/media/libstagefright/codecs/amrwb/src/ |
q_pulse.h | 66 void dec_1p_N1(int32 index, int16 N, int16 offset, int16 pos[]); 67 void dec_2p_2N1(int32 index, int16 N, int16 offset, int16 pos[]); 68 void dec_3p_3N1(int32 index, int16 N, int16 offset, int16 pos[]); 69 void dec_4p_4N1(int32 index, int16 N, int16 offset, int16 pos[]); 70 void dec_4p_4N(int32 index, int16 N, int16 offset, int16 pos[]); 71 void dec_5p_5N(int32 index, int16 N, int16 offset, int16 pos[]); 72 void dec_6p_6N_2(int32 index, int16 N, int16 offset, int16 pos[]);
|
/external/e2fsprogs/lib/blkid/ |
llseek.c | 41 extern long long llseek(int fd, long long offset, int origin); 69 static blkid_loff_t my_llseek(int fd, blkid_loff_t offset, int origin) 75 retval = _llseek(fd, ((unsigned long long) offset) >> 32, 76 ((unsigned long long)offset) & 0xffffffff, 79 retval = syscall(__NR__llseek, fd, ((unsigned long long) offset) >> 32, 80 ((unsigned long long)offset) & 0xffffffff, 90 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence) 96 (offset < ((blkid_loff_t) 1 << ((sizeof(off_t)*8) -1)))) 97 return lseek(fd, (off_t) offset, whence); 104 result = my_llseek(fd, offset, whence) [all...] |
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/ |
VerificationTypeVisitor.java | 36 public void visitIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, IntegerType integerType); 37 public void visitFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FloatType floatType); 38 public void visitLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LongType longType); 39 public void visitDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, DoubleType doubleType); 40 public void visitTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TopType topType); 41 public void visitObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ObjectType objectType); 42 public void visitNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, NullType nullType); 43 public void visitUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedType uninitializedType); 44 public void visitUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, UninitializedThisType uninitializedThisType); 46 public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerType integerType) [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
StringBuilder.java | 261 * @param offset 262 * the inclusive offset index. 267 * if {@code offset} and {@code len} do not specify a valid 271 public StringBuilder append(char[] str, int offset, int len) { 272 append0(str, offset, len); 366 * at the specified {@code offset}. The {@code boolean} value is converted 370 * @param offset 376 * if {@code offset} is negative or greater than the current 380 public StringBuilder insert(int offset, boolean b) { 381 insert0(offset, b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2 [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactLookupKey.java | 108 int offset = 0; local 116 while (offset < length) { 121 while (offset < length) { 122 c = string.charAt(offset++); 149 while (offset < length) { 150 c = string.charAt(offset++); 153 if (offset == length) { 157 c = string.charAt(offset); 161 offset++; 171 int start = offset; [all...] |
/external/opencore/codecs_v2/audio/mp3/dec/src/ |
pvmp3_getbits.cpp | 114 uint32 offset; local 127 offset = (ptBitStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT; 129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); 130 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)); 131 Elem2 = *(ptBitStream->pBuffer + module(offset + 2, BUFSIZE)); 132 Elem3 = *(ptBitStream->pBuffer + module(offset + 3, BUFSIZE)); 162 uint32 offset; local 168 offset = (ptBitStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT; 170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); 171 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)) 198 uint32 offset; local 236 uint32 offset; local [all...] |
/frameworks/base/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_getbits.cpp | 114 uint32 offset; local 127 offset = (ptBitStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT; 129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); 130 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)); 131 Elem2 = *(ptBitStream->pBuffer + module(offset + 2, BUFSIZE)); 132 Elem3 = *(ptBitStream->pBuffer + module(offset + 3, BUFSIZE)); 162 uint32 offset; local 168 offset = (ptBitStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT; 170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE)); 171 Elem1 = *(ptBitStream->pBuffer + module(offset + 1, BUFSIZE)) 198 uint32 offset; local 236 uint32 offset; local [all...] |
/frameworks/base/awt/java/awt/image/ |
ByteLookupTable.java | 29 * offset value. The offset value will be subtracted from the input values 43 * Instantiates a new ByteLookupTable with the specified offset value and 46 * @param offset 47 * the offset value. 51 public ByteLookupTable(int offset, byte[] data) { 52 super(offset, 1); 61 * Instantiates a new ByteLookupTable with the specified offset value and 65 * @param offset 66 * the offset value 97 int offset = getOffset(); local 127 int offset = getOffset(); local [all...] |
ShortLookupTable.java | 29 * image and an offset value. The offset value will be subtracted from the input 43 * Instantiates a new ShortLookupTable with the specified offset value and 46 * @param offset 47 * the offset value. 51 public ShortLookupTable(int offset, short[] data) { 52 super(offset, 1); 59 * Instantiates a new ShortLookupTable with the specified offset value and 63 * @param offset 64 * the offset value 104 int offset = getOffset(); local 124 int offset = getOffset(); local [all...] |