/external/dhcpcd/ |
net.c | 43 #include <netinet/ip.h> 673 struct ip ip; member in struct:udp_dhcp_packet 707 struct ip *ip; local 711 ip = &udpp->ip; 716 * ip structure and an invalid ip_len (basically udp length). 719 * Finally we complete the ip structure and ip checksum [all...] |
/external/dnsmasq/src/ |
dhcp.c | 568 then 192.168.0.255 is a valid IP address, but not for Windows as it's 723 char *ip, *cp; local 767 for (ip = buff; *ip && !isspace((int)*ip); ip++); 768 for(; *ip && isspace((int)*ip); ip++) 769 *ip = 0 [all...] |
/external/freetype/src/psaux/ |
t1decode.c | 367 FT_Byte* ip; local 416 ip = zone->cursor = zone->base; 430 while ( ip < limit ) 455 switch ( *ip++ ) 515 if ( ip > limit ) 522 switch ( *ip++ ) 555 ip[-1] )); 561 if ( ip + 4 > limit ) 568 value = (FT_Int32)( ( (FT_UInt32)ip[0] << 24 ) | 569 ( (FT_UInt32)ip[1] << 16 ) [all...] |
/external/iputils/ |
clockdiff.c | 14 #include <netinet/ip.h> 139 struct iphdr *ip = (struct iphdr *) packet; local 226 icp = (struct icmphdr *)(packet + (ip->ihl << 2)); 316 struct iphdr *ip = (struct iphdr *) packet; local 406 icp = (struct icmphdr *)(packet + (ip->ihl << 2)); 512 * of ICMP TSTAMP messages which are returned to the sender by the IP module
|
/external/jmdns/src/javax/jmdns/impl/ |
HostInfo.java | 59 * IP address to bind 72 String ip = System.getProperty("net.mdns.interface"); local 73 if (ip != null) { 74 addr = InetAddress.getByName(ip);
|
/external/libcxx/test/depr/depr.c.headers/ |
math_h.disabled.cpp | 108 int ip; local 109 static_assert((std::is_same<decltype(frexp((double)0, &ip)), double>::value), ""); 110 static_assert((std::is_same<decltype(frexpf(0, &ip)), float>::value), ""); 111 static_assert((std::is_same<decltype(frexpl(0, &ip)), long double>::value), ""); 112 assert(frexp(0, &ip) == 0); 117 int ip = 1; local 118 static_assert((std::is_same<decltype(ldexp((double)0, ip)), double>::value), ""); 119 static_assert((std::is_same<decltype(ldexpf(0, ip)), float>::value), ""); 120 static_assert((std::is_same<decltype(ldexpl(0, ip)), long double>::value), ""); 121 assert(ldexp(1, ip) == 2) 555 int ip; local [all...] |
/external/libcxx/test/numerics/c.math/ |
cmath.disabled.cpp | 240 int ip; local 241 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), ""); 242 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), ""); 243 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), ""); 244 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), ""); 245 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), ""); 246 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), ""); 247 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), ""); 248 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), ""); 249 static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), "") 259 int ip = 1; local 1164 int ip; local [all...] |
/external/libcxxabi/src/ |
cxa_personality.cpp | 60 | Beginning of Call Site Table The current ip lies within the | 74 | Beginning of Call Site Table The current ip is a 1-based index into | 584 uintptr_t ip = _Unwind_GetIP(context) - 1; local 589 if (ip == uintptr_t(-1)) 595 else if (ip == 0) 597 // ip is 1-based index into call site table 599 uintptr_t ipOffset = ip - funcStart; 641 // ip is 1-based index into this table 644 if (--ip == 0) 647 // Found the call site containing ip [all...] |
/external/libpcap/ |
pcap-dlpi.c | 309 #define DL_IPATM 0x12 /* ATM Classical IP interface */ 1446 register dl_hp_ppa_info_t *ipstart, *ip; local [all...] |
/external/libunwind/src/dwarf/ |
Gfind_proc_info-lsb.c | 50 linear_search (unw_addr_space_t as, unw_word_t ip, 66 if (ip >= pi->start_ip && ip < pi->end_ip) 364 dwarf_find_debug_frame (int found, unw_dyn_info_t *di_debug, unw_word_t ip, 376 fdesc = locate_debug_info (unw_local_addr_space, ip, obj_name, start, end); 484 fprintf (stderr, "ip %x, fde offset %x\n", 515 member ip contains the instruction-pointer we're looking 523 unw_word_t addr, eh_frame_start, eh_frame_end, fde_count, ip; local 535 ip = cb_data->ip; [all...] |
/external/libunwind/src/ia64/ |
Gscript.c | 60 hash (unw_word_t ip) 65 return (ip >> 4) * magic >> (64 - IA64_LOG_UNW_HASH_SIZE); 69 cache_match (struct ia64_script *script, unw_word_t ip, unw_word_t pr) 71 if (ip == script->ip && ((pr ^ script->pr_val) & script->pr_mask) == 0) 89 cache->buckets[i].ip = 0; 156 unw_word_t ip, pr; local 158 ip = c->ip; 161 if (cache_match (script, ip, pr) 519 struct ia64_script_insn *ip, *limit, next_insn; local [all...] |
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
map.c | 524 const u64 ip = map->start; local 530 if (ip < m->start) 545 struct map *maps__find(struct rb_root *maps, u64 ip) 554 if (ip < m->start) 556 else if (ip > m->end)
|
sort.h | 87 u64 ip; member in struct:hist_entry
|
unwind.c | 35 unw_word_t ip, 270 static struct map *find_map(unw_word_t ip, struct unwind_info *ui) 275 MAP__FUNCTION, ip, &al); 280 find_proc_info(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, 288 map = find_map(ip, ui); 306 return dwarf_search_unwind_table(as, ip, &di, pi, 468 static int entry(u64 ip, struct thread *thread, struct machine *machine, 476 MAP__FUNCTION, ip, &al); 478 e.ip = ip; 536 unw_word_t ip; local 550 unw_word_t ip; local [all...] |
/external/lldb/source/Plugins/Process/Utility/ |
RegisterContextDarwin_x86_64.h | 106 uint32_t ip; // "fioff" member in struct:RegisterContextDarwin_x86_64::FPU
|
/external/lzma/C/ |
XzDec.c | 59 UInt32 ip;
member in struct:__anon10448 76 p->ip = 0;
105 p->ip = v;
122 #define CASE_BRA_CONV(isa) case XZ_ID_ ## isa: p->bufConv = isa ## _Convert(p->buf, p->bufTotal, p->ip, p->encodeMode); break;
174 p->bufConv = x86_Convert(p->buf, p->bufTotal, p->ip, &p->x86State, p->encodeMode);
184 p->ip += (UInt32)p->bufConv;
|
/external/openssl/crypto/comp/ |
c_zlib.c | 717 int ret, *ip; local 741 ip = ptr; 742 if (*ip == 0)
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/ |
t1decode.c | 367 FT_Byte* ip; local 416 ip = zone->cursor = zone->base; 430 while ( ip < limit ) 455 switch ( *ip++ ) 515 if ( ip > limit ) 522 switch ( *ip++ ) 555 ip[-1] )); 561 if ( ip + 4 > limit ) 568 value = (FT_Int32)( ( (FT_UInt32)ip[0] << 24 ) | 569 ( (FT_UInt32)ip[1] << 16 ) [all...] |
/external/ppp/pppd/ |
utils.c | 130 * %q (quoted string), %t (current time) and %I (IP address) formats. 176 u_int32_t ip; local 292 ip = va_arg(args, u_int32_t); 293 ip = ntohl(ip); 294 slprintf(num, sizeof(num), "%d.%d.%d.%d", (ip >> 24) & 0xff, 295 (ip >> 16) & 0xff, (ip >> 8) & 0xff, ip & 0xff);
|
/external/qemu-pc-bios/vgabios/tests/lfbprof/ |
lfbprof.c | 100 short es,ds,fs,gs,ip,cs,sp,ss; member in struct:__anon13983
|
/external/strace/ |
unwind.c | 309 unw_word_t ip; local 313 if (unw_get_reg(cursor, UNW_REG_IP, &ip) < 0) { 324 if (ip >= cur_mmap_cache->start_addr && 325 ip < cur_mmap_cache->end_addr) { 331 true_offset = ip - cur_mmap_cache->start_addr + 340 else if (ip < cur_mmap_cache->start_addr) 349 * unw_get_reg returns IP == 0 351 if(ip) 352 error_action(data, "unexpected_backtracing_error", ip); 531 unsigned long ip) [all...] |
/external/tcpdump/ |
ip.h | 1 /* @(#) $Header: /tcpdump/master/tcpdump/ip.h,v 1.12 2007-09-14 01:29:28 guy Exp $ (LBL) */ 34 * @(#)ip.h 8.2 (Berkeley) 6/1/94 50 struct ip { struct 52 #define IP_V(ip) (((ip)->ip_vhl & 0xf0) >> 4) 53 #define IP_HL(ip) ((ip)->ip_vhl & 0x0f) 70 * Definitions for IP type of service (ip_tos) 77 * Definitions for IP precedence (also in ip_tos) (hopefully unused) 128 #define IPTS_OFLW(ip) (((ipt)->ipt_oflwflg & 0xf0) >> 4 [all...] |
print-esp.c | 53 #include "ip.h" 220 * decode the form: SPINUM@IP <tab> ALGONAME:0xsecret 470 (*ndo->ndo_warning)(ndo, "print_esp: can not decode IP# %s\n", spikey); 549 struct ip *ip; local 600 ip = (struct ip *)bp2; 601 switch (IP_V(ip)) { 625 if (EXTRACT_16BITS(&ip->ip_off) & IP_MF) 627 len = EXTRACT_16BITS(&ip->ip_len) [all...] |
print-pim.c | 40 #include "ip.h" 116 u_short pim_cksum; /* IP style check sum */ 249 TCHECK2(bp[8], 20); /* ip header */ 471 * 1 IP (IP version 4) 472 * 2 IP6 (IP version 6) 746 struct ip *ip; local 758 ip = (struct ip *)bp [all...] |
print-udp.c | 47 #include "ip.h" 138 u_int *ip = (u_int *)hdr; local 145 ip += 2; 163 ip += 1; 179 i2 = ip[0]; 185 ip += optlen; 191 i2 = ip[0]; 197 ip += extlen; 200 printf(" 0x%04x", ip[0] >> 16); 285 static int udp_cksum(register const struct ip *ip 363 register const struct ip *ip; local [all...] |