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

1 23 4 5 6 7 8 91011>>

  /external/chromium/net/disk_cache/
file_block.h 26 // Returns the file offset of this block.
27 virtual int offset() const = 0;
  /external/clang/test/CodeGenCXX/
2008-05-07-CrazyOffsetOf.cpp 8 int offset = (char *) &(((struct bork *) 0x10)->query) - (char *) 0x10; variable
  /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
  /external/webkit/Source/WebCore/rendering/style/
StyleSurroundData.cpp 35 , offset(o.offset)
44 return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
StyleDashboardRegion.h 38 LengthBox offset; member in struct:WebCore::StyleDashboardRegion
49 return type == o.type && offset == o.offset && label == o.label;
  /frameworks/native/include/utils/
Compat.h 30 static inline off64_t lseek64(int fd, off64_t offset, int whence) {
31 return lseek(fd, offset, whence);
35 static inline ssize_t pread64(int fd, void* buf, size_t nbytes, off64_t offset) {
36 return pread(fd, buf, nbytes, offset);
  /libcore/luni/src/main/java/java/nio/
MemoryBlock.java 95 public static MemoryBlock mmap(FileDescriptor fd, long offset, long size, MapMode mapMode) throws IOException {
101 if (offset < 0 || size < 0 || offset > Integer.MAX_VALUE || size > Integer.MAX_VALUE) {
102 throw new IllegalArgumentException("offset=" + offset + " size=" + size);
117 int address = (int) Libcore.os.mmap(0L, size, prot, flags, fd, offset);
148 public final void pokeByte(int offset, byte value) {
149 Memory.pokeByte(address + offset, value);
152 public final void pokeByteArray(int offset, byte[] src, int srcOffset, int byteCount) {
153 Memory.pokeByteArray(address + offset, src, srcOffset, byteCount)
    [all...]
  /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...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IShellOutputReceiver.java 27 * @param offset The offset at which the new data starts.
30 public void addOutput(byte[] data, int offset, int length);
  /external/libvpx/libmkv/
EbmlBufferWriter.c 14 src += glob->offset;
16 glob->offset += len;
26 memcpy(&(glob->buf[glob->offset]), q, 1);
27 glob->offset ++;
45 ebmlLoc->offset = glob->offset;
53 unsigned long long size = glob->offset - ebmlLoc->offset - 8;
54 unsigned long long curOffset = glob->offset;
55 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...]
  /external/webkit/Source/JavaScriptCore/bytecode/
JumpTable.cpp 40 int32_t offset = branchOffsets[value - min]; local
41 if (offset)
42 return offset;
  /external/webkit/Source/WebCore/editing/
SplitTextNodeCommand.h 37 static PassRefPtr<SplitTextNodeCommand> create(PassRefPtr<Text> node, int offset)
39 return adoptRef(new SplitTextNodeCommand(node, offset));
43 SplitTextNodeCommand(PassRefPtr<Text>, int offset);
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);
  /libcore/luni/src/main/java/java/text/
RuleBasedBreakIterator.java 42 @Override public int following(int offset) {
43 validateOffset(offset);
44 return wrapped.following(offset);
48 * check the offset, throw exception if it is invalid
50 private void validateOffset(int offset) {
52 if (offset < it.getBeginIndex() || offset > it.getEndIndex()) {
84 @Override public boolean isBoundary(int offset) {
85 validateOffset(offset);
86 return wrapped.isBoundary(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...]
  /dalvik/dx/src/com/android/dx/cf/code/
BytecodeArray.java 111 * Don't record the previous offset here, so that we get to see the
119 * Finds the offset to each instruction in the bytecode array. The
120 * result is a bit set with the offset of each opcode-per-se flipped on.
142 * the indicated offset (that is, the bit index), repeating until the
156 int offset = Bits.findFirst(workSet, 0); local
157 if (offset < 0) {
160 Bits.clear(workSet, offset);
161 parseInstruction(offset, visitor);
162 visitor.setPreviousOffset(offset);
167 * Parses the instruction at the indicated offset. Indicate th
    [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;
  /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();
  /external/webkit/Source/WebCore/platform/graphics/filters/
FELighting.h 62 inline void topLeft(int offset, IntPoint& normalVector);
63 inline void topRow(int offset, IntPoint& normalVector);
64 inline void topRight(int offset, IntPoint& normalVector);
65 inline void leftColumn(int offset, IntPoint& normalVector);
66 inline void interior(int offset, IntPoint& normalVector);
67 inline void rightColumn(int offset, IntPoint& normalVector);
68 inline void bottomLeft(int offset, IntPoint& normalVector);
69 inline void bottomRow(int offset, IntPoint& normalVector);
70 inline void bottomRight(int offset, IntPoint& normalVector);
76 inline void inlineSetPixel(int offset, LightingData&, LightSource::PaintingData&
    [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...]
  /external/icu4c/i18n/
regextxt.cpp 17 uregex_utext_unescape_charAt(int32_t offset, void *ct) {
20 if (offset == context->lastOffset + 1) {
23 } else if (offset == context->lastOffset) {
27 utext_moveIndex32(context->text, offset - context->lastOffset - 1);
29 context->lastOffset = offset;
41 uregex_ucstr_unescape_charAt(int32_t offset, void *context) {
42 return ((UChar *)context)[offset];

Completed in 1402 milliseconds

1 23 4 5 6 7 8 91011>>