HomeSort by relevance Sort by last modified time
    Searched refs:offset (Results 201 - 225 of 16262) sorted by null

1 2 3 4 5 6 7 891011>>

  /hardware/qcom/display/msm8994/libgralloc/
memalloc.h 46 unsigned int offset; member in struct:gralloc::alloc_data
65 unsigned int offset, int fd) = 0;
69 unsigned int offset, int fd) = 0;
73 unsigned int offset) = 0;
77 unsigned int offset, int fd, int op) = 0;
  /hardware/qcom/display/msm8996/libgralloc/
memalloc.h 46 unsigned int offset; member in struct:gralloc::alloc_data
66 unsigned int offset, int fd) = 0;
70 unsigned int offset, int fd) = 0;
74 unsigned int offset) = 0;
78 unsigned int offset, int fd, int op) = 0;
  /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();
  /libcore/ojluni/src/main/java/sun/misc/
Unsafe.java 71 * Gets the raw byte offset from the start of an object's memory to
76 * @return the offset to the field
86 * Gets the offset from the start of an array object's memory to
90 * @return the offset to the initial element
124 * @param offset offset to the field within <code>obj</code>
132 public native boolean compareAndSwapInt(Object obj, long offset,
140 * @param offset offset to the field within <code>obj</code>
148 public native boolean compareAndSwapLong(Object obj, long offset,
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_builder_decode.c 39 unsigned offset)
42 return (const uint32_t *) ((const char *) writer->ptr + offset);
48 unsigned offset, unsigned dw_index,
51 const uint32_t *dw = writer_pointer(builder, which, offset);
57 offset + (dw_index << 2), dw[dw_index]);
85 unsigned offset = item->offset; local
89 const uint32_t *dw = writer_pointer(builder, which, offset);
91 writer_dw(builder, which, offset, 0, "BLOB%d", i / 4);
120 offset += state_size * 4
131 unsigned offset = item->offset; local
160 unsigned offset = item->offset; local
221 unsigned offset = item->offset; local
267 unsigned offset = item->offset; local
294 unsigned offset = item->offset; local
372 unsigned offset = item->offset; local
395 unsigned offset = item->offset; local
422 unsigned offset = item->offset; local
571 unsigned offset = item->offset; local
    [all...]
  /external/annotation-tools/scene-lib/src/annotations/el/
RelativeLocation.java 11 * instanceof, cast, or new: either the bytecode offset or the source code index.
16 * The bytecode offset of the construct.
18 public final int offset; field in class:RelativeLocation
35 private RelativeLocation(int offset, int index, int type_index) {
36 this.offset = offset;
41 public static RelativeLocation createOffset(int offset, int type_index) {
42 return new RelativeLocation(offset, -1, type_index);
50 return offset>-1;
55 return "#" + offset;
    [all...]
  /libcore/luni/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...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
group-reloc-alu-encoding-bad.s 5 .macro alutest insn sym offset
7 \insn r0, r0, #:pc_g0:(\sym + \offset)
8 \insn r0, r0, #:pc_g1:(\sym + \offset)
9 \insn r0, r0, #:pc_g2:(\sym + \offset)
11 \insn r0, r0, #:pc_g0_nc:(\sym + \offset)
12 \insn r0, r0, #:pc_g1_nc:(\sym + \offset)
14 \insn r0, r0, #:sb_g0:(\sym + \offset)
15 \insn r0, r0, #:sb_g1:(\sym + \offset)
16 \insn r0, r0, #:sb_g2:(\sym + \offset)
18 \insn r0, r0, #:sb_g0_nc:(\sym + \offset)
    [all...]
group-reloc-alu.s 5 .macro alutest insn sym offset
7 \insn r0, r0, #:pc_g0:(\sym \offset)
8 \insn r0, r0, #:pc_g1:(\sym \offset)
11 \insn r0, r0, :pc_g2:(\sym \offset)
13 \insn r0, r0, #:pc_g0_nc:(\sym \offset)
14 \insn r0, r0, #:pc_g1_nc:(\sym \offset)
16 \insn r0, r0, #:sb_g0:(\sym \offset)
17 \insn r0, r0, #:sb_g1:(\sym \offset)
18 \insn r0, r0, #:sb_g2:(\sym \offset)
20 \insn r0, r0, #:sb_g0_nc:(\sym \offset)
    [all...]
  /bionic/linker/
linker_debug.h 89 #define MARK(offset) \
91 if ((((offset) >> 12) >> 5) < 4096) \
92 bitmask[((offset) >> 12) >> 5] |= (1 << (((offset) >> 12) & 31)); \
95 #define MARK(offset) \
97 bitmask[((offset) >> 12) >> 3] |= (1 << (((offset) >> 12) & 7)); \
  /external/deqp/executor/
xeContainerFormatParser.cpp 109 void ContainerFormatParser::getData (deUint8* dst, int numBytes, int offset)
111 DE_ASSERT(de::inBounds(offset, 0, m_elementLen) && numBytes > 0 && de::inRange(numBytes+offset, 0, m_elementLen));
114 dst[ndx] = m_buf.peekBack(offset+ndx);
117 int ContainerFormatParser::getChar (int offset) const
119 DE_ASSERT(de::inRange(offset, 0, m_buf.getNumElements()));
121 if (offset < m_buf.getNumElements())
122 return m_buf.peekBack(offset);
207 int offset = 1; local
216 int bufChar = (offset+ndx < m_elementLen) ? getChar(offset+ndx) : 0
    [all...]
  /external/dtc/tests/
notfound.c 40 int offset; local
60 offset = fdt_subnode_offset(fdt, 0, "nonexistant-subnode");
61 check_error("fdt_subnode_offset(\"nonexistant-subnode\")", offset);
63 offset = fdt_subnode_offset(fdt, 0, "subsubnode");
64 check_error("fdt_subnode_offset(\"subsubnode\")", offset);
66 offset = fdt_path_offset(fdt, "/nonexistant-subnode");
67 check_error("fdt_path_offset(\"/nonexistant-subnode\")", offset);
rw_tree1.c 52 int offset, s1, s2; local
69 OFF_CHECK(offset, fdt_add_subnode(fdt, 0, "subnode@1"));
70 s1 = offset;
73 OFF_CHECK(offset, fdt_add_subnode(fdt, s1, "subsubnode"));
74 CHECK(fdt_setprop(fdt, offset, "compatible",
76 CHECK(fdt_setprop_cell(fdt, offset, "prop-int", TEST_VALUE_1));
77 OFF_CHECK(offset, fdt_add_subnode(fdt, s1, "ss1"));
79 OFF_CHECK(offset, fdt_add_subnode(fdt, 0, "subnode@2"));
80 s2 = offset;
83 OFF_CHECK(offset, fdt_add_subnode(fdt, s2, "subsubnode@0"))
    [all...]
  /external/flatbuffers/net/FlatBuffers/
Table.cs 32 // Look up a field in the vtable, return an offset into the object, or 0 if the field is not
40 public static int __offset(int vtableOffset, int offset, ByteBuffer bb)
42 int vtable = bb.Length - offset;
46 // Retrieve the relative offset stored at "offset"
47 public int __indirect(int offset)
49 return offset + bb.GetInt(offset);
52 public static int __indirect(int offset, ByteBuffer bb)
54 return offset + bb.GetInt(offset)
    [all...]
  /external/icu/icu4c/source/i18n/
regextxt.cpp 20 uregex_utext_unescape_charAt(int32_t offset, void *ct) {
23 if (offset == context->lastOffset + 1) {
26 } else if (offset == context->lastOffset) {
30 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
32 context->lastOffset = offset;
44 uregex_ucstr_unescape_charAt(int32_t offset, void *context) {
45 return ((UChar *)context)[offset];
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 9 HRESULT COffsetOutStream::Init(IOutStream *stream, UInt64 offset)
11 _offset = offset;
13 return _stream->Seek(offset, STREAM_SEEK_SET, NULL);
21 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
26 if (offset < 0)
28 offset += _offset;
30 HRESULT result = _stream->Seek(offset, seekOrigin, &absoluteNewPosition);
  /external/python/cpython3/Modules/_sha3/kcp/
KeccakP-1600-SnP-opt64.h 35 #define KeccakP1600_AddByte(state, byte, offset) \
36 ((unsigned char*)(state))[(offset)] ^= (byte)
38 void KeccakP1600_AddByte(void *state, unsigned char data, unsigned int offset);
40 void KeccakP1600_AddBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int length);
41 void KeccakP1600_OverwriteBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int length);
45 void KeccakP1600_ExtractBytes(const void *state, unsigned char *data, unsigned int offset, unsigned int length);
46 void KeccakP1600_ExtractAndAddBytes(const void *state, const unsigned char *input, unsigned char *output, unsigned int offset, unsigned int length);
  /frameworks/av/media/libstagefright/
ESDS.cpp 72 size_t offset, size_t size,
78 *tag = mData[offset++];
88 uint8_t x = mData[offset++];
102 *data_offset = offset;
125 status_t ESDS::parseESDescriptor(size_t offset, size_t size) {
130 offset += 2; // skip ES_ID
133 unsigned streamDependenceFlag = mData[offset] & 0x80;
134 unsigned URL_Flag = mData[offset] & 0x40;
135 unsigned OCRstreamFlag = mData[offset] & 0x20;
137 ++offset;
    [all...]
  /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[]);
  /external/e2fsprogs/lib/blkid/
llseek.c 46 extern long long llseek(int fd, long long offset, int origin);
74 static blkid_loff_t my_llseek(int fd, blkid_loff_t offset, int origin)
80 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
81 ((unsigned long long)offset) & 0xffffffff,
84 retval = syscall(__NR__llseek, fd, ((unsigned long long) offset) >> 32,
85 ((unsigned long long)offset) & 0xffffffff,
95 blkid_loff_t blkid_llseek(int fd, blkid_loff_t offset, int whence)
101 (offset < ((blkid_loff_t) 1 << ((sizeof(off_t)*8) -1))))
102 return lseek(fd, (off_t) offset, whence);
109 result = my_llseek(fd, offset, whence)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
llseek.c 47 extern long long llseek (int fd, long long offset, int origin);
75 static ext2_loff_t my_llseek (int fd, ext2_loff_t offset, int origin)
81 retval = _llseek(fd, ((unsigned long long) offset) >> 32,
83 retval = syscall(__NR__llseek, fd, (unsigned long long) (offset >> 32),
85 ((unsigned long long) offset) & 0xffffffff,
95 ext2_loff_t ext2fs_llseek (int fd, ext2_loff_t offset, int origin)
98 return my_llseek (fd, offset, origin);
106 result = my_llseek (fd, offset, origin);
114 if (offset < ((ext2_loff_t) 1 << ((sizeof(off_t)*8) -1)))
115 return lseek(fd, (off_t) offset, origin)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/powerpc/stringloops/
memcmp.c 15 unsigned long offset, size; local
17 for (offset = 0; offset < SIZE; offset++) {
18 for (size = 0; size < (SIZE-offset); size++) {
22 y = memcmp(s1+offset, s2+offset, size);
23 x = test_memcmp(s1+offset, s2+offset, size);
27 printf("memcmp returned %d, should have returned %d (offset %ld size %ld)\n", x, y, offset, size)
    [all...]
  /frameworks/base/core/java/com/android/internal/midi/
MidiFramer.java 48 public static String formatMidiData(byte[] data, int offset, int count) {
49 String text = "MIDI+" + offset + " : ";
51 text += String.format("0x%02X, ", data[offset + i]);
60 public void onSend(byte[] data, int offset, int count, long timestamp)
62 int sysExStartOffset = (mInSysEx ? offset : -1);
65 final byte currentByte = data[offset];
76 sysExStartOffset = offset;
81 offset - sysExStartOffset + 1, timestamp);
95 offset - sysExStartOffset, timestamp);
96 sysExStartOffset = offset + 1
    [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/proguard/src/proguard/optimize/evaluation/
LivenessAnalyzer.java 82 * Returns whether the instruction at the given offset has ever been
93 * at the given offset.
104 * at the given offset.
124 * at the given offset.
135 * at the given offset.
155 * instruction at the given offset.
166 * instruction at the given offset.
223 for (int offset = codeLength - 1; offset >= 0; offset--
    [all...]

Completed in 797 milliseconds

1 2 3 4 5 6 7 891011>>