/packages/apps/Email/emailcommon/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/Email/emailcommon/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);
|
/system/bluetooth/brfpatch/ |
Android.mk | 3 # Utility to create Android bluetooth firmware from Texas Instruments .bts
|
/external/clang/test/Parser/ |
MicrosoftExtensions.c | 20 lock bts [ecx], eax local
|
/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/v8/test/cctest/ |
test-disasm-ia32.cc | 128 __ bts(Operand(edx), ecx); 129 __ bts(Operand(ebx, ecx, times_4, 0), ecx); 258 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
|
/external/v8/src/ia32/ |
assembler-ia32.h | 821 void bts(const Operand& dst, Register src); [all...] |
assembler-ia32.cc | 1423 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
macro-assembler-ia32.cc | 76 bts(Operand(object, Page::kDirtyFlagOffset), addr); [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/ |
assyntax.h | 366 #define BTS_L(a, b) CHOICE(btsl ARG2(a,b), btsl ARG2(a,b), _LTOG bts ARG2(b,a)) 367 #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 | 842 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler [all...] |
macro-assembler-x64.cc | 220 bts(Operand(object, Page::kDirtyFlagOffset), addr); [all...] |
/external/valgrind/main/perf/ |
tinycc.c | [all...] |