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

1 2 3 4 5 67 8 91011>>

  /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/guava/guava-tests/test/com/google/common/io/
IoTestCase.java 43 * offset .. offset + size - 1.
45 protected static byte[] newPreFilledByteArray(int offset, int size) {
48 array[i] = (byte) (offset + i);
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
Android22Workaround.java 6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
12 offset);
  /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/av/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...]
BufferedWriter.java 165 * Writes {@code count} characters starting at {@code offset} in
172 * @param offset
177 * if {@code offset < 0} or {@code count < 0}, or if
178 * {@code offset + count} is greater than the size of
184 public void write(char[] cbuf, int offset, int count) throws IOException {
190 Arrays.checkOffsetAndCount(cbuf.length, offset, count);
192 out.write(cbuf, offset, count);
200 System.arraycopy(cbuf, offset, this.buf, pos, available);
207 offset += available;
210 out.write(cbuf, offset, available)
    [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;
  /external/elfutils/libelf/
gelf_update_verdaux.c 63 gelf_update_verdaux (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verdaux)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdaux));
gelf_update_verdef.c 63 gelf_update_verdef (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verdef)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verdef));
gelf_update_vernaux.c 63 gelf_update_vernaux (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Vernaux)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Vernaux));
gelf_update_verneed.c 63 gelf_update_verneed (data, offset, src)
65 int offset;
78 if (unlikely (offset < 0)
79 || unlikely ((offset + sizeof (GElf_Verneed)) > data_scn->d.d_size))
94 memcpy ((char *) data_scn->d.d_buf + offset, src, sizeof (GElf_Verneed));
  /external/proguard/src/proguard/classfile/attribute/preverification/visitor/
StackMapFrameVisitor.java 35 public void visitSameZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameZeroFrame sameZeroFrame);
36 public void visitSameOneFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, SameOneFrame sameOneFrame);
37 public void visitLessZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LessZeroFrame lessZeroFrame);
38 public void visitMoreZeroFrame(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, MoreZeroFrame moreZeroFrame);
39 public void visitFullFrame( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, FullFrame fullFrame);
  /external/webkit/Source/WebCore/css/
CSSReflectValue.h 41 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
43 return adoptRef(new CSSReflectValue(direction, offset, mask));
47 CSSPrimitiveValue* offset() const { return m_offset.get(); } function in class:WebCore::CSSReflectValue
56 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
58 , m_offset(offset)
  /frameworks/av/media/libstagefright/
XINGSeeker.cpp 86 int offset = first_frame_pos; local
87 if (source->readAt(offset, &buffer, 4) < 4) { // get header
90 offset += 4;
105 // determine offset of XING header
107 if (num_channels != 1) offset += 32;
108 else offset += 17;
110 if (num_channels != 1) offset += 17;
111 else offset += 9;
114 int xingbase = offset;
116 if (source->readAt(offset, &buffer, 4) < 4) { // XING header I
    [all...]
  /frameworks/av/media/mtp/
MtpPacket.cpp 94 uint16_t MtpPacket::getUInt16(int offset) const {
95 return ((uint16_t)mBuffer[offset + 1] << 8) | (uint16_t)mBuffer[offset];
98 uint32_t MtpPacket::getUInt32(int offset) const {
99 return ((uint32_t)mBuffer[offset + 3] << 24) | ((uint32_t)mBuffer[offset + 2] << 16) |
100 ((uint32_t)mBuffer[offset + 1] << 8) | (uint32_t)mBuffer[offset];
103 void MtpPacket::putUInt16(int offset, uint16_t value) {
104 mBuffer[offset++] = (uint8_t)(value & 0xFF)
148 int offset = MTP_CONTAINER_PARAMETER_OFFSET + (index - 1) * sizeof(uint32_t); local
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 64 * @param offset offset into {@code dcf}'s {@code bytes}
69 public final Attribute parse(DirectClassFile cf, int context, int offset,
84 int nameIdx = bytes.getUnsignedShort(offset);
85 int length = bytes.getInt(offset + 2);
90 observer.parsed(bytes, offset, 2,
92 observer.parsed(bytes, offset + 2, 4,
96 return parse0(cf, context, name.getString(), offset + 6, length,
101 "attribute at offset " + Hex.u4(offset));
    [all...]

Completed in 1232 milliseconds

1 2 3 4 5 67 8 91011>>