Searched defs:ip (Results 76 - 100 of 639) sorted by relevance

1234567891011>>

/external/iptables/extensions/
H A Dlibxt_socket.c39 socket_mt_save(const void *ip, const struct xt_entry_match *match) argument
48 socket_mt_print(const void *ip, const struct xt_entry_match *match, argument
52 socket_mt_save(ip, match);
H A Dlibxt_tcpmss.c37 tcpmss_print(const void *ip, const struct xt_entry_match *match, int numeric) argument
48 static void tcpmss_save(const void *ip, const struct xt_entry_match *match) argument
/external/liblzf/
H A Dlzf_d.c59 u8 const *ip = (const u8 *)in_data; local
61 u8 const *const in_end = ip + in_len;
66 unsigned int ctrl = *ip++;
79 if (ip + ctrl > in_end)
87 lzf_movsb (op, ip, ctrl);
91 case 32: *op++ = *ip++; case 31: *op++ = *ip++; case 30: *op++ = *ip++; case 29: *op++ = *ip++;
92 case 28: *op++ = *ip
[all...]
/external/libpng/contrib/tools/
H A Dchecksum-icc.c19 read_one_file(FILE *ip, const char *name) argument
28 int ch = getc(ip);
43 if (ferror(ip))
76 FILE *ip = fopen(argv[i], "rb"); local
78 if (ip == NULL || !read_one_file(ip, argv[i]))
86 (void)fclose(ip);
/external/libunwind/src/coredump/
H A D_UCD_find_proc_info.c30 get_unwind_info(struct UCD_info *ui, unw_addr_space_t as, unw_word_t ip) argument
38 if (ui->edi.ktab.format != -1 && ip >= ui->edi.ktab.start_ip && ip < ui->edi.ktab.end_ip)
43 && ip >= ui->edi.di_cache.start_ip && ip < ui->edi.di_cache.end_ip)
46 && ip >= ui->edi.di_arm.start_ip && ip < ui->edi.di_arm.end_ip)
49 && ip >= ui->edi.di_debug.start_ip && ip < ui->edi.di_debug.end_ip))
55 coredump_phdr_t *phdr = _UCD_get_elf_image(ui, ip);
104 _UCD_find_proc_info(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, int need_unwind_info, void *arg) argument
[all...]
H A D_UCD_get_proc_name.c33 elf_w (CD_get_proc_name) (struct UCD_info *ui, unw_addr_space_t as, unw_word_t ip, argument
40 coredump_phdr_t *cphdr = _UCD_get_elf_image(ui, ip);
52 ret = elf_w (get_proc_name_in_image) (as, &ui->edi.ei, segbase, mapoff, ip, buf, buf_len, offp);
58 _UCD_get_proc_name (unw_addr_space_t as, unw_word_t ip, argument
64 return _Uelf64_CD_get_proc_name (ui, as, ip, buf, buf_len, offp);
66 return _Uelf32_CD_get_proc_name (ui, as, ip, buf, buf_len, offp);
/external/libunwind/src/
H A Delfxx.h47 pid_t pid, unw_word_t ip,
55 unw_word_t ip,
103 elf_map_cached_image (struct map_info *map, unw_word_t ip) argument
H A Dos-hpux.c46 pid_t pid, unw_word_t ip,
58 /* First check to see if this ip is in our cache. */
59 map = map_find_from_addr(as->map_list, ip);
66 /* Check again if ip is in the map. */
67 map = map_find_from_addr(as->map_list, ip);
72 if (!dlmodinfo (ip, &lmd, sizeof (lmd), NULL, 0, 0))
94 if (elf_map_cached_image (map, ip) < 0)
45 tdep_get_elf_image(unw_addr_space_t as, struct elf_image *ei, pid_t pid, unw_word_t ip, unsigned long *segbase, unsigned long *mapoff, char **path) argument
/external/libunwind/src/hppa/
H A DGis_signal_frame.c33 unw_word_t w0, w1, w2, w3, ip; local
55 ip = c->dwarf.ip;
56 if (!ip)
58 if ((ret = (*a->access_mem) (as, ip, &w0, 0, arg)) < 0
59 || (ret = (*a->access_mem) (as, ip + 4, &w1, 0, arg)) < 0
60 || (ret = (*a->access_mem) (as, ip + 8, &w2, 0, arg)) < 0
61 || (ret = (*a->access_mem) (as, ip + 12, &w3, 0, arg)) < 0)
68 Debug (1, "(cursor=%p, ip=0x%08lx) -> %d\n", c, (unsigned) ip, re
[all...]
/external/libunwind/src/mi/
H A DGfind_dynamic_proc_info.c31 local_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, argument
40 local_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, argument
54 if (ip >= di->start_ip && ip < di->end_ip)
55 return unwi_extract_dynamic_proc_info (as, ip, pi, di, need_unwind_info,
65 remote_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, argument
74 remote_find_proc_info (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, argument
77 return unwi_dyn_remote_find_proc_info (as, ip, pi, need_unwind_info, arg);
83 unwi_find_dynamic_proc_info (unw_addr_space_t as, unw_word_t ip, argument
88 return local_find_proc_info (as, ip, p
[all...]
/external/libunwind/src/ptrace/
H A D_UPT_find_proc_info.c36 get_unwind_info (struct elf_dyn_info *edi, pid_t pid, unw_addr_space_t as, unw_word_t ip) argument
49 if (edi->ktab.format != -1 && ip >= edi->ktab.start_ip && ip < edi->ktab.end_ip)
54 && ip >= edi->di_cache.start_ip && ip < edi->di_cache.end_ip)
57 && ip >= edi->di_arm.start_ip && ip < edi->di_arm.end_ip)
60 && ip >= edi->di_debug.start_ip && ip < edi->di_debug.end_ip))
66 if (tdep_get_elf_image (as, &ei, pid, ip,
98 _UPT_find_proc_info(unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi, int need_unwind_info, void *arg) argument
[all...]
/external/libunwind/src/unwind/
H A DRaiseException.c38 unw_word_t ip; local
94 if (unw_get_reg (&context.cursor, UNW_REG_IP, &ip) < 0)
99 exception_object->private_2 = ip; /* save frame marker */
101 Debug (1, "found handler for IP=%lx; entering cleanup phase\n", (long) ip);
/external/libunwind/tests/
H A DGtest-nomalloc.c56 unw_word_t ip, sp; local
68 unw_get_reg (&cursor, UNW_REG_IP, &ip);
H A Dia64-test-sig.c42 unw_word_t ip; local
64 if (unw_get_reg (&cursor2, UNW_REG_IP, &ip) < 0)
68 ++ip;
69 if ((ip & 0x3) == 0x3)
70 ip += 13;
72 if (unw_set_reg (&cursor2, UNW_REG_IP, ip) < 0)
H A Dtest-init-remote.c51 unw_word_t ip, sp, off; local
62 unw_get_reg (&cursor, UNW_REG_IP, &ip);
73 printf ("%016lx %-32s (sp=%016lx)\n", (long) ip, buf, (long) sp);
78 unw_get_reg (&cursor, UNW_REG_IP, &ip);
79 printf ("FAILURE: unw_step() returned %d for ip=%lx\n",
80 ret, (long) ip);
H A Dtest-mem.c47 unw_word_t ip, sp; local
57 unw_get_reg (&cursor, UNW_REG_IP, &ip);
61 printf ("%016lx (sp=%016lx)\n", (long) ip, (long) sp);
66 unw_get_reg (&cursor, UNW_REG_IP, &ip);
67 panic ("FAILURE: unw_step() returned %d for ip=%lx\n",
68 ret, (long) ip);
/external/ltrace/sysdeps/linux-gnu/alpha/
H A Dtrace.c54 char *ip = get_instruction_pointer(proc) - 4; local
55 long x = ptrace(PTRACE_PEEKTEXT, proc->pid, ip, 0);
/external/ltrace/sysdeps/linux-gnu/ia64/
H A Dregs.c39 unsigned long ip = ptrace(PTRACE_PEEKUSER, proc->pid, PT_CR_IIP, 0); local
43 return (void *)(ip | slot);
/external/ltrace/sysdeps/linux-gnu/sparc/
H A Dtrace.c51 void *ip = get_instruction_pointer(proc); local
53 if (ip == (void *)-1)
55 insn = ptrace(PTRACE_PEEKTEXT, proc->pid, ip, 0);
/external/lzma/C/
H A DBra.c6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
12 ip += 8;
21 dest = ip + (UInt32)i + src;
23 dest = src - (ip + (UInt32)i);
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
39 ip += 4;
54 dest = ip + (UInt32)i + src;
56 dest = src - (ip + (UInt32)i);
69 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
86 dest = ip
99 SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_debug.c64 unsigned count, ip, it_count, ic_count, i, j; local
80 ip = rs->inst[i] & 0xf;
81 fprintf(stderr, "texture: ip %d to psf %d\n",
82 ip, (rs->inst[i] >> 5) & 0x7f);
84 tex_ptr = rs->ip[ip] & 0xffffff;
101 ip = (rs->inst[i] >> 12) & 0xf;
102 fprintf(stderr, "color: ip %d to psf %d\n",
103 ip, (rs->inst[i] >> 18) & 0x7f);
105 col_ptr = (rs->ip[i
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dhandle.c47 intptr_t ip = pointer_to_intptr(key); local
48 return (unsigned) (ip & 0xffffffff);
/external/oprofile/libpp/
H A Dpopulate.cpp59 populate_for_image(profile_container & samples, inverted_profile const & ip, argument
62 if (is_spu_profile(ip)) {
63 populate_for_spu_image(samples, ip, symbol_filter,
68 bool ok = ip.error == image_ok;
69 op_bfd abfd(ip.image, symbol_filter,
71 if (!ok && ip.error == image_ok)
72 ip.error = image_format_failure;
74 if (ip.error == image_format_failure)
75 report_image_error(ip, false, samples.extra_found_images);
80 for (size_t i = 0; i < ip
[all...]
/external/qemu/slirp/
H A Dip_output.c58 register struct ip *ip; local
60 register int hlen = sizeof(struct ip );
73 ip = mtod(m, struct ip *);
77 ip->ip_v = IPVERSION;
78 ip->ip_off &= IP_DF;
79 ip->ip_id = htons(ip_id++);
80 ip->ip_hl = hlen >> 2;
97 if ((u_int16_t)ip
[all...]
H A Dtcp_timer.c74 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)

Completed in 466 milliseconds

1234567891011>>