HomeSort by relevance Sort by last modified time
    Searched refs:bts (Results 1 - 25 of 30) sorted by null

1 2

  /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/clang/test/Parser/
MicrosoftExtensionsInlineAsm.c 10 lock bts [ecx], eax local
  /external/valgrind/main/none/tests/amd64/
xacq_xrel.stdout.exp 14 result for 'bts' is 57d555555f555d55
  /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/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-x87.cc 124 __ bts(edx, ecx);
125 __ bts(Operand(ebx, ecx, times_4, 0), ecx);
268 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
test-disasm-ia32.cc 124 __ bts(edx, ecx);
125 __ bts(Operand(ebx, ecx, times_4, 0), ecx);
268 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
test-disasm-x64.cc 120 __ bts(Operand(rdx, 0), rcx);
121 __ bts(Operand(rbx, rcx, times_4, 0), rcx);
237 __ bts(Operand(rbx, rcx, times_8, 10000), rdx);
  /external/chromium_org/v8/src/x87/
assembler-x87.h 770 void bts(Register dst, Register src) { bts(Operand(dst), src); }
771 void bts(const Operand& dst, Register src);
    [all...]
assembler-x87.cc 1157 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 787 void bts(Register dst, Register src) { bts(Operand(dst), src); }
788 void bts(const Operand& dst, Register src);
    [all...]
assembler-ia32.cc 1224 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-io-2.2.jar 
  /external/llvm/test/MC/X86/
intel-syntax.s 394 bts DWORD PTR [EAX], 1
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.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/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/valgrind/main/VEX/test/
test-amd64.c 162 #define OP bts
    [all...]
test-i386.c 150 #define OP bts
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.h 858 void bts(const Operand& dst, Register src);
    [all...]
assembler-x64.cc 637 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]

Completed in 1067 milliseconds

1 2