/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
TeeInputStream.java | 117 * @param bts byte buffer
123 public int read(byte[] bts, int st, int end) throws IOException {
124 int n = super.read(bts, st, end);
126 branch.write(bts, st, n);
135 * @param bts byte buffer
139 public int read(byte[] bts) throws IOException {
140 int n = super.read(bts);
142 branch.write(bts, 0, n);
|
ProxyInputStream.java | 58 * @param bts the buffer to read the bytes into
62 public int read(byte[] bts) throws IOException {
63 return in.read(bts);
68 * @param bts the buffer to read the bytes into
74 public int read(byte[] bts, int st, int end) throws IOException {
75 return in.read(bts, st, end);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ProxyOutputStream.java | 55 * @param bts the bytes to write
58 public void write(byte[] bts) throws IOException {
59 out.write(bts);
64 * @param bts the bytes to write
69 public void write(byte[] bts, int st, int end) throws IOException {
70 out.write(bts, st, end);
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/ |
GeneralNameTest.java | 155 byte[] bts = GeneralName.ipStrToBytes(ip); 156 for (int i=0; i<bts.length; i++) { 157 System.out.print((bts[i]&0xFF)+" ");
|
/external/clang/test/Parser/ |
MicrosoftExtensions.c | 28 lock bts [ecx], eax
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/ |
xdflong.asm | 93 bts eax, 8 ; Enable Long Mode (LME=1) 96 bts ebx, 31 ; Enable Paging (PG=1)
|
/external/chromium_org/v8/test/cctest/ |
test-disasm-x64.cc | 114 __ bts(Operand(rdx, 0), rcx); 115 __ bts(Operand(rbx, rcx, times_4, 0), rcx); 230 __ bts(Operand(rbx, rcx, times_8, 10000), rdx);
|
test-disasm-ia32.cc | 121 __ bts(edx, ecx); 122 __ bts(Operand(ebx, ecx, times_4, 0), ecx); 249 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
|
/external/v8/test/cctest/ |
test-disasm-x64.cc | 122 __ bts(Operand(rdx, 0), rcx); 123 __ bts(Operand(rbx, rcx, times_4, 0), rcx); 238 __ bts(Operand(rbx, rcx, times_8, 10000), rdx);
|
test-disasm-ia32.cc | 128 __ bts(edx, ecx); 129 __ bts(Operand(ebx, ecx, times_4, 0), ecx); 256 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
|
/external/chromium_org/v8/src/ia32/ |
assembler-ia32.h | 866 void bts(Register dst, Register src) { bts(Operand(dst), src); } 867 void bts(const Operand& dst, Register src); [all...] |
assembler-ia32.cc | 1287 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
/external/v8/src/ia32/ |
assembler-ia32.h | 848 void bts(Register dst, Register src) { bts(Operand(dst), src); } 849 void bts(const Operand& dst, Register src); [all...] |
assembler-ia32.cc | 1271 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
/external/llvm/test/MC/X86/ |
intel-syntax.s | 386 bts DWORD PTR [EAX], 1
|
/prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/ |
commons-io-1.3.2.jar | |
/external/chromium_org/third_party/mesa/src/src/mesa/x86/ |
assyntax.h | 406 #define BTS_L(a, b) CHOICE(btsl ARG2(a,b), btsl ARG2(a,b), _LTOG bts ARG2(b,a)) 407 #define BTS_W(a, b) CHOICE(btsw ARG2(a,b), btsw ARG2(a,b), _WTOG bts ARG2(b,a)) [all...] |
/external/chromium_org/v8/src/x64/ |
assembler-x64.h | [all...] |
assembler-x64.cc | 810 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
/external/mesa3d/src/mesa/x86/ |
assyntax.h | 406 #define BTS_L(a, b) CHOICE(btsl ARG2(a,b), btsl ARG2(a,b), _LTOG bts ARG2(b,a)) 407 #define BTS_W(a, b) CHOICE(btsw ARG2(a,b), btsw ARG2(a,b), _WTOG bts ARG2(b,a)) [all...] |
/external/v8/src/x64/ |
assembler-x64.h | [all...] |
assembler-x64.cc | 846 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
/external/valgrind/main/VEX/test/ |
test-amd64.c | 162 #define OP bts [all...] |
test-i386.c | 150 #define OP bts [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/ |
x86insn_nasm.gperf | 55 bts, bittest_insn, 6, SUF_Z, 0xAB, 0x05, 0, 0, CPU_386, 0, 0 [all...] |