/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/ |
Base64Coder.java | 110 int ip = 0; local 111 while (ip < iLen) { 112 int l = Math.min(iLen - ip, blockLen); 113 buf.append(encode(in, iOff + ip, l)); 115 ip += l; 163 int ip = iOff; local 166 while (ip < iEnd) { 167 int i0 = in[ip++] & 0xff; 168 int i1 = ip < iEnd ? in[ip++] & 0xff : 0 [all...] |
/external/syslinux/core/fs/pxe/ |
dhcp_option.c | 35 uint32_t ip; local 41 ip = *dp++; 42 if (ip_ok(ip)) 43 dns_server[num++] = ip; 70 uint32_t ip; local 78 ip = *(uint32_t *)data; 79 if (ip_ok(ip)) 80 IPInfo.serverip = ip; 218 * MyIP - client IP address 219 * server_ip - boot server IP addres [all...] |
dnsresolv.c | 54 * parse the ip_str and return the ip address with *res. 63 uint32_t ip = 0; local 74 ip = (ip << 8) | part; 80 *res = htonl(ip); 87 * Points to a null-terminated in _name_ and returns the ip addr in 94 struct ip_addr ip; local 106 if (parse_dotquad(name, &ip.addr)) 107 return ip.addr; 119 err = netconn_gethostbyname(name, &ip); [all...] |
/external/syslinux/core/lwip/src/netif/ppp/ |
vj.c | 133 * buffer of the chain contains a valid IP header. 140 register struct ip_hdr *ip = (struct ip_hdr *)pb->payload; local 142 register u_short hlen = IPH_HL(ip); 152 * Check that the packet is IP proto TCP. 154 if (IPH_PROTO(ip) != IP_PROTO_TCP) { 159 * Bail if this is an IP fragment or if the TCP packet isn't 163 if ((IPH_OFFSET(ip) & PP_HTONS(0x3fff)) || pb->tot_len < 40) { 166 th = (struct tcp_hdr *)&((long *)ip)[hlen]; 178 if (!ip_addr_cmp(&ip->src, &cs->cs_ip.src) 179 || !ip_addr_cmp(&ip->dest, &cs->cs_ip.dest 431 register struct ip_hdr *ip; local [all...] |
/external/syslinux/dos/ |
printf.c | 111 /* Forward decl. needed for IP address printing stuff... */ 231 long *ip = va_arg(args, long *); local 232 *ip = (str - buf); 234 int *ip = va_arg(args, int *); local 235 *ip = (str - buf);
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
cleanup_test.cc | 267 void Incr(volatile int* ip) { ++*ip; } 292 volatile int* ip = &i; local 294 auto fin = gtl::MakeCleanup([ip] { Incr(ip); }); 300 volatile int* ip = &i; local 302 AnyCleanup fin = gtl::MakeCleanup([ip] { Incr(ip); }); 308 volatile int* ip = &i; local 310 AnyCleanup fin([ip] { Incr(ip); }) [all...] |
/external/toybox/toys/pending/ |
arping.c | 27 -s SRC_IP Sender IP address 28 DST_IP Target IP address 51 // Gets information of INTERFACE and updates IFINDEX, MAC and IP. 56 struct sockaddr_in *ip; local 68 ip = (struct sockaddr_in*) &req.ifr_addr; 69 *oip = ntohl(ip->sin_addr.s_addr);
|
/external/valgrind/memcheck/tests/ppc32/ |
power_ISA2_05.c | 52 int_pair_t *ip; local 57 ip = (int_pair_t *) & FRT1; 58 printf("lfiwax (%f) => FRT=(%x, %x)\n", foo, ip->hi, ip->lo);
|
/external/valgrind/memcheck/tests/ppc64/ |
power_ISA2_05.c | 56 int_pair_t *ip; local 61 ip = (int_pair_t *) & FRT1; 62 printf("lfiwax (%f) => FRT=(%x, %x)\n", foo_s, ip->hi, ip->lo);
|
/external/wpa_supplicant_8/src/common/ |
wpa_helpers.c | 214 char ip[30]; local 222 if (get_wpa_status(ifname, "ip_address", ip, sizeof(ip)) == 0 223 && strlen(ip) > 0) { 224 printf("IP address found: '%s'\n", ip); 225 if (strncmp(ip, "169.254.", 8) != 0) 234 printf("%s: Could not get IP address for ifname='%s'", __func__,
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
az_lsp.cpp | 387 Word16 i, j, nf, ip; 436 ip = 0; // indicator for f1 or f2 511 if (ip == 0) 513 ip = 1; 518 ip = 0; 572 Word16 ip; local 630 ip = 0; /* indicator for f1 or f2 */ 706 if (ip == 0) 708 ip = 1; 713 ip = 0 [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
az_isp.c | 66 Word32 i, j, nf, ip, order; local 109 ip = 0; /* indicator for f1 or f2 */ 167 if (ip == 0) 169 ip = 1; 174 ip = 0;
|
/frameworks/base/services/net/java/android/net/ip/ |
InterfaceController.java | 17 package android.net.ip; 33 * Encapsulates the multiple IP configuration operations performed on an interface. 129 public boolean addAddress(InetAddress ip, int prefixLen) { 131 mNetd.interfaceAddAddress(mIfName, ip.getHostAddress(), prefixLen); 133 logError("failed to add %s/%d: %s", ip, prefixLen, e); 139 public boolean removeAddress(InetAddress ip, int prefixLen) { 141 mNetd.interfaceDelAddress(mIfName, ip.getHostAddress(), prefixLen); 143 logError("failed to remove %s/%d: %s", ip, prefixLen, e);
|
IpManager.java | 17 package android.net.ip;
|
/frameworks/base/services/net/java/android/net/netlink/ |
StructNlAttr.java | 135 public StructNlAttr(short type, InetAddress ip) { 137 setValue(ip.getAddress());
|
/frameworks/rs/ |
rsGrallocConsumer.cpp | 76 intptr_t ip = (intptr_t)(consumer->mAlloc[i]); local 77 consumer->mCtx->sendMessageToClient(&ip, 78 RS_MESSAGE_TO_CLIENT_NEW_BUFFER, 0, sizeof(ip), true);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
MatrixUtils.java | 48 int ip = row; local 52 ip = i; 56 if (ip != row) { 58 final float temp0 = squareMatrix0[ip][j]; 59 squareMatrix0[ip][j] = squareMatrix0[row][j]; 61 final float temp1 = squareMatrix1[ip][j]; 62 squareMatrix1[ip][j] = squareMatrix1[row][j];
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
netfilter.h | 63 __be32 ip; member in union:nf_inet_addr
|
/prebuilts/go/darwin-x86/src/runtime/ |
defs_windows_386.go | 104 func (c *context) ip() uintptr { return uintptr(c.eip) } func
|
defs_windows_amd64.go | 119 func (c *context) ip() uintptr { return uintptr(c.rip) } func
|
signal_darwin_arm.go | 30 func (c *sigctxt) ip() uint32 { return c.regs().r[12] } func
|
signal_freebsd_arm.go | 30 func (c *sigctxt) ip() uint32 { return c.regs().__gregs[12] } func
|
signal_linux_arm.go | 33 func (c *sigctxt) ip() uint32 { return c.regs().ip } func
|
signal_nacl_arm.go | 30 func (c *sigctxt) ip() uint32 { return c.regs().r12 } func
|
signal_netbsd_arm.go | 30 func (c *sigctxt) ip() uint32 { return c.regs().__gregs[_REG_R12] } func
|