/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/iptables/extensions/ |
libipt_NETMAP.c | 74 struct in_addr *ip; local 83 ip = dotted_to_addr(arg); 84 if (!ip) 85 exit_error(PARAMETER_PROBLEM, "Bad IP address `%s'\n", 87 range->min_ip = ip->s_addr; 90 ip = dotted_to_mask(slash+1); 91 if (!ip) 94 netmask = ip->s_addr; 153 print(const struct ipt_ip *ip, 175 save(const struct ipt_ip *ip, const struct ipt_entry_target *target [all...] |
libipt_SAME.c | 24 " Don't use destination-ip in\n" 53 struct in_addr *ip; local 61 ip = dotted_to_addr(arg); 62 if (!ip) 63 exit_error(PARAMETER_PROBLEM, "Bad IP address `%s'\n", 65 range->min_ip = ip->s_addr; 68 ip = dotted_to_addr(dash+1); 69 if (!ip) 70 exit_error(PARAMETER_PROBLEM, "Bad IP address `%s'\n", 73 range->max_ip = ip->s_addr [all...] |
libipt_iprange.c | 1 /* Shared library add-on to iptables to add IP range matching support. */ 17 "[!] --src-range ip-ip Match source IP in the specified range\n" 18 "[!] --dst-range ip-ip Match destination IP in the specified range\n" 33 struct in_addr *ip; local 39 ip = dotted_to_addr(arg); 40 if (!ip) [all...] |
libip6t_eui64.c | 47 print(const struct ip6t_ip6 *ip, 55 static void save(const struct ip6t_ip6 *ip, const struct ip6t_entry_match *match)
|
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uset.h | 66 iterator ip = lower_bound (begin(), end(), v); local 67 if (ip == end() || v < *ip) 68 ip = base_class::insert (ip, v); 70 *ip = v; 71 return (ip); 88 iterator ip = find (v); local 89 if (ip != end()) 90 erase (ip); [all...] |
/external/v8/test/cctest/ |
test-disasm-arm.cc | 143 COMPARE(add(r7, r8, Operand(ip, ASR, 1)), 144 "e08870cc add r7, r8, ip, asr #1"); 145 COMPARE(add(r7, r8, Operand(ip, ASR, 0)), 146 "e088704c add r7, r8, ip, asr #32"); 147 COMPARE(add(r7, r8, Operand(ip), SetCC), 148 "e098700c adds r7, r8, ip"); 149 COMPARE(add(r7, r8, Operand(ip, ASR, 31), SetCC, vs), 150 "60987fcc addvss r7, r8, ip, asr #31"); 152 COMPARE(adc(r7, fp, Operand(ip, ASR, 5)), 153 "e0ab72cc adc r7, fp, ip, asr #5") [all...] |
/external/openssl/apps/ |
s_socket.c | 105 static int init_client_ip(int *sock,unsigned char ip[4], int port, int type); 107 static int init_server_long(int *sock, int port,char *ip, int type); 109 static int host_ip(char *str, unsigned char ip[4]); 239 unsigned char ip[4]; local 242 if (!host_ip(host,&(ip[0]))) 247 return(init_client_ip(sock,ip,port,type)); 250 static int init_client_ip(int *sock, unsigned char ip[4], int port, int type) 262 ((unsigned long)ip[0]<<24L)| 263 ((unsigned long)ip[1]<<16L)| 264 ((unsigned long)ip[2]<< 8L) [all...] |
/external/dhcpcd/ |
net.c | 42 #include <netinet/ip.h> 546 struct ip ip; member in struct:udp_dhcp_packet 580 struct ip *ip; local 584 ip = &udpp->ip; 589 * ip structure and an invalid ip_len (basically udp length). 592 * Finally we complete the ip structure and ip checksum [all...] |
/external/clearsilver/cgi/ |
date.c | 136 char *ip; local 143 if(!(ip = strchr(ims,' '))) 146 while(isspace(*ip)) 147 ++ip; 149 if(isalpha(*ip)) { 151 sscanf(ip,"%25s %d %d:%d:%d %d",mname,&day,&hour,&min,&sec,&year); 153 else if(ip[2] == '-') { 156 sscanf(ip,"%s %d:%d:%d",t,&hour,&min,&sec); 173 sscanf(ip,"%d %s %d %d:%d:%d",&day,mname,&year,&hour,&min,&sec);
|
/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
|
OP_PACKED_SWITCH.S | 28 GET_INST_OPCODE(ip) @ extract opcode from rINST 29 GOTO_OPCODE(ip) @ jump to next instruction 32 GET_INST_OPCODE(ip) @ extract opcode from rINST 33 GOTO_OPCODE(ip) @ jump to next instruction
|
/bionic/libc/kernel/common/linux/netfilter/ |
xt_conntrack.h | 37 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon293 44 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon295
|
/bionic/libc/kernel/common/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::__anon305
|
/external/iproute2/ip/ |
routel | 8 # This script transforms the output of "ip" into more readable text. 9 # "ip" is the Linux-advanced-routing configuration tool part of the 13 test "X-h" = "X$1" && echo "Usage: $0 [tablenr [raw ip args...]]" && exit 64 17 ip route list table "$@" |
|
/external/iproute2/testsuite/tests/ |
policer | 5 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12 12 $TC filter add dev $DEV parent 10:0 protocol ip prio 10 u32 match ip protocol 1 0xff police rate 2kbit buffer 10k drop flowid 10:12
|
/external/kernel-headers/original/linux/netfilter/ |
xt_conntrack.h | 32 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon3059 39 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon3061
|
/external/qemu/slirp/ |
tcp_timer.c | 74 register struct socket *ip, *ipnxt; local 83 ip = tcb.so_next; 84 if (ip == 0) 86 for (; ip != &tcb; ip = ipnxt) { 87 ipnxt = ip->so_next; 88 tp = sototcpcb(ip); 94 if (ipnxt->so_prev != ip)
|