HomeSort by relevance Sort by last modified time
    Searched defs:address (Results 401 - 425 of 1950) sorted by null

<<11121314151617181920>>

  /external/syslinux/com32/hdt/
hdt-dump-acpi.c 32 void show_header(char *name, void *address, s_acpi_description_header *h, ZZJSON_CONFIG *config, ZZJSON **item)
49 snprintf(s_address,sizeof(s_address),"%p",address);
61 snprintf(address_name,sizeof(address_name),"acpi.%s.address",name);
100 show_header("rsdt",acpi->rsdt.address, &acpi->rsdt.header, config, item);
120 show_header("xsdt",acpi->xsdt.address, &acpi->xsdt.header, config, item);
140 show_header("fadt",acpi->fadt.address, &acpi->fadt.header, config, item);
160 show_header("dsdt",acpi->dsdt.address, &acpi->dsdt.header, config, item);
180 show_header("sbst",acpi->sbst.address, &acpi->sbst.header, config, item);
200 show_header("ecdt",acpi->ecdt.address, &acpi->ecdt.header, config, item);
220 show_header("hpet",acpi->hpet.address, &acpi->hpet.header, config, item);
363 char address[16]={0}; local
396 char address[16]={0}; local
476 char address[16] = { 0 }; local
    [all...]
  /external/syslinux/gpxe/src/arch/i386/image/
bzimage.c 52 /** Real-mode kernel portion load segment address */
54 /** Real-mode kernel portion load address */
66 /** Non-real-mode kernel portion load address */
74 /** Initrd address */
155 /* Calculate load address of real-mode portion */
167 /* Calculate load address of protected-mode portion */
225 /* Set initrd address */
330 * @v address Address at which to load, or UNULL
335 userptr_t address ) {
395 physaddr_t address; local
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
smc9000.c 93 // Output the PHY address, msb first
211 // Output the PHY address, msb first
299 . Finds and reports the PHY address
321 // Save the PHY's address
364 // Find the address and type of our phy
555 * (2) compare the ioaddr with the base register's address
581 * so I can access the base address register */
589 /* well, the base address register didn't match. Must not have
609 * against the hardware address, or do some other tests. */
676 /* we have a packet address, so tell the card to use it *
853 word address; local
    [all...]
  /external/syslinux/gpxe/src/net/
ipv4.c 41 * @v address IPv4 address
43 * @v gateway Gateway address (if any)
47 add_ipv4_miniroute ( struct net_device *netdev, struct in_addr address,
51 DBG ( "IPv4 add %s", inet_ntoa ( address ) );
66 miniroute->address = address;
89 DBG ( "IPv4 del %s", inet_ntoa ( miniroute->address ) );
103 * @v dest Final destination address
104 * @ret dest Next hop destination address
488 const struct in_addr *address = net_addr; local
589 struct in_addr address = { 0 }; local
    [all...]
  /external/tensorflow/tensorflow/core/platform/posix/
posix_file_system.cc 128 PosixReadOnlyMemoryRegion(const void* address, uint64 length)
129 : address_(address), length_(length) {}
190 const void* address = local
192 if (address == MAP_FAILED) {
195 result->reset(new PosixReadOnlyMemoryRegion(address, st.st_size));
  /external/v8/src/arm/
assembler-arm-inl.h 69 Address RelocInfo::target_address() {
74 Address RelocInfo::target_address_address() {
81 // by the serializer and expects the address to reside within the code
83 return reinterpret_cast<Address>(pc_);
91 Address RelocInfo::constant_pool_entry_address() {
120 reinterpret_cast<Address>(target),
132 Address RelocInfo::target_external_reference() {
138 Address RelocInfo::target_internal_reference() {
144 Address RelocInfo::target_internal_reference_address() {
146 return reinterpret_cast<Address>(pc_)
167 Address address = Memory::Address_at(pc_); local
182 Address address = cell->address() + Cell::kValueOffset; local
    [all...]
code-stubs-arm.h 45 Register address,
50 address, // An input reg.
54 AddressBits::encode(address.code()) |
60 : PlatformCodeStub(key, isolate), regs_(object(), address(), value()) {}
133 Register address,
136 address_(address),
138 DCHECK(!AreAliased(scratch0, object, address, no_reg));
172 inline Register address() { return address_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
212 Register address() const { function in class:v8::internal::RecordWriteStub
  /external/v8/src/arm64/
code-stubs-arm64.h 68 // Stub to record the write of 'value' at 'address' in 'object'.
69 // Typically 'address' = 'object' + <some offset>.
74 Register address,
79 address, // An input reg.
83 DCHECK(address.Is64Bits());
86 AddressBits::encode(address.code()) |
92 : PlatformCodeStub(key, isolate), regs_(object(), address(), value()) {}
172 // The 'object' and 'address' registers must be preserved.
176 Register address,
179 address_(address),
238 Register address() { return address_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
303 Register address() const { function in class:v8::internal::RecordWriteStub
    [all...]
  /external/v8/src/base/platform/
platform-cygwin.cc 105 // No library name found, just record the raw address range.
140 // For exectutable pages try and randomize the allocation address
146 // After three attempts give up and let the OS find an address to use.
165 void* address = ReserveRegion(request_size); local
166 if (address == NULL) return;
167 uint8_t* base = RoundUp(static_cast<uint8_t*>(address), alignment);
169 bool result = ReleaseRegion(address, request_size);
172 address = VirtualAlloc(base, size, MEM_RESERVE, PAGE_NOACCESS);
173 if (address != NULL) {
175 DCHECK(base == static_cast<uint8_t*>(address));
    [all...]
platform.h 175 // Returns the address of allocated memory, or NULL if failed.
179 static void Free(void* address, const size_t size);
191 static void ProtectCode(void* address, const size_t size);
194 static void Guard(void* address, const size_t size);
197 static void Unprotect(void* address, const size_t size);
199 // Generate a random address to be used for hinting mmap().
219 void* address; member in struct:v8::base::OS::StackFrame
308 // by address().
311 // Construct a virtual memory by assigning it some already mapped address
313 VirtualMemory(void* address, size_t size) : address_(address), size_(size) {
329 void* address() { function in class:v8::base::VirtualMemory
370 void* address = address_; local
    [all...]
  /external/v8/src/
frames-inl.h 39 inline Address StackHandler::address() const { function in class:v8::internal::StackHandler
40 return reinterpret_cast<Address>(const_cast<StackHandler*>(this));
46 return FromAddress(Memory::Address_at(address() + offset));
50 inline StackHandler* StackHandler::FromAddress(Address address) {
51 return reinterpret_cast<StackHandler*>(address);
72 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
77 inline Address* StackFrame::ResolveReturnAddressLocation(Address* pc_address)
    [all...]
handles.h 48 // Returns the raw address where this handle is stored. This should only be
50 V8_INLINE Address address() const { return bit_cast<Address>(location_); } function in class:v8::internal::HandleBase
59 // Returns the address to where the raw pointer is stored.
124 // Returns the address to where the raw pointer is stored.
142 return lhs.address() == rhs.address();
149 return base::hash<void*>()(handle.address());
236 // Returns the raw address where this handle is stored. This should only b
238 V8_INLINE Address address() const { return bit_cast<Address>(location_); } function in class:v8::internal::final
    [all...]
  /external/v8/src/heap/
marking.h 93 INLINE(Address address()) { return reinterpret_cast<Address>(this); } function in class:v8::internal::Bitmap
95 INLINE(static Bitmap* FromAddress(Address addr)) {
118 // Firstly, fill all bits from the start address to the end of the first
125 // Finally, fill all bits until the end address in the last cell with 1s.
141 // Firstly, fill all bits from the start address to the end of the first
148 // Finally, set all bits until the end address in the last cell with 0s.
  /external/v8/src/mips/
assembler-mips-inl.h 66 imm32_ = reinterpret_cast<int32_t>(f.address());
101 Address RelocInfo::target_address() {
106 Address RelocInfo::target_address_address() {
111 // Read the address of the word containing the target_address in an
123 // that is the address of the instruction that follows J/JAL/JR/JALR
125 return reinterpret_cast<Address>(
130 Address RelocInfo::constant_pool_entry_address() {
140 Address Assembler::target_address_at(Address pc, Code* code) {
141 Address constant_pool = code ? code->constant_pool() : NULL
282 Address address = Memory::Address_at(pc_); local
297 Address address = cell->address() + Cell::kValueOffset; local
    [all...]
code-stubs-mips.h 72 Register address,
77 address, // An input reg.
81 AddressBits::encode(address.code()) |
87 : PlatformCodeStub(key, isolate), regs_(object(), address(), value()) {}
164 Register address,
167 address_(address),
169 DCHECK(!AreAliased(scratch0, object, address, no_reg));
203 inline Register address() { return address_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
243 Register address() const { function in class:v8::internal::RecordWriteStub
  /external/v8/src/mips64/
assembler-mips64-inl.h 66 imm64_ = reinterpret_cast<int64_t>(f.address());
101 Address RelocInfo::target_address() {
106 Address RelocInfo::target_address_address() {
111 // Read the address of the word containing the target_address in an
123 // that is the address of the instruction that follows J/JAL/JR/JALR
125 // return reinterpret_cast<Address>(
127 return reinterpret_cast<Address>(
132 Address RelocInfo::constant_pool_entry_address() {
142 Address Assembler::target_address_at(Address pc, Code* code)
264 Address address = Memory::Address_at(pc_); local
279 Address address = cell->address() + Cell::kValueOffset; local
    [all...]
code-stubs-mips64.h 73 Register address,
78 address, // An input reg.
82 AddressBits::encode(address.code()) |
88 : PlatformCodeStub(key, isolate), regs_(object(), address(), value()) {}
165 Register address,
168 address_(address),
170 DCHECK(!AreAliased(scratch0, object, address, no_reg));
204 inline Register address() { return address_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
244 Register address() const { function in class:v8::internal::RecordWriteStub
  /external/v8/src/ppc/
code-stubs-ppc.h 72 Register address, RememberedSetAction remembered_set_action,
76 address, // An input reg.
80 AddressBits::encode(address.code()) |
86 : PlatformCodeStub(key, isolate), regs_(object(), address(), value()) {}
154 RegisterAllocation(Register object, Register address, Register scratch0)
155 : object_(object), address_(address), scratch0_(scratch0) {
156 DCHECK(!AreAliased(scratch0, object, address, no_reg));
194 inline Register address() { return address_; } function in class:v8::internal::RecordWriteStub::RegisterAllocation
233 Register address() const { function in class:v8::internal::RecordWriteStub
  /external/v8/src/x87/
codegen-x87.cc 85 int32_t address(Label* l) const { function in class:v8::internal::LabelConverter
113 // esp[0]: return address
358 Address target_address = sequence + *reinterpret_cast<int*>(sequence) +
  /external/webrtc/webrtc/base/
macasyncsocket.cc 49 // Returns the address to which the socket is bound. If the socket is not
50 // bound, then the any-address is returned.
52 SocketAddress address; local
62 SocketAddressFromSockAddrStorage(addr, &address);
64 return address;
67 // Returns the address to which the socket is connected. If the socket is not
68 // connected, then the any-address is returned.
70 SocketAddress address; local
78 SocketAddressFromSockAddrStorage(addr, &address);
80 return address;
    [all...]
  /external/webrtc/webrtc/p2p/base/
candidate.h 45 const rtc::SocketAddress& address,
55 address_(address),
79 const rtc::SocketAddress & address() const { return address_; } function in class:cricket::Candidate
80 void set_address(const rtc::SocketAddress & address) {
81 address_ = address;
197 // Addr Pref - Address preference value as per RFC 3484.
212 std::string address = sensitive ? address_.ToSensitiveString() : local
216 << address << ":" << type_ << ":" << related_address_ << ":"
  /frameworks/av/services/audioflinger/
PatchPanel.cpp 275 String8 address = String8(patch->sinks[0].ext.device.address); local
282 address,
293 String8 address = String8(patch->sources[0].ext.device.address); local
318 address,
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
Serializer.h 121 static const char address[]; /**< optional: device address, char string less than 64. */ member in struct:android::DevicePortTraits::Attributes
  /frameworks/base/cmds/telecom/src/com/android/commands/telecom/
Telecom.java 67 "usage: telecom register-sim-phone-account <COMPONENT> <ID> <USER_SN> <LABEL> <ADDRESS>\n" +
161 final String address = nextArgRequired(); local
164 .setAddress(Uri.parse(address))
165 .setSubscriptionAddress(Uri.parse(address))
  /frameworks/base/core/java/android/net/
NetworkUtils.java 51 * @param packetType the hardware address type, one of ARPHRD_*.
61 * @param packetType the hardware address type, one of ARPHRD_*.
129 * Convert a IPv4 address from an integer to an InetAddress.
130 * @param hostAddress an int corresponding to the IPv4 address in network byte order
146 * Convert a IPv4 address from an InetAddress to an integer
147 * @param inetAddr is an InetAddress corresponding to the IPv4 address
148 * @return the IP address as an integer in network byte order
201 * representation of a V4 or V6 address. Avoids doing a DNS lookup on failure
213 * Writes an InetAddress to a parcel. The address may be null. This is likely faster than
216 protected static void parcelInetAddress(Parcel parcel, InetAddress address, int flags)
299 InetAddress address = null; local
    [all...]

Completed in 2408 milliseconds

<<11121314151617181920>>