HomeSort by relevance Sort by last modified time
    Searched full:address (Results 1376 - 1400 of 19436) sorted by null

<<51525354555657585960>>

  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/android/
bitmap.h 59 * Given a java bitmap object, attempt to lock the pixel address.
65 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
68 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/android/
bitmap.h 58 * Given a java bitmap object, attempt to lock the pixel address.
64 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
67 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-9/arch-mips/usr/include/android/
bitmap.h 58 * Given a java bitmap object, attempt to lock the pixel address.
64 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
67 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /prebuilts/ndk/current/platforms/android-9/arch-x86/usr/include/android/
bitmap.h 58 * Given a java bitmap object, attempt to lock the pixel address.
64 * AndroidBitmap_unlockPixels, after which time the address of the pixels should
67 * If this succeeds, *addrPtr will be set to the pixel address. If the call
  /system/bt/service/common/bluetooth/binder/
IBluetoothLowEnergy.cpp 70 const char* address = data.readCString(); local
73 bool result = Connect(client_id, address, is_direct);
80 const char* address = data.readCString(); local
82 bool result = Disconnect(client_id, address);
89 const char* address = data.readCString(); local
92 bool result = SetMtu(client_id, address, mtu);
194 bool BpBluetoothLowEnergy::Connect(int client_id, const char* address,
200 data.writeCString(address);
209 bool BpBluetoothLowEnergy::Disconnect(int client_id, const char* address) {
214 data.writeCString(address);
    [all...]
  /system/bt/service/
low_energy_client.h 66 const char* address, bool connected) = 0;
69 virtual void OnMtuChanged(LowEnergyClient* client, int status, const char* address,
87 // Initiates a BLE connection do device with address |address|. If
90 bool Connect(std::string address, bool is_direct);
92 // Disconnect from previously connected BLE device with address |address|.
94 bool Disconnect(std::string address);
96 // Sends request to set MTU to |mtu| for device with address |address|
    [all...]
  /system/core/include/netutils/
ifc.h 45 extern int ifc_add_address(const char *name, const char *address,
47 extern int ifc_del_address(const char *name, const char *address,
58 extern int ifc_configure(const char *ifname, in_addr_t address,
  /toolchain/binutils/binutils-2.25/bfd/
cpu-i370.c 32 32, /* 32 bits in an address. */
47 32, /* 32 bits in an address. */
65 32, /* 32 bits in an address. */
cpu-m10300.c 28 32, /* 32 bits in an address */
45 32, /* 32 bits in an address */
62 32, /* 32 bits in an address */
verilog.c 40 If no address is specified, the data is assumed to start at
41 address 0. Similarly, if data exists before the first
42 specified address, then that data is assumed to start at
43 address 0.
51 @1000 specifies the starting address for the memory data.
135 /* Sort the records by address. Optimize for the common case of
162 verilog_write_address (bfd *abfd, bfd_vma address)
168 /* Write the address. */
170 TOHEX (dst, (address >> 24));
172 TOHEX (dst, (address >> 16))
    [all...]
  /toolchain/binutils/binutils-2.25/gold/testsuite/
thumb_blx_out_of_range.s 44 # Bit 1 of the BLX target comes from bit 1 of branch base address,
45 # which is BLX instruction's address + 4. We intentionally put this
46 # forward BLX at an address n*4 + 2 so that the branch offset is
  /toolchain/binutils/binutils-2.25/include/elf/
i370.h 33 based on the address \
43 that is the 31-bit address relocation. Note that the 370/390
44 only supports a 31-bit (2GB) address space. */
  /art/compiler/utils/arm/
assembler_arm32.cc 270 void Arm32Assembler::ldr(Register rd, const Address& ad, Condition cond) {
275 void Arm32Assembler::str(Register rd, const Address& ad, Condition cond) {
280 void Arm32Assembler::ldrb(Register rd, const Address& ad, Condition cond) {
285 void Arm32Assembler::strb(Register rd, const Address& ad, Condition cond) {
290 void Arm32Assembler::ldrh(Register rd, const Address& ad, Condition cond) {
295 void Arm32Assembler::strh(Register rd, const Address& ad, Condition cond) {
300 void Arm32Assembler::ldrsb(Register rd, const Address& ad, Condition cond) {
305 void Arm32Assembler::ldrsh(Register rd, const Address& ad, Condition cond) {
310 void Arm32Assembler::ldrd(Register rd, const Address& ad, Condition cond) {
316 void Arm32Assembler::strd(Register rd, const Address& ad, Condition cond)
    [all...]
  /art/runtime/gc/accounting/
card_table.h 58 // Set the card associated with the given address to GC_CARD_DIRTY.
68 // Return the state of the card at an address.
86 // Returns a value that when added to a heap address >> GC_CARD_SHIFT will address the appropriate
113 // Assertion used to check the given address is covered by the card table
125 // Returns the first address in the heap which maps to this card.
128 // Returns the address of the relevant byte in the card table, given an address on the heap.
136 // Returns true iff the card table address is within the bounds of the card table.
  /art/runtime/interpreter/mterp/x86/
op_iput_wide_quick.S 8 leal (%ecx,%eax,1), %ecx # ecx<- Address of 64-bit target
  /art/runtime/interpreter/mterp/x86_64/
op_iput_wide_quick.S 8 leaq (%rcx,%rax,1), %rcx # ecx<- Address of 64-bit target
  /bionic/libc/include/
dlfcn.h 37 contains address */
38 void *dli_fbase; /* Address at which shared object
40 const char *dli_sname; /* Name of nearest symbol with address
42 void *dli_saddr; /* Exact address of symbol named
  /development/ndk/platforms/android-21/include/
dlfcn.h 37 contains address */
38 void *dli_fbase; /* Address at which shared object
40 const char *dli_sname; /* Name of nearest symbol with address
42 void *dli_saddr; /* Exact address of symbol named
  /development/ndk/platforms/android-3/arch-arm/src/
crtbegin_dynamic.c 65 - the address of the raw data block setup by the Linux
68 - address of an "onexit" function, not used on any
71 - address of the "main" function of the program.
73 - address of the constructor list

Completed in 2543 milliseconds

<<51525354555657585960>>