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

1 2 3 4 56 7 8 91011>>

  /external/elfutils/tests/
run-show-die-info.sh 29 Offset : 11
30 CU offset : 11
39 Offset : 104
40 CU offset : 104
46 Offset : 127
47 CU offset : 127
53 Offset : 146
54 CU offset : 11
63 Offset : 239
64 CU offset : 10
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
OffsettedItem.java 23 * An item in a Dalvik file which is referenced by absolute offset.
41 * {@code >= -1;} assigned offset of the item from the start of its section,
44 private int offset; field in class:OffsettedItem
47 * Gets the absolute offset of the given item, returning {@code 0}
51 * @return {@code >= 0;} the item's absolute offset, or {@code 0}
63 * Constructs an instance. The offset is initially unassigned.
80 this.offset = -1;
182 * Gets the relative item offset. The offset is from the start of
185 * @return {@code >= 0;} the offset
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
OffsettedItem.java 23 * An item in a Dalvik file which is referenced by absolute offset.
41 * {@code >= -1;} assigned offset of the item from the start of its section,
44 private int offset; field in class:OffsettedItem
47 * Gets the absolute offset of the given item, returning {@code 0}
51 * @return {@code >= 0;} the item's absolute offset, or {@code 0}
63 * Constructs an instance. The offset is initially unassigned.
80 this.offset = -1;
182 * Gets the relative item offset. The offset is from the start of
185 * @return {@code >= 0;} the offset
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 210 * {@code buf} starting at {@code offset}.
217 public synchronized int inflate(byte[] buf, int offset, int byteCount) throws DataFormatException {
218 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
228 int result = inflateImpl(buf, offset, byteCount, streamHandle);
235 private native int inflateImpl(byte[] buf, int offset, int byteCount, long handle);
279 * starting at {@code offset} and continuing for {@code byteCount} bytes. See {@link
282 public synchronized void setDictionary(byte[] dictionary, int offset, int byteCount) {
284 Arrays.checkOffsetAndCount(dictionary.length, offset, byteCount);
285 setDictionaryImpl(dictionary, offset, byteCount, streamHandle);
288 private native void setDictionaryImpl(byte[] dictionary, int offset, int byteCount, long handle)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1_MessageDigestImpl.java 73 * offset - offset in digest
75 private void processDigest(byte[] digest, int offset) {
121 j = offset;
171 * Upon return, the value is stored in "buf" buffer beginning "offset" byte. <BR>
180 * offset a position in the array for first byte of the message digest
191 * if offset + len > buf.length <BR>
192 * if offset > buf.length or len > buf.length
198 * if offset < 0
200 protected int engineDigest(byte[] buf, int offset, int len) throws DigestException
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
CodeObserver.java 68 public void visitInvalid(int opcode, int offset, int length) {
69 observer.parsed(bytes, offset, length, header(offset));
73 public void visitNoArgs(int opcode, int offset, int length, Type type) {
74 observer.parsed(bytes, offset, length, header(offset));
78 public void visitLocal(int opcode, int offset, int length,
94 observer.parsed(bytes, offset, length,
95 header(offset) + (argComment ? " // " : " ") +
100 public void visitConstant(int opcode, int offset, int length
    [all...]
  /dalvik/libdex/
DexDataMap.cpp 71 * Add a new element to the map. The offset must be greater than the
74 void dexDataMapAdd(DexDataMap* map, u4 offset, u2 type) {
79 (map->offsets[map->count - 1] >= offset)) {
80 LOGE("Out-of-order data map offset: %#x then %#x",
81 map->offsets[map->count - 1], offset);
85 map->offsets[map->count] = offset;
91 * Get the type associated with the given offset. This returns -1 if
92 * there is no entry for the given offset.
94 int dexDataMapGet(DexDataMap* map, u4 offset) {
106 if (offset < guess)
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
BranchInstruction.java 28 * This interface describes an instruction that branches to a given offset in
115 protected void readInfo(byte[] code, int offset)
117 branchOffset = readSignedValue(code, offset, branchOffsetSize());
121 protected void writeInfo(byte[] code, int offset)
125 throw new IllegalArgumentException("Instruction has invalid branch offset size ("+this.toString(offset)+")");
128 writeSignedValue(code, offset, branchOffset, branchOffsetSize());
132 public int length(int offset)
138 public void accept(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, InstructionVisitor instructionVisitor)
140 instructionVisitor.visitBranchInstruction(clazz, method, codeAttribute, offset, this)
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_StringWriter.java 99 * Writes <code>count</code> characters starting at <code>offset</code>
104 * @param offset
105 * offset in buf to retrieve characters
110 * If offset or count are outside of bounds.
113 public void write(char[] buf, int offset, int count) {
115 if (0 <= offset && offset <= buf.length && 0 <= count
116 && count <= buf.length - offset) {
118 this.buf.append(buf, offset, count);
158 * <code>offset</code> from the String <code>str</code> to thi
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
first_run_bubble_controller.h 22 offset:(NSPoint)offset
  /external/chromium/chrome/browser/ui/views/
dropdown_bar_view.h 32 void set_animation_offset(int offset) { animation_offset_ = offset; }
34 // Returns the offset used while animating.
46 // part of it. The view needs to know the pixel offset at which we are drawing
  /external/elfutils/libdw/
dwarf_offabbrev.c 1 /* Get abbreviation at given offset.
23 dwarf_offabbrev (Dwarf *dbg, Dwarf_Off offset, size_t *lengthp,
29 return __libdw_getabbrev (dbg, NULL, offset, lengthp, abbrevp) == NULL;
  /external/emma/core/java12/com/vladium/jcd/cls/
IInterfaceCollection.java 32 * constant pool index for offset'th direct superinterface.
34 * @param offset superinterface number [must be in [0, size()) range]
37 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
39 int get (int offset);
61 * @return offset of the new pointer [same as {@link #size()}-1 when called
67 * Replaces superinterface pointer number 'offset' with new value 'interface_index'.
72 * @param offset offset of the superinterface pointer to replace [must be in [0, size()) range]
76 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
78 int set (int offset, int interface_index)
    [all...]
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IDeclaredExceptionTable.java 31 * pool index for offset'th exception type thrown by the method that contains
34 * @param offset thrown exception class number [must be in [0, size()) range]
37 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
39 int get (int offset);
64 * @return offset of the new pointer [same as {@link #size()}-1 when called
70 * Replaces exception class pointer number 'offset' with new value 'interface_index'.
75 * @param offset thrown exception class number [must be in [0, size()) range]
79 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
81 int set (int offset, int exception_index);
IExceptionHandlerTable.java 31 * Returns {@link Exception_info} descriptor at a given offset.
33 * @param offset exception offset [must be in [0, size()) range; input not checked]
36 * @throws IndexOutOfBoundsException if 'offset' is outside of valid range
38 Exception_info get (int offset);
68 * Replaces the Exception_info descriptor at a given offset. No duplicate
74 * @param offset exception offset [must be in [0, size()) range; input not checked]
76 * @return previous exception descriptor at this offset [never null]
78 * @throws IndexOutOfBoundsException if 'offset' is outside of valid rang
    [all...]
  /external/kernel-headers/original/asm-generic/bitops/
find.h 5 size, unsigned long offset);
8 long size, unsigned long offset);
  /external/proguard/src/proguard/evaluation/
BranchUnit.java 34 * Sets the new instruction offset.
38 int offset,
43 * Sets the new instruction offset, depending on the certainty of the
48 int offset,
  /external/webkit/Source/WebCore/svg/
SVGStopElement.idl 30 readonly attribute SVGAnimatedNumber offset;
  /frameworks/media/libvideoeditor/vss/src/
M4VD_Tools.c 59 M4OSA_UInt8 offset, M4OSA_UInt8 nb_bits)
64 input = (input << (32 - nb_bits - offset));
71 if((j*8)+i >= offset && (j*8)+i < nb_bits + offset)
85 if((j*8)+i >= offset && (j*8)+i < nb_bits + offset)
87 temp = ((input & (0x80000000 >> offset)) >> (31-offset));
  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 39 * The current mark position. Initially set to 0 or the <code>offset</code>
65 * {@code buf} with the initial position set to {@code offset} and the
66 * number of bytes available set to {@code offset} + {@code length}.
70 * @param offset
75 public ByteArrayInputStream(byte[] buf, int offset, int length) {
77 pos = offset;
78 mark = offset;
79 count = offset + length > buf.length ? buf.length : offset + length;
146 * them in byte array {@code b} starting at {@code offset}. Thi
    [all...]
  /libcore/luni/src/main/java/java/lang/
ArrayIndexOutOfBoundsException.java 70 public ArrayIndexOutOfBoundsException(int sourceLength, int offset,
72 super("length=" + sourceLength + "; regionStart=" + offset
  /libcore/luni/src/main/java/java/nio/
CharArrayBuffer.java 36 protected final int offset; field in class:CharArrayBuffer
46 CharArrayBuffer(int capacity, char[] backingArray, int offset) {
49 this.offset = offset;
57 return backingArray[offset + position++];
63 return backingArray[offset + index];
71 System.arraycopy(backingArray, offset + position, dst, srcOffset, charCount);
97 return String.copyValueOf(backingArray, offset + position, remaining());
  /libcore/support/src/test/java/tests/support/
Support_StringWriter.java 99 * Writes <code>count</code> characters starting at <code>offset</code>
104 * @param offset
105 * offset in buf to retrieve characters
110 * If offset or count are outside of bounds.
113 public void write(char[] buf, int offset, int count) {
115 if (0 <= offset && offset <= buf.length && 0 <= count
116 && count <= buf.length - offset) {
118 this.buf.append(buf, offset, count);
158 * <code>offset</code> from the String <code>str</code> to thi
    [all...]
  /bionic/libc/stdlib/
getenv.c 34 char *__findenv(const char *name, int *offset);
39 * Sets offset to be the offset of the name/value combination in the
46 __findenv(const char *name, int *offset)
63 *offset = p - environ;
77 int offset; local
79 return (__findenv(name, &offset));
  /dalvik/dx/tests/093-ssa-invoke-range/
Blort.java 58 int offset = 1; local
62 methodThatNeedsInvokeRange(src, 0, dest, offset, 5, 0);
63 return offset;
65 long offset = System.currentTimeMillis();; local
66 return offset;

Completed in 637 milliseconds

1 2 3 4 56 7 8 91011>>