Searched refs:ip (Results 1 – 19 of 19) sorted by relevance
| /tools/libfsimage/zfs/ |
| A D | zfs_fletcher.c | 31 const uint64_t *ip = buf; in fletcher_2_native() local 35 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_native() 36 a0 += ip[0]; in fletcher_2_native() 37 a1 += ip[1]; in fletcher_2_native() 52 for (a0 = b0 = a1 = b1 = 0; ip < ipend; ip += 2) { in fletcher_2_byteswap() 53 a0 += BSWAP_64(ip[0]); in fletcher_2_byteswap() 54 a1 += BSWAP_64(ip[1]); in fletcher_2_byteswap() 69 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_native() 70 a += ip[0]; in fletcher_4_native() 86 for (a = b = c = d = 0; ip < ipend; ip++) { in fletcher_4_byteswap() [all …]
|
| A D | fsys_zfs.c | 588 uint8_t *ip; in zap_leaf_lookup() local 596 ip = la->la_array; in zap_leaf_lookup() 598 *value = (uint64_t)ip[0] << 56 | (uint64_t)ip[1] << 48 | in zap_leaf_lookup() 599 (uint64_t)ip[2] << 40 | (uint64_t)ip[3] << 32 | in zap_leaf_lookup() 600 (uint64_t)ip[4] << 24 | (uint64_t)ip[5] << 16 | in zap_leaf_lookup() 601 (uint64_t)ip[6] << 8 | (uint64_t)ip[7]; in zap_leaf_lookup()
|
| /tools/hotplug/Linux/ |
| A D | vif-common.sh | 75 if ip link show "$vifname" >&/dev/null 79 do_or_die ip link set "$dev" name "$vifname" 120 ip=${ip:-} 121 ip=$(xenstore_read_default "$XENBUS_PATH/ip" "$ip") 196 if [ "$ip" != "" ] 199 for addr in $ip 223 ip -4 -o addr show primary dev "$1" | awk '$3 == "inet" {split($4,i,"/"); print i[1]; exit}'
|
| A D | xen-network-common.sh | 87 ip link set dev ${dev} down 94 ip link set dev ${dev} address fe:ff:ff:ff:ff:ff || true 98 ip address flush dev ${dev} 119 ip link add name ${bridge} type bridge stp_state 0 forward_delay 0 135 ip link set ${dev} master ${bridge} 141 ip link set dev ${dev} up 148 do_without_error ip link set dev ${dev} down 156 do_without_error ip link set ${dev} nomaster 183 ip link set dev ${dev} mtu ${mtu} || :
|
| A D | vif-nat | 78 if [ "$ip" = "" ] 80 ip=$(ip_from_dom) 83 router_ip=$(routing_ip "$ip") 86 vif_ip=`echo ${ip} | awk -F/ '{print $1}'` 161 if ip route | grep -q "dev ${dev}" 167 do_or_die ip link set dev "${dev}" up arp on 168 do_or_die ip addr add "$router_ip" dev "${dev}" 169 do_or_die ip route add "$vif_ip" dev "${dev}" src "$router_ip"
|
| A D | colo-proxy-setup | 41 do_without_error tc filter add dev $vifname parent 1: protocol ip prio 10 \ 61 do_without_error tc filter del dev $vifname parent 1: protocol ip prio 10 u32 match u32 \ 85 do_without_error ip link set $vifname nomaster 86 do_without_error ip link add name $forwardbr type bridge 87 do_without_error ip link set $vifname master $forwardbr 88 do_without_error ip link set $forwarddev master $forwardbr 90 do_without_error ip link set dev $forwardbr up 107 do_without_error ip link set $forwarddev nomaster 108 do_without_error ip link set $vifname nomaster 109 do_without_error ip link delete $forwardbr type bridge [all …]
|
| A D | vif-openvswitch | 35 if ! command -v ip > /dev/null 2>&1; then 85 do_or_die ip link set $dev up 98 do_without_error ip link set $dev down
|
| A D | vif-route | 52 for addr in ${ip} ; do 53 ${cmdprefix} ip route ${ipcmd} ${addr} dev ${dev} src ${main_ip} metric ${metric}
|
| A D | remus-netbuf-setup | 157 do_or_die ip link set dev "$REMUS_IFB" up 166 tc filter add dev "$vif" parent ffff: proto ip prio 10 \ 203 do_without_error ip link set dev "$ifb" down
|
| A D | vif-bridge | 73 ip link show dev "$bridge" 1>/dev/null 2>&1 || RET=1
|
| /tools/debugger/gdbsx/gx/ |
| A D | gx_local.c | 68 prnt_call_trace32(uint32_t ip, uint32_t sp) in prnt_call_trace32() argument 74 printf(" [%08x]\n", ip); in prnt_call_trace32() 90 prnt_call_trace64(uint64_t ip, uint64_t sp) in prnt_call_trace64() argument 96 printf(" [%016"PRIx64"]\n", ip); in prnt_call_trace64()
|
| /tools/xs-clients/ |
| A D | xenstore_client.c | 84 unsigned char *ip; in sanitise_value() local 91 ip = (unsigned char *)val; in sanitise_value() 100 c= *ip++; in sanitise_value() 136 const char *ip; in unsanitise_value() local 141 for ( ip = in, op = out; (c = *ip++); *op++ = c ) in unsanitise_value() 145 c = *ip++; in unsanitise_value() 150 sscanf(ip, f "%n", &c, &n); \ in unsanitise_value() 151 ip += n; \ in unsanitise_value() 164 case '3': case '7': --ip; GETF("%3o"); break; in unsanitise_value() 165 case 0: --ip; break; in unsanitise_value()
|
| /tools/hotplug/Linux/vif-post.d/ |
| A D | 00-vif-local.hook | 14 # ip list of IP networks for the vif, space-separated
|
| /tools/hotplug/NetBSD/ |
| A D | Makefile | 9 XEN_SCRIPTS += vif-ip
|
| /tools/libs/light/ |
| A D | libxl_nic.c | 215 if (nic->ip) { in libxl__set_xenstore_nic() 217 flexarray_append(back, libxl__strdup(gc, nic->ip)); in libxl__set_xenstore_nic() 333 (const char **)(&nic->ip)); in libxl__nic_from_xenstore()
|
| A D | libxl_types.idl | 829 ("ip", string),
|
| /tools/xl/ |
| A D | xl_parse.c | 453 replace_string(&nic->ip, oparg); in parse_nic_config()
|
| /tools/golang/xenlight/ |
| A D | helpers.gen.go | 2005 x.Ip = C.GoString(xc.ip) 2086 xc.ip = C.CString(x.Ip)}
|
| /tools/firmware/rombios/ |
| A D | rombios.c | 860 Bit16u ip; 8369 ;; iret pops ip, then cs, then flags, so push them in the opposite order. 10379 ; sp+0x20: [eax ][flags ][ip ][cs ][arg1 ][arg2, ...
|
Completed in 53 milliseconds