HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 301 - 325 of 3492) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /system/core/init/
parser.cpp 13 int off; local
17 off = strlen(buf);
20 vsnprintf(buf + off, 128 - off, fmt, ap);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
warn_noat.l 3 Use .set noat to turn off those optimizations \(and this warning\).
5 Use .set noat to turn off those optimizations \(and this warning\).
warn_nobreak.l 3 If you don't need to debug this code use .set nobreak to turn off this warning.
5 If you don't need to debug this code use .set nobreak to turn off this warning.
7 If you don't need to debug this code use .set nobreak to turn off this warning.
9 If you don't need to debug this code use .set nobreak to turn off this warning.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
HexEncoder.java 55 int off,
60 for (int i = off; i < (off + length); i++)
85 int off,
93 int end = off + length;
95 while (end > off)
105 int i = off;
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/nio/
CharSequenceAdapter.java 70 public final CharBuffer get (char[] dest, int off, int len) {
72 if ((off < 0) || (len < 0) || (long)off + (long)len > length) {
79 sequence.toString().getChars(position, newPosition, dest, off);
116 public final CharBuffer put (char[] src, int off, int len) {
117 if ((off < 0) || (len < 0) || (long)off + (long)len > src.length) {
DoubleBuffer.java 234 * @param off the offset of the double array, must not be negative and not greater than {@code dest.length}.
235 * @param len the number of doubles to read, must be no less than zero and not greater than {@code dest.length - off}.
237 * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid.
240 public DoubleBuffer get (double[] dest, int off, int len) {
242 if (off < 0 || len < 0 || (long)off + (long)len > length) {
249 for (int i = off; i < off + len; i++) {
351 * @param off the offset of double array, must not be negative and not greater than {@code src.length}.
352 * @param len the number of doubles to write, must be no less than zero and not greater than {@code src.length - off}
    [all...]
FloatBuffer.java 236 * @param off the offset of the float array, must not be negative and no greater than {@code dest.length}.
237 * @param len the number of floats to read, must be no less than zero and no greater than {@code dest.length - off}.
239 * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid.
242 public FloatBuffer get (float[] dest, int off, int len) {
244 if (off < 0 || len < 0 || (long)off + (long)len > length) {
251 for (int i = off; i < off + len; i++) {
350 * @param off the offset of float array, must not be negative and not greater than {@code src.length}.
351 * @param len the number of floats to write, must be no less than zero and no greater than {@code src.length - off}
    [all...]
IntBuffer.java 233 * @param off the offset of the int array, must not be negative and not greater than {@code dest.length}.
234 * @param len the number of ints to read, must be no less than zero and not greater than {@code dest.length - off}.
236 * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid.
239 public IntBuffer get (int[] dest, int off, int len) {
241 if (off < 0 || len < 0 || (long)len + (long)off > length) {
247 for (int i = off; i < off + len; i++) {
344 * @param off the offset of int array, must not be negative and not greater than {@code src.length}.
345 * @param len the number of ints to write, must be no less than zero and not greater than {@code src.length - off}
    [all...]
LongBuffer.java 233 * @param off the offset of the long array, must not be negative and not greater than {@code dest.length}.
234 * @param len the number of longs to read, must be no less than zero and not greater than {@code dest.length - off}.
236 * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid.
239 public LongBuffer get (long[] dest, int off, int len) {
241 if (off < 0 || len < 0 || (long)len + (long)off > length) {
248 for (int i = off; i < off + len; i++) {
347 * @param off the offset of long array, must not be negative and not greater than {@code src.length}.
348 * @param len the number of longs to write, must be no less than zero and not greater than {@code src.length - off}
    [all...]
ShortBuffer.java 232 * @param off the offset of the short array, must not be negative and not greater than {@code dest.length}.
233 * @param len the number of shorts to read, must be no less than zero and not greater than {@code dest.length - off}.
235 * @exception IndexOutOfBoundsException if either {@code off} or {@code len} is invalid.
238 public ShortBuffer get (short[] dest, int off, int len) {
240 if (off < 0 || len < 0 || (long)off + (long)len > length) {
246 for (int i = off; i < off + len; i++) {
343 * @param off the offset of short array, must not be negative and not greater than {@code src.length}.
344 * @param len the number of shorts to write, must be no less than zero and not greater than {@code src.length - off}
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
StringCoding.java 159 char[] decode(byte[] ba, int off, int len) {
165 int clen = ((ArrayDecoder)cd).decode(ba, off, len, ca);
169 ByteBuffer bb = ByteBuffer.wrap(ba, off, len);
188 static char[] decode(String charsetName, byte[] ba, int off, int len)
205 return sd.decode(ba, off, len);
208 static char[] decode(Charset cs, byte[] ba, int off, int len) {
233 ba = Arrays.copyOfRange(ba, off, off + len);
234 off = 0;
241 int clen = ((ArrayDecoder)cd).decode(ba, off, len, ca)
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 113 * @param off
117 protected void flushCacheWithAppend(byte bufferToAppend[], int off, int len) throws IOException {
120 this.out.write(bufferToAppend, off, len);
164 public void write(byte src[], int off, int len) throws IOException {
169 flushCacheWithAppend(src, off, len);
171 System.arraycopy(src, off, cache, this.cachePosition, len);
  /external/elfutils/tests/
zstrptr.c 91 size_t off = 0; local
92 const char *str = elf_strptr (elf, ndx, off);
95 printf ("[%zx] '%s'\n", off, str);
96 off += strlen (str) + 1;
97 str = elf_strptr (elf, ndx, off);

Completed in 3192 milliseconds

<<11121314151617181920>>