/dalvik/vm/mterp/armv6t2/ |
OP_SHR_LONG_2ADDR.S | 17 subs ip, r2, #32 @ ip<- r2 - 32 19 movpl r0, r1, asr ip @ if r2 >= 32, r0<-r1 >> (r2-32) 25 GET_INST_OPCODE(ip) @ extract opcode from rINST 27 GOTO_OPCODE(ip) @ jump to next instruction
|
OP_USHR_LONG_2ADDR.S | 17 subs ip, r2, #32 @ ip<- r2 - 32 19 movpl r0, r1, lsr ip @ if r2 >= 32, r0<-r1 >>> (r2-32) 25 GET_INST_OPCODE(ip) @ extract opcode from rINST 27 GOTO_OPCODE(ip) @ jump to next instruction
|
binopWide2addr.S | 24 orrs ip, r2, r3 @ second arg (r2-r3) is zero? 31 GET_INST_OPCODE(ip) @ extract opcode from rINST 33 GOTO_OPCODE(ip) @ jump to next instruction
|
/external/iproute2/examples/diffserv/ |
Edge1 | 13 IP=$IPROUTE/ip/ip 50 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 1 fw classid 1:1 51 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 2 fw classid 1:2 52 $TC filter add $EGDEV parent 1:0 protocol ip prio 4 handle 3 fw classid 1:3
|
/external/libvpx/vp8/common/ppc/ |
idctllm_altivec.asm | 36 lvx v0, 0, r3 ;# input ip[0], ip[ 4] 37 lvx v1, r10, r3 ;# input ip[8], ip[12] 42 vaddsws v6, v2, v3 ;# a1 = ip[0]+ip[8] 43 vsubsws v7, v2, v3 ;# b1 = ip[0]-ip[8] 48 vaddsws v4, v4, v0 ;# ip[ 4] * sin(pi/8) * sqrt(2) 52 vsraw v5, v5, v12 ;# ip[12] * cos(pi/8) * sqrt(2 [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
socketaddress.cc | 32 #include <netinet/ip.h> 69 SocketAddress::SocketAddress(uint32 ip, int port) { 70 SetIP(ip); 99 void SocketAddress::SetIP(uint32 ip) { 101 ip_ = ip; 109 void SocketAddress::SetResolvedIP(uint32 ip) { 110 ip_ = ip; 118 uint32 SocketAddress::ip() const { function in class:talk_base::SocketAddress 304 std::string SocketAddress::IPToString(uint32 ip) { 306 ost << ((ip >> 24) & 0xff) 325 uint32 ip = 0; local 347 uint32 ip = local [all...] |
/external/dhcpcd/ |
net.c | 43 #include <netinet/ip.h> 641 struct ip ip; member in struct:udp_dhcp_packet 675 struct ip *ip; local 679 ip = &udpp->ip; 684 * ip structure and an invalid ip_len (basically udp length). 687 * Finally we complete the ip structure and ip checksum [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
GeneralName.java | 102 * specific-part must include a fully qualified domain name or IP 109 * address. For IP Version 4, as specified in RFC 791, the octet string 110 * MUST contain exactly four octets. For IP Version 6, as specified in 172 throw new IllegalArgumentException("IP Address is invalid"); 271 private byte[] toGeneralNameEncoding(String ip) 273 if (IPAddress.isValidIPv6WithNetmask(ip) || IPAddress.isValidIPv6(ip)) 275 int slashIndex = ip.indexOf('/'); 280 int[] parsedIp = parseIPv6(ip); 288 int[] parsedIp = parseIPv6(ip.substring(0, slashIndex)) [all...] |
/external/iptables/extensions/ |
libipt_SAME.c | 24 " Don't use destination-ip in\n" 42 const struct in_addr *ip; local 53 ip = xtables_numeric_to_ipaddr(arg); 54 if (!ip) 55 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 57 range->min_ip = ip->s_addr; 60 ip = xtables_numeric_to_ipaddr(dash+1); 61 if (!ip) 62 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 65 range->max_ip = ip->s_addr [all...] |
libipt_DNAT.c | 71 const struct in_addr *ip; local 117 /* Starts with a colon? No IP info...*/ 133 ip = xtables_numeric_to_ipaddr(arg); 134 if (!ip) 135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 137 range.min_ip = ip->s_addr; 139 ip = xtables_numeric_to_ipaddr(dash+1); 140 if (!ip) 141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 143 range.max_ip = ip->s_addr [all...] |
libipt_SNAT.c | 71 const struct in_addr *ip; local 117 /* Starts with a colon? No IP info...*/ 133 ip = xtables_numeric_to_ipaddr(arg); 134 if (!ip) 135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 137 range.min_ip = ip->s_addr; 139 ip = xtables_numeric_to_ipaddr(dash+1); 140 if (!ip) 141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n", 143 range.max_ip = ip->s_addr [all...] |
libipt_NETMAP.c | 61 range->min_ip = cb->val.haddr.ip & cb->val.hmask.ip; 62 range->max_ip = range->min_ip | ~cb->val.hmask.ip; 65 static void NETMAP_print(const void *ip, const struct xt_entry_target *target, 83 static void NETMAP_save(const void *ip, const struct xt_entry_target *target) 86 NETMAP_print(ip, target, 0);
|
/dalvik/vm/mterp/armv5te/ |
binopWide.S | 28 orrs ip, r2, r3 @ second arg (r2-r3) is zero? 35 GET_INST_OPCODE(ip) @ extract opcode from rINST 37 GOTO_OPCODE(ip) @ jump to next instruction
|
binopWide2addr.S | 25 orrs ip, r2, r3 @ second arg (r2-r3) is zero? 32 GET_INST_OPCODE(ip) @ extract opcode from rINST 34 GOTO_OPCODE(ip) @ jump to next instruction
|
OP_CONST_CLASS.S | 14 GET_INST_OPCODE(ip) @ extract opcode from rINST 16 GOTO_OPCODE(ip) @ jump to next instruction 33 GET_INST_OPCODE(ip) @ extract opcode from rINST 35 GOTO_OPCODE(ip) @ jump to next instruction
|
OP_CONST_STRING.S | 14 GET_INST_OPCODE(ip) @ extract opcode from rINST 16 GOTO_OPCODE(ip) @ jump to next instruction 32 GET_INST_OPCODE(ip) @ extract opcode from rINST 34 GOTO_OPCODE(ip) @ jump to next instruction
|
OP_CONST_STRING_JUMBO.S | 16 GET_INST_OPCODE(ip) @ extract opcode from rINST 18 GOTO_OPCODE(ip) @ jump to next instruction 34 GET_INST_OPCODE(ip) @ extract opcode from rINST 36 GOTO_OPCODE(ip) @ jump to next instruction
|
/external/clang/test/SemaTemplate/ |
instantiate-init.cpp | 13 void test_f0(int *ip, float *fp, double *dp) { 14 f0(ip, fp); 15 f0(ip, dp); // expected-note{{instantiation}} 24 void test_f1(X0 *x0, int *ip, float *fp, double *dp) { 25 f1(x0, ip, fp); 26 f1(x0, ip, dp); // expected-note{{instantiation}}
|
member-access-expr.cpp | 70 void destruct_intptr(int *ip) { 71 ip->~T(); 72 ip->T::~T(); 75 void test_destruct(X2 *x2p, int *ip) { 77 destruct(ip); 78 destruct_intptr<int>(ip);
|
temp_func_order.cpp | 8 void test_f0(int i, int *ip) { 10 float &fr = f0(ip); 49 void test_f3(int i, int *ip, float *fp) { 50 int &ir = f3(ip, i); 52 f3(ip, ip); // expected-error{{ambiguous}}
|
/external/iptables/iptables/ |
iptables.c | 528 const struct ipt_ip *ip, 536 match->print(ip, m, numeric); 567 flags = fw->ip.flags; 580 fputc(fw->ip.invflags & IPT_INV_PROTO ? '!' : ' ', stdout); 582 const char *pname = proto_to_name(fw->ip.proto, format&FMT_NUMERIC); 586 printf(FMT("%-5hu", "%hu "), fw->ip.proto); 592 fputc(fw->ip.invflags & IPT_INV_FRAG ? '!' : '-', stdout); 600 if (fw->ip.invflags & IPT_INV_VIA_IN) { 606 if (fw->ip.iniface[0] != '\0') { 607 strcat(iface, fw->ip.iniface) [all...] |
/bionic/libc/kernel/common/linux/netfilter/ |
xt_conntrack.h | 44 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon371 51 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon373
|
/bionic/libc/kernel/common/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 50 u_int32_t ip; member in struct:ip_conntrack_manip 59 u_int32_t ip; member in struct:ip_conntrack_tuple::__anon384
|
/development/ndk/platforms/android-3/include/linux/netfilter/ |
xt_conntrack.h | 37 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon1015 44 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon1017
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 42 u_int32_t ip; member in struct:ip_conntrack_manip 51 u_int32_t ip; member in struct:ip_conntrack_tuple::__anon1027
|