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

1 2 34 5 6 7 8 91011>>

  /frameworks/av/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[]);
  /libcore/luni/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++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, dstOffset, doubleCount);
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++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, dstOffset, floatCount);
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++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, dstOffset, intCount);
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++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, dstOffset, longCount);
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++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, dstOffset, shortCount);
  /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/webkit/Source/WebCore/html/parser/
CSSPreloadScanner.cpp 151 size_t offset = 0; local
154 while (reducedLength && isHTMLSpace(characters[offset])) {
155 ++offset;
158 while (reducedLength && isHTMLSpace(characters[offset + reducedLength - 1]))
162 && (characters[offset] == 'u' || characters[offset] == 'U')
163 && (characters[offset + 1] == 'r' || characters[offset + 1] == 'R')
164 && (characters[offset + 2] == 'l' || characters[offset + 2] == 'L'
    [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...]
  /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/av/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/av/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...]
  /frameworks/base/services/common_time/
common_time_server_packets.cpp 42 if ((offset + sizeof(field_name)) > length) \
44 *((type*)(data + offset)) = converter(field_name); \
45 offset += sizeof(field_name); \
53 if ((offset + sizeof(field_name)) > length) \
55 field_name = converter(*((type*)(data + offset))); \
56 offset += sizeof(field_name); \
80 ssize_t offset = 0; local
87 return offset;
92 ssize_t offset = 0; local
100 return offset;
186 ssize_t offset = serializeHeader(data, length); local
196 ssize_t offset = deserializeHeader(data, length); local
208 ssize_t offset = serializeHeader(data, length); local
218 ssize_t offset = deserializeHeader(data, length); local
230 ssize_t offset = serializeHeader(data, length); local
239 ssize_t offset = deserializeHeader(data, length); local
248 ssize_t offset = serializeHeader(data, length); local
260 ssize_t offset = deserializeHeader(data, length); local
272 ssize_t offset = serializeHeader(data, length); local
282 ssize_t offset = deserializeHeader(data, length); local
    [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/smali/dexlib/src/main/java/org/jf/dexlib/
Item.java 38 * The offset of this item in the dex file, or -1 if not known
40 protected int offset = -1; field in class:Item
73 this.offset = in.getCursor();
83 * Place the item at the given offset and index, and return the offset of the byte following this item
84 * @param offset The offset to place the item at
86 * @return The offset of the byte following this item
88 protected int placeAt(int offset, int index) {
90 assert AlignmentUtils.isAligned(offset, getItemType().ItemAlignment)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableList.java 34 private final transient int offset; field in class:RegularImmutableList
38 RegularImmutableList(Object[] array, int offset, int size) {
39 this.offset = offset;
58 return offset != 0 || size != array.length;
68 return (UnmodifiableIterator<E>) Iterators.forArray(array, offset, size);
73 System.arraycopy(array, offset, newArray, 0, size);
83 System.arraycopy(array, offset, other, 0, size);
92 return (E) array[index + offset];
97 for (int i = offset; i < offset + size; i++)
    [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/av/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/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...]

Completed in 688 milliseconds

1 2 34 5 6 7 8 91011>>