/prebuilts/ndk/current/platforms/android-17/arch-mips/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-17/arch-x86/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-18/arch-mips/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-18/arch-x86/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-19/arch-mips/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-19/arch-x86/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/linux/ |
compiler-gcc.h | 14 #define RELOC_HIDE(ptr, off) ({ unsigned long __ptr; __asm__ ("" : "=r"(__ptr) : "0"(ptr)); (typeof(ptr)) (__ptr + (off)); })
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/ |
ARMThumb.java | 22 public int code(byte[] buf, int off, int len) { 23 int end = off + len - 4; 26 for (i = off; i <= end; i += 2) { 36 dest = src + (pos + i - off); 38 dest = src - (pos + i - off); 49 i -= off;
|
IA64.java | 28 public int code(byte[] buf, int off, int len) { 29 int end = off + len - 16; 32 for (i = off; i <= end; i += 16) { 59 dest = src + (pos + i - off); 61 dest = src - (pos + i - off); 77 i -= off;
|
PowerPC.java | 22 public int code(byte[] buf, int off, int len) { 23 int end = off + len - 4; 26 for (i = off; i <= end; i += 4) { 35 dest = src + (pos + i - off); 37 dest = src - (pos + i - off); 46 i -= off;
|
SPARC.java | 22 public int code(byte[] buf, int off, int len) { 23 int end = off + len - 4; 26 for (i = off; i <= end; i += 4) { 37 dest = src + (pos + i - off); 39 dest = src - (pos + i - off); 52 i -= off;
|
/libcore/ojluni/src/main/java/java/io/ |
PipedOutputStream.java | 127 * starting at offset <code>off</code> to this piped output stream. 132 * @param off the start offset in the data. 138 public void write(byte b[], int off, int len) throws IOException { 143 } else if ((off < 0) || (off > b.length) || (len < 0) || 144 ((off + len) > b.length) || ((off + len) < 0)) { 149 sink.receive(b, off, len);
|
StringReader.java | 80 * @param off Offset at which to start writing characters 88 public int read(char cbuf[], int off, int len) throws IOException { 91 if ((off < 0) || (off > cbuf.length) || (len < 0) || 92 ((off + len) > cbuf.length) || ((off + len) < 0)) { 100 str.getChars(next, next + n, cbuf, off);
|
/libcore/ojluni/src/main/java/java/util/jar/ |
JarOutputStream.java | 137 private static int get16(byte[] b, int off) { 138 return (b[off] & 0xff) | ((b[off+1] & 0xff) << 8); 145 private static void set16(byte[] b, int off, int value) { 146 b[off+0] = (byte)value; 147 b[off+1] = (byte)(value >> 8);
|
/libcore/ojluni/src/main/java/java/util/zip/ |
Adler32.java | 62 public void update(byte[] b, int off, int len) { 66 if (off < 0 || len < 0 || off > b.length - len) { 69 adler = updateBytes(adler, b, off, len); 137 private native static int updateBytes(int adler, byte[] b, int off, 140 int off, int len);
|
/external/libunwind/src/x86/ |
Gos-linux.c | 143 unw_word_t addr = c->sigcontext_addr, fpstate_addr, off; local 164 case UNW_X86_GS: off = LINUX_SC_GS_OFF; break; 165 case UNW_X86_FS: off = LINUX_SC_FS_OFF; break; 166 case UNW_X86_ES: off = LINUX_SC_ES_OFF; break; 167 case UNW_X86_DS: off = LINUX_SC_DS_OFF; break; 168 case UNW_X86_EDI: off = LINUX_SC_EDI_OFF; break; 169 case UNW_X86_ESI: off = LINUX_SC_ESI_OFF; break; 170 case UNW_X86_EBP: off = LINUX_SC_EBP_OFF; break; 171 case UNW_X86_ESP: off = LINUX_SC_ESP_OFF; break; 172 case UNW_X86_EBX: off = LINUX_SC_EBX_OFF; break [all...] |
/external/iproute2/tc/ |
p_ip.c | 38 tkey->off = 12; 44 tkey->off = 16; 54 tkey->off = 1; 60 tkey->off = 0; 66 tkey->off = 9; 73 tkey->off = 1; 80 tkey->off = 6; 87 tkey->off = 6; 93 tkey->off = 6; 99 tkey->off = 6 [all...] |