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

1 2

  /system/bluetooth/brfpatch/
Android.mk 3 # Utility to create Android bluetooth firmware from Texas Instruments .bts
brfpatch.c 37 " For TI BRF chips this can be generated from .bts files using the TI Bluetooth\n"
39 " Alternately, run strings on the .bts and manually edit to change decimal\n"
  /packages/apps/Email/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);
  /packages/apps/Email/src/org/apache/commons/io/input/
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);
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);
  /external/bluetooth/bluez/tools/
hciattach_ti.c 203 sprintf(firmware_file_name, FIRMWARE_DIRECTORY "TIInit_%d.%d.%d.bts", chip, maj_ver, min_ver);
395 fprintf(stderr, "Warning: cannot find BTS file: %s\n",
400 fprintf( stderr, "Loaded BTS script version %u\n", vers );
405 fprintf(stderr, "Warning: BTS file is empty !");
  /external/v8/test/cctest/
test-disasm-ia32.cc 128 __ bts(Operand(edx), ecx);
129 __ bts(Operand(ebx, ecx, times_4, 0), ecx);
248 __ bts(Operand(ebx, ecx, times_8, 10000), edx);
  /external/v8/src/ia32/
macro-assembler-ia32.cc 91 // NOTE: For now, we use the bit-test-and-set (bts) x86 instruction
96 masm->bts(Operand(page_start, Page::kRSetOffset), pointer_offset);
191 // NOTE: For now, we use the bit-test-and-set (bts) x86 instruction
195 bts(Operand(object, Page::kRSetOffset), value);
    [all...]
disasm-ia32.cc 824 case 0xAB: return "bts";
956 // shrd, shld, bts
    [all...]
assembler-ia32.h 641 void bts(const Operand& dst, Register src);
assembler-ia32.cc 1337 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 119 // NOTE: For now, we use the bit-test-and-set (bts) x86 instruction
124 masm->bts(Operand(page_start, Page::kRSetOffset), pointer_offset);
240 // NOTE: For now, we use the bit-test-and-set (bts) x86 instruction
244 bts(Operand(object, Page::kRSetOffset), scratch);
    [all...]
disasm-x64.cc     [all...]
assembler-x64.h 957 void bts(const Operand& dst, Register src);
    [all...]
assembler-x64.cc 716 void Assembler::bts(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [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/grub/
NEWS 44 report bugs is to use the BTS rather than sending e-mail to bug-grub.
ChangeLog 960 the BTS instead of the BTS itself.
    [all...]
  /hardware/ril/include/telephony/
ril.h     [all...]
  /external/e2fsprogs/debian/
changelog     [all...]
  /external/qemu/
i386-dis.c     [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/bin/
i686-unknown-linux-gnu-objdump 
i686-unknown-linux-gnu-as 
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/i686-unknown-linux-gnu/bin/
objdump 
as 

Completed in 233 milliseconds

1 2