/external/llvm/lib/Support/ |
StreamingMemoryObject.cpp | 29 uint64_t Address) const override; 30 const uint8_t *getPointer(uint64_t address, uint64_t size) const override; 31 bool isValidAddress(uint64_t address) const override { 32 return validAddress(address); 41 bool validAddress(uint64_t address) const { 42 return static_cast<std::ptrdiff_t>(address) < LastChar - FirstChar; 50 uint64_t Address) const { 52 if (Address >= BufferSize) 55 uint64_t End = Address + Size; 59 assert(static_cast<int64_t>(End - Address) >= 0) [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
rd-dw2-11.d | 8 \[0x.*\] Extended opcode 2: set Address to 0x0 9 \[0x.*\] Special opcode .*: advance Address by 0 to 0x0 and Line by 4 to 5 10 \[0x.*\] Special opcode .*: advance Address by 2 to 0x2 and Line by 1 to 6 12 \[0x.*\] Special opcode .*: advance Address by 0 to 0x80 and Line by 2 to 8 13 \[0x.*\] Special opcode .*: advance Address by 2 to 0x82 and Line by 1 to 9 15 \[0x.*\] Special opcode .*: advance Address by 0 to 0x164 and Line by 6 to 15 16 \[0x.*\] Special opcode .*: advance Address by 4 to 0x168 and Line by 1 to 16 18 \[0x.*\] Special opcode .*: advance Address by 0 to 0x1e6 and Line by 2 to 18 19 \[0x.*\] Special opcode .*: advance Address by 4 to 0x1ea and Line by 1 to 19 21 \[0x.*\] Special opcode .*: advance Address by 0 to 0x650 and Line by 6 to 2 [all...] |
rd-dw2-2.d | 8 \[0x.*\] Extended opcode 2: set Address to 0x5005a 11 \[0x.*\] Special opcode .*: advance Address by 4 to 0x5005e and Line by 1 to 38 12 \[0x.*\] Special opcode .*: advance Address by 4 to 0x50062 and Line by 1 to 39 13 \[0x.*\] Special opcode .*: advance Address by 4 to 0x50066 and Line by 1 to 40 14 \[0x.*\] Special opcode .*: advance Address by 4 to 0x5006a and Line by 2 to 42 15 \[0x.*\] Special opcode .*: advance Address by 4 to 0x5006e and Line by 1 to 43 16 \[0x.*\] Special opcode .*: advance Address by 4 to 0x50072 and Line by 1 to 44 17 \[0x.*\] Special opcode .*: advance Address by 4 to 0x50076 and Line by 1 to 45 18 \[0x.*\] Special opcode .*: advance Address by 4 to 0x5007a and Line by 2 to 47 19 \[0x.*\] Special opcode .*: advance Address by 4 to 0x5007e and Line by 1 to 4 [all...] |
/frameworks/base/core/java/android/net/ |
LinkAddress.java | 39 * Identifies an IP address on a network link. 43 * <li>An IP address and prefix length (e.g., {@code 2001:db8::1/64} or {@code 192.0.2.1/24}). 44 * The address must be unicast, as multicast addresses cannot be assigned to interfaces. 45 * <li>Address flags: A bitmask of {@code OsConstants.IFA_F_*} values representing properties 46 * of the address (e.g., {@code android.system.OsConstants.IFA_F_OPTIMISTIC}). 47 * <li>Address scope: One of the {@code OsConstants.IFA_F_*} values; defines the scope in which 48 * the address is unique (e.g., 55 * IPv4 or IPv6 address. 57 private InetAddress address; field in class:LinkAddress 65 * Address flags. A bitmask of IFA_F_* values [all...] |
/external/clang/test/SemaOpenCL/ |
func_ptr.cl | 10 // taking the address of a function is an error 11 foo((void*)foo); // expected-error{{taking address of function is not allowed}} 12 foo(&foo); // expected-error{{taking address of function is not allowed}}
|
invalid-constant.cl | 2 constant int no_init; // expected-error {{variable in constant address space must be initialized}}
|
/external/iptables/extensions/ |
libip6t_eui64.man | 1 This module matches the EUI-64 part of a stateless autoconfigured IPv6 address. 2 It compares the EUI-64 derived from the source MAC address in Ethernet frame 3 with the lower 64 bits of the IPv6 source address. But "Universal/Local"
|
libxt_NETMAP.man | 7 Network address to map to. The resulting address will be constructed in the 8 following way: All 'one' bits in the mask are filled in from the new `address'. 9 All bits that are zero in the mask are filled in from the original address.
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
JniCallbacks.java | 48 void sspRequestCallback(byte[] address, byte[] name, int cod, int pairingVariant, 50 mBondStateMachine.sspRequestCallback(address, name, cod, pairingVariant, 53 void devicePropertyChangedCallback(byte[] address, int[] types, byte[][] val) { 54 mRemoteDevices.devicePropertyChangedCallback(address, types, val); 57 void deviceFoundCallback(byte[] address) { 58 mRemoteDevices.deviceFoundCallback(address); 61 void pinRequestCallback(byte[] address, byte[] name, int cod, boolean min16Digits) { 62 mBondStateMachine.pinRequestCallback(address, name, cod, min16Digits); 65 void bondStateChangeCallback(int status, byte[] address, int newState) { 66 mBondStateMachine.bondStateChangeCallback(status, address, newState) [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
jaloverflow.d | 9 # destination address are taken from the source address. So overflow 10 # occurs if the source and destination address do not have the same
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
Inet4AddressTest.java | 36 // address are: 1110, false otherwise 37 // Make 1 address with 1110, and 1 without 41 assertTrue("Multicast address " + addrName + " not detected.", addr 46 assertTrue("Multicast address " + addrName + " not detected.", addr 49 addrName = "42.42.42.42"; // a non-multicast address 51 assertTrue("Non multicast address " + addrName 52 + " reporting as a multicast address.", !addr 67 addrName = "127.0.0.0"; // a loopback address should be 127.d.d.d 69 assertTrue("Loopback address " + addrName + " not detected.", addr 72 addrName = "127.42.42.42"; // a loopback address should b [all...] |
/libcore/ojluni/src/main/java/sun/security/x509/ |
IPAddressName.java | 43 * When the subjectAltName extension contains a iPAddress, the address 47 * address. For IP Version 4, as specified in RFC 791, the octet string 56 * address range.[RFC 1519] For IPv6 addresses, the ipAddress field 71 private byte[] address; field in class:IPAddressName 88 * @params address the IP address 89 * @throws IOException if address is not a valid IPv4 or IPv6 address 91 public IPAddressName(byte[] address) throws IOException { 93 * A valid address must consist of 4 bytes of address an [all...] |
/external/avahi/avahi-compat-howl/ |
.gitignore | 0 address-test
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/ |
X25.py | 23 @ivar address: the PSDN address 24 @type address: string 27 __slots__ = ['address'] 29 def __init__(self, rdclass, rdtype, address): 31 self.address = address 34 return '"%s"' % dns.rdata._escapify(self.address) 37 address = tok.get_string() 39 return cls(rdclass, rdtype, address) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/IN/ |
A.py | 24 @ivar address: an IPv4 address 25 @type address: string (in the standard "dotted quad" format)""" 27 __slots__ = ['address'] 29 def __init__(self, rdclass, rdtype, address): 32 junk = dns.ipv4.inet_aton(address) 33 self.address = address 36 return self.address 39 address = tok.get_identifier( [all...] |
AAAA.py | 24 @ivar address: an IPv6 address 25 @type address: string (in the standard IPv6 format)""" 27 __slots__ = ['address'] 29 def __init__(self, rdclass, rdtype, address): 32 junk = dns.inet.inet_pton(dns.inet.AF_INET6, address) 33 self.address = address 36 return self.address 39 address = tok.get_identifier( [all...] |
APL.py | 27 @ivar family: the address family (IANA address family registry) 31 @ivar address: the address 32 @type address: string 37 __slots__ = ['family', 'negation', 'address', 'prefix'] 39 def __init__(self, family, negation, address, prefix): 42 self.address = address 47 return "!%d:%s/%s" % (self.family, self.address, self.prefix [all...] |
/external/fio/os/windows/posix/include/sys/ |
un.h | 9 sa_family_t sun_family; /* Address family */
|
/external/markdown/MarkdownTest/Tests_2004/ |
Yuri-Email.text | 3 * An email address in a list
|
/external/nist-sip/java/javax/sip/address/ |
Hop.java | 1 package javax.sip.address;
|
URI.java | 1 package javax.sip.address;
|
/external/snakeyaml/src/test/resources/representer/ |
scalar-style1.yaml | 2 address: |-
|
scalar-style2.yaml | 2 address: |-
|
scalar-style3.yaml | 2 address: |-
|
/external/tcpdump/tests/ |
loopback.out | 1 Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets) 3 Loopback, skipCount 0, Forward Data, forwarding address aa:00:04:00:6a:04, data (60 octets) 4 Loopback, skipCount 8, Forward Data, forwarding address aa:00:04:00:69:04, data (52 octets) 5 Loopback, skipCount 16, Forward Data, forwarding address aa:00:04:00:1d:04, data (44 octets)
|