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

1 2 34 5 6 7 8 91011>>

  /external/elfutils/libdw/
dwarf_haspc.c 67 ptrdiff_t offset = 0; local
68 while ((offset = INTUSE(dwarf_ranges) (die, offset, &base,
73 return offset;
dwarf_getstring.c 60 dwarf_getstring (dbg, offset, lenp)
62 Dwarf_Off offset;
69 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
77 + offset);
79 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_offdie.c 1 /* Return DIE at given offset.
60 dwarf_offdie (dbg, offset, result)
62 Dwarf_Off offset;
68 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size)
78 result->addr = (char *) dbg->sectiondata[IDX_debug_info]->d_buf + offset;
81 result->cu = __libdw_findcu (dbg, offset);
  /external/valgrind/main/coregrind/m_gdbserver/
regdef.h 35 /* The offset (in bits) of the value of this register in the buffer. */
36 int offset; member in struct:reg
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetBooleanv.java 6 int offset
glGetFloatv.java 6 int offset
glGetIntegerv.java 6 int offset
  /libcore/luni/src/main/java/org/w3c/dom/
CharacterData.java 68 * @param offset Start offset of substring to extract.
70 * @return The specified substring. If the sum of <code>offset</code> and
74 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
81 public String substringData(int offset,
97 * Insert a string at the specified 16-bit unit offset.
98 * @param offset The character offset at which to insert.
101 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
106 public void insertData(int offset,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
GLId.java 26 public void glGenBuffers(int n, int[] buffers, int offset);
28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset);
30 public void glDeleteBuffers(GL11 gl, int n, int[] buffers, int offset);
32 public void glDeleteFramebuffers(GL11ExtensionPack gl11ep, int n, int[] buffers, int offset);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.h 35 static PassRefPtr<SplitTextNodeContainingElementCommand> create(PassRefPtr<Text> node, int offset)
37 return adoptRef(new SplitTextNodeContainingElementCommand(node, offset));
41 SplitTextNodeContainingElementCommand(PassRefPtr<Text>, int offset);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTextContentElement.idl 37 [RaisesException] float getSubStringLength(unsigned long offset, unsigned long length);
38 [RaisesException] SVGPoint getStartPositionOfChar(unsigned long offset);
39 [RaisesException] SVGPoint getEndPositionOfChar(unsigned long offset);
40 [RaisesException] SVGRect getExtentOfChar(unsigned long offset);
41 [RaisesException] float getRotationOfChar(unsigned long offset);
43 [RaisesException] void selectSubString(unsigned long offset, unsigned long length);
  /external/libvpx/libvpx/third_party/libmkv/
EbmlBufferWriter.c 13 src += glob->offset;
15 glob->offset += len;
23 memcpy(&(glob->buf[glob->offset]), q, 1);
24 glob->offset++;
40 ebmlLoc->offset = glob->offset;
47 unsigned long long size = glob->offset - ebmlLoc->offset - 8;
48 unsigned long long curOffset = glob->offset;
49 glob->offset = ebmlLoc->offset
    [all...]
  /external/proguard/src/proguard/preverify/
CodeSubroutineInliner.java 115 int offset = 0; local
116 while (offset < codeAttribute.u4codeLength)
118 Instruction instruction = InstructionFactory.create(codeAttribute.code, offset);
119 int instructionLength = instruction.length(offset);
122 if (branchTargetFinder.isSubroutine(offset) &&
123 branchTargetFinder.isSubroutineReturning(offset))
128 System.out.println(" Skipping original subroutine instruction "+instruction.toString(offset));
131 // Append a label at this offset instead.
132 codeAttributeComposer.appendLabel(offset);
137 instruction.accept(clazz, method, codeAttribute, offset, this)
    [all...]
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 58 * Gets the raw byte offset from the start of an object's memory to
63 * @return the offset to the field
73 * Gets the offset from the start of an array object's memory to
77 * @return the offset to the initial element
85 int offset = 12; local
87 offset += 4; // 4 bytes of padding.
89 return offset;
123 * @param offset offset to the field within <code>obj</code>
130 public native boolean compareAndSwapInt(Object obj, long offset,
    [all...]
  /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...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
Item.java 39 * The offset of this item in the dex file, or -1 if not known
41 protected int offset = -1; field in class:Item
74 this.offset = in.getCursor();
84 * Place the item at the given offset and index, and return the offset of the byte following this item
85 * @param offset The offset to place the item at
87 * @return The offset of the byte following this item
89 protected int placeAt(int offset, int index) {
91 assert AlignmentUtils.isAligned(offset, getItemType().ItemAlignment)
    [all...]
  /external/elfutils/libelf/
elf_rand.c 62 elf_rand (elf, offset)
64 size_t offset;
72 /* Save the old offset and set the offset. */
73 elf->state.ar.offset = elf->start_offset + offset;
85 return offset;
  /hardware/qcom/display/msm8960/libgralloc/
memalloc.h 46 int offset; member in struct:gralloc::alloc_data
65 int offset, int fd) = 0;
69 int offset, int fd) = 0;
73 int offset) = 0;
77 int offset, int fd, int op) = 0;
  /hardware/qcom/display/msm8974/libgralloc/
memalloc.h 46 int offset; member in struct:gralloc::alloc_data
65 int offset, int fd) = 0;
69 int offset, int fd) = 0;
73 int offset) = 0;
77 int offset, int fd, int op) = 0;
  /hardware/qcom/display/msm8x26/libgralloc/
memalloc.h 46 int offset; member in struct:gralloc::alloc_data
65 int offset, int fd) = 0;
69 int offset, int fd) = 0;
73 int offset) = 0;
77 int offset, int fd, int op) = 0;
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLBIOInputStream.java 50 int offset = 0; local
52 while (offset < buffer.length) {
59 if (offset == 0) {
67 buffer[offset++] = (byte) inputByte;
70 return offset;
  /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/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...]

Completed in 1222 milliseconds

1 2 34 5 6 7 8 91011>>