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

<<11121314151617181920>>

  /frameworks/compile/mclinker/lib/Target/
GOT.cpp 35 uint32_t offset = 0; local
38 frag->setOffset(offset);
39 offset += frag->size();
42 m_Section.setSize(offset);
  /hardware/qcom/msm8960/kernel-headers/linux/mfd/wcd9xxx/
wcd9xxx-slimslave.h 67 #define SB_PGD_PORT_CFG_BYTE_ADDR(offset, port_num) (SB_PGD_PORT_BASE + offset + (1 * port_num))
75 #define SB_PGD_RX_PORT_MULTI_CHANNEL_0(offset, port_num) (SB_PGD_PORT_BASE + offset + (4 * port_num))
  /libcore/luni/src/main/java/java/io/
FilterWriter.java 78 * starting at position {@code offset} to the target writer.
82 * @param offset
90 public void write(char[] buffer, int offset, int count) throws IOException {
92 out.write(buffer, offset, count);
119 * @param offset
127 public void write(String str, int offset, int count) throws IOException {
129 out.write(str, offset, count);
  /libcore/luni/src/main/java/java/util/zip/
Deflater.java 211 public synchronized int deflate(byte[] buf, int offset, int byteCount) {
212 return deflateImpl(buf, offset, byteCount, flushParm);
228 public synchronized int deflate(byte[] buf, int offset, int byteCount, int flush) {
232 return deflateImpl(buf, offset, byteCount, flush);
235 private synchronized int deflateImpl(byte[] buf, int offset, int byteCount, int flush) {
237 Arrays.checkOffsetAndCount(buf.length, offset, byteCount);
241 return deflateImpl(buf, offset, byteCount, streamHandle, flush);
244 private native int deflateImpl(byte[] buf, int offset, int byteCount, long handle, int flushParm);
380 public synchronized void setDictionary(byte[] buf, int offset, int byteCount) {
382 Arrays.checkOffsetAndCount(buf.length, offset, byteCount)
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 43 * {@code offset} and {@code byteCount} do not specify a valid
60 * starting at {@code offset} and a tag length of {@code tagLen} in bits.
63 * {@code offset} and {@code byteCount} do not specify a valid
65 * @throws ArrayIndexOutOfBoundsException if {@code offset} or
68 public GCMParameterSpec(int tagLen, byte[] iv, int offset, int byteCount) {
76 Arrays.checkOffsetAndCount(iv.length, offset, byteCount);
81 this.iv = Arrays.copyOfRange(iv, offset, offset + byteCount);
IvParameterSpec.java 54 * <code>offset</code>.
57 * if the specified buffer is null or <code>offset</code> and
61 * if <code>offset</code> or <code>byteCount</code> are negative.
63 public IvParameterSpec(byte[] iv, int offset, int byteCount) {
64 if ((iv == null) || (iv.length - offset < byteCount)) {
67 Arrays.checkOffsetAndCount(iv.length, offset, byteCount);
69 System.arraycopy(iv, offset, this.iv, 0, byteCount);
  /libcore/luni/src/main/java/libcore/io/
BufferIterator.java 27 * Seeks to the absolute position {@code offset}, measured in bytes from the start.
29 public abstract void seek(int offset);
  /libcore/luni/src/main/java/org/w3c/dom/
Text.java 42 * Breaks this node into two nodes at the specified <code>offset</code>,
44 * will contain all the content up to the <code>offset</code> point. A
46 * after the <code>offset</code> point, is returned. If the original
48 * of the original node. When the <code>offset</code> is equal to the
50 * @param offset The 16-bit unit offset at which to split, starting from
54 * INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
58 public Text splitText(int offset)
  /packages/apps/Gallery2/jni_jpegstream/src/
outputstream_wrapper.cpp 22 int32_t OutputStreamWrapper::write(int32_t length, int32_t offset) {
23 if (offset < 0 || length < 0 || (offset + length) > getBufferSize()) {
36 mEnv->CallVoidMethod(mStream, sWriteID, mByteArray, offset, length);
outputstream_wrapper.h 27 virtual int32_t write(int32_t length, int32_t offset);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
AssetFileAddress.java 25 * also the offset in the file and the length of this data. This class encapsulates these three.
32 public AssetFileAddress(final String filename, final long offset, final long length) {
34 mOffset = offset;
55 * @param offset the offset.
60 final long offset, final long length) {
64 return new AssetFileAddress(filename, offset, length);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AssetFileAddress.java 25 * also the offset in the file and the length of this data. This class encapsulates these three.
32 public AssetFileAddress(final String filename, final long offset, final long length) {
34 mOffset = offset;
49 final long offset, final long length) {
53 return new AssetFileAddress(filename, offset, length);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
dynamic_patricia_trie_reading_utils.cpp 32 // Currently, DICT_OFFSET_INVALID is 0 in Java side but offset can be 0 during GC. So, the maximum
33 // value of offsets, which is 0x7FFFFF is used to represent 0 offset.
61 const int offset = ByteArrayUtils::readSint24AndAdvancePosition(buffer, pos); local
62 if (offset == DICT_OFFSET_INVALID) {
65 } else if (offset == DICT_OFFSET_ZERO_OFFSET) {
68 return base + offset;
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/sys/
sendfile.h 36 extern ssize_t sendfile(int out_fd, int in_fd, off_t *offset, size_t count);

Completed in 490 milliseconds

<<11121314151617181920>>