HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 76 - 100 of 4718) sorted by null

1 2 34 5 6 7 8 91011>>

  /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...]
  /external/webkit/Source/WebCore/platform/graphics/filters/
FELighting.cpp 68 inline void FELighting::LightingData::topLeft(int offset, IntPoint& normalVector)
70 int center = static_cast<int>(pixels->get(offset + cAlphaChannelOffset));
71 int right = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
72 offset += widthMultipliedByPixelSize;
73 int bottom = static_cast<int>(pixels->get(offset + cAlphaChannelOffset));
74 int bottomRight = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset));
79 inline void FELighting::LightingData::topRow(int offset, IntPoint& normalVector)
81 int left = static_cast<int>(pixels->get(offset - cPixelSize + cAlphaChannelOffset));
82 int center = static_cast<int>(pixels->get(offset + cAlphaChannelOffset));
83 int right = static_cast<int>(pixels->get(offset + cPixelSize + cAlphaChannelOffset))
260 int offset = 0; local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
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...]
  /frameworks/base/media/libstagefright/
ESDS.cpp 70 size_t offset, size_t size,
76 *tag = mData[offset++];
86 uint8_t x = mData[offset++];
100 *data_offset = offset;
123 status_t ESDS::parseESDescriptor(size_t offset, size_t size) {
128 offset += 2; // skip ES_ID
131 unsigned streamDependenceFlag = mData[offset] & 0x80;
132 unsigned URL_Flag = mData[offset] & 0x40;
133 unsigned OCRstreamFlag = mData[offset] & 0x20;
135 ++offset;
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 260 * @param offset
261 * the inclusive offset index.
266 * if {@code offset} and {@code len} do not specify a valid
270 public StringBuilder append(char[] str, int offset, int len) {
271 append0(str, offset, len);
365 * at the specified {@code offset}. The {@code boolean} value is converted
369 * @param offset
375 * if {@code offset} is negative or greater than the current
379 public StringBuilder insert(int offset, boolean b) {
380 insert0(offset, b ? "true" : "false")
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactLookupKey.java 123 int offset = 0; local
131 while (offset < length) {
136 while (offset < length) {
137 c = string.charAt(offset++);
164 while (offset < length) {
165 c = string.charAt(offset++);
168 if (offset == length) {
172 c = string.charAt(offset);
176 offset++;
186 int start = offset;
    [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...]
  /libcore/luni/src/main/java/sun/misc/
Unsafe.java 56 * Gets the raw byte offset from the start of an object's memory to
61 * @return the offset to the field
77 * @return the offset to the field
82 * Gets the offset from the start of an array object's memory to
86 * @return the offset to the initial element
101 * @return the offset to the field
124 * @return the offset to the field
133 * @param offset offset to the field within <code>obj</code>
140 public native boolean compareAndSwapInt(Object obj, long offset,
    [all...]
  /external/e2fsprogs/lib/ext2fs/
llseek.c 42 extern long long llseek (int fd, long long offset, int origin);
70 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
76 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
78 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
80 ((unsigned long long) offset) & 0xffffffff,
90 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
96 (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1))))
97 return lseek(fd, (off_t) offset, origin);
104 result = my_llseek (fd, offset, origin);
122 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 49 * Returns whether the instruction at the given offset is reachable in
52 public boolean isReachable(int offset)
54 return isReachable[offset];
65 for (int offset = startOffset; offset < endOffset; offset++)
67 if (isReachable[offset])
116 public void visitSimpleInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction)
132 public void visitConstantInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction)
137 public void visitVariableInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction
    [all...]
  /frameworks/base/media/libstagefright/codecs/aacdec/
getbits.h 103 UInt offset; local
107 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
109 pElem = pInputStream->pBuffer + offset;
113 offset = pInputStream->inputBufferCurrentLength - offset;
115 if (offset > 3)
132 switch (offset)
175 UInt offset; local
179 offset = (pInputStream->usedBits) >> INBUF_ARRAY_INDEX_SHIFT;
181 pElem = pInputStream->pBuffer + offset;
210 UInt offset; local
274 UInt offset; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SuballocatedIntVector.java 162 int offset=m_firstFree&m_MASK; local
174 block[offset]=value;
179 m_buildCacheStartIndex = m_firstFree-offset;
200 int offset=m_firstFree&m_MASK; local
214 int copied=(m_blocksize-offset < numberOfElements)
215 ? m_blocksize-offset : numberOfElements;
218 block[offset++]=value;
220 ++index;offset=0;
272 int offset=at&m_MASK; local
273 block[offset]=value
281 int offset=at&m_MASK; local
352 int offset=at&m_MASK; local
394 int offset=at&m_MASK; local
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_location.py 5 def assert_location(loc, line, column, offset):
8 assert loc.offset == offset
16 assert_location(n.location,line=1,column=5,offset=4)
18 assert_location(n.location,line=2,column=5,offset=13)
25 assert_location(n.location,line=2,column=5,offset=5)
27 assert_location(n.location,line=3,column=5,offset=14)
34 assert_location(n.location,line=1,column=6,offset=5)
36 assert_location(n.location,line=2,column=5,offset=14)
44 assert_location(n.extent.start,line=1,column=1,offset=0
    [all...]
  /external/webkit/Source/WebCore/platform/network/
BlobData.h 67 , offset(0)
77 , offset(0)
87 , offset(0)
94 BlobDataItem(const String& path, long long offset, long long length, double expectedModificationTime)
97 , offset(offset)
104 BlobDataItem(const KURL& url, long long offset, long long length)
107 , offset(offset)
127 long long offset; member in struct:WebCore::BlobDataItem
    [all...]
  /libcore/luni/src/main/java/java/net/
DatagramPacket.java 47 int offset = 0; field in class:DatagramPacket
65 * {@code length} bytes with a specified buffer offset.
69 * @param offset
70 * the offset of the byte array where the bytes is written.
74 public DatagramPacket(byte[] data, int offset, int length) {
75 setData(data, offset, length);
82 * length} bytes from the byte array position {@code offset} are sent.
86 * @param offset
87 * the offset of {@code data} where to read from.
95 public DatagramPacket(byte[] data, int offset, int length
    [all...]
  /external/elfutils/libelf/
gelf_getverdaux.c 1 /* Get additional symbol version definition information at the given offset.
30 gelf_getverdaux (data, offset, dst)
32 int offset;
55 if (unlikely (offset < 0)
56 || unlikely (offset + sizeof (GElf_Verdaux) > data->d_size)
57 || unlikely (offset % __alignof__ (GElf_Verdaux) != 0))
63 result = (GElf_Verdaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverdef.c 1 /* Get symbol version definition information at the given offset.
30 gelf_getverdef (data, offset, dst)
32 int offset;
55 if (unlikely (offset < 0)
56 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size)
57 || unlikely (offset % __alignof__ (GElf_Verdef) != 0))
63 result = (GElf_Verdef *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getvernaux.c 1 /* Get additional required symbol version information at the given offset.
30 gelf_getvernaux (data, offset, dst)
32 int offset;
58 if (unlikely (offset < 0)
59 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size)
60 || unlikely (offset % sizeof (GElf_Vernaux) != 0))
66 result = (GElf_Vernaux *) memcpy (dst, (char *) data->d_buf + offset,
gelf_getverneed.c 1 /* Get required symbol version information at the given offset.
30 gelf_getverneed (data, offset, dst)
32 int offset;
58 if (unlikely (offset < 0)
59 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size)
60 || unlikely (offset % sizeof (GElf_Verneed) != 0))
66 result = (GElf_Verneed *) memcpy (dst, (char *) data->d_buf + offset,
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 36 public void visitSimpleInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SimpleInstruction simpleInstruction);
37 public void visitVariableInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, VariableInstruction variableInstruction);
38 public void visitConstantInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, ConstantInstruction constantInstruction);
39 public void visitBranchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, BranchInstruction branchInstruction);
40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction);
41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 43 public void write(byte[] buffer, int offset, int count) throws IOException {
44 int end = offset + count;
45 while (offset < end) {
47 int bytesCount = Math.min(MAX_WRITE_BYTES, end - offset);
48 mOutputStream.write(buffer, offset, bytesCount);
49 offset += bytesCount;
  /external/libpng/
pngerror.c 52 int offset; local
53 for (offset = 1; offset<15; offset++)
54 if (error_message[offset] == ' ')
59 for (i = 0; i < offset - 1; i++)
65 error_message += offset;
113 int offset = 0; local
123 for (offset = 1; offset < 15; offset++
130 (*(png_ptr->warning_fn))(png_ptr, warning_message + offset); local
256 int offset; local
320 int offset; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngerror.c 46 int offset; local
47 for (offset=1; offset<15; offset++)
48 if (*(error_message+offset) == ' ')
53 for (i=0; i<offset-1; i++)
59 error_message+=offset;
90 int offset = 0; local
100 for (offset=1; offset<15; offset++
106 (*(png_ptr->warning_fn))(png_ptr, warning_message+offset); local
202 int offset; local
258 int offset; local
    [all...]
  /bionic/libc/unistd/
mmap.c 35 void* mmap( void* addr, size_t size, int prot, int flags, int fd, long offset )
37 if ( offset & ((1UL << MMAP2_SHIFT)-1) ) {
42 return __mmap2(addr, size, prot, flags, fd, (size_t)offset >> MMAP2_SHIFT);

Completed in 815 milliseconds

1 2 34 5 6 7 8 91011>>