Searched defs:pc (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/arch-arm/bionic/
H A Dexidx_dynamic.c40 _Unwind_Ptr __gnu_Unwind_Find_exidx(_Unwind_Ptr pc, int *pcount) argument
42 return dl_unwind_find_exidx(pc, pcount);
/bionic/libc/bionic/
H A Dmalloc_debug_check_mapinfo.cpp93 /* Map a pc address to the name of the containing ELF file */
95 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def) { argument
97 if ((pc >= mi->start) && (pc < mi->end)) {
105 /* Find the containing map info for the pc */
107 const mapinfo *pc_to_mapinfo(mapinfo *mi, unsigned pc, unsigned *rel_pc) { argument
108 *rel_pc = pc;
110 if ((pc >= mi->start) && (pc < mi->end)) {
H A Dpthread_debug.c191 /* Find the containing map info for the pc */
192 static const mapinfo *pc_to_mapinfo(mapinfo *mi, unsigned pc, unsigned *rel_pc) argument
194 *rel_pc = pc;
196 if((pc >= mi->start) && (pc < mi->end)){
290 "#%02d pc %08lx %s (%s+0x%x)",
295 "#%02d pc %08lx %s",
/bionic/libdl/
H A Dlibdl.c28 void *dl_unwind_find_exidx(void *pc, int *pcount) { return 0; } argument
/bionic/libc/stdlib/
H A Dqsort.c86 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
114 pc = pd = (char *)a + (n - 1) * es;
116 while (pb <= pc && (r = cmp(pb, a)) <= 0) {
124 while (pb <= pc && (r = cmp(pc, a)) >= 0) {
127 swap(pc, pd);
130 pc -= es;
132 if (pb > pc)
134 swap(pb, pc);
137 pc
[all...]
/bionic/libthread_db/
H A Dlibthread_db.c82 void * pc; local
88 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)48 /* eip */, NULL);
89 /* FIXME - pc is a non-decremented breakpoint address, hence the
93 if (pc == ((int)bkpt_addr + 1)) {
103 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
105 if (pc == bkpt_addr) {
113 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(64*4) /* pc */, NULL);
114 if (pc
[all...]
/bionic/libc/upstream-netbsd/libc/regex/
H A Dengine.c977 sopno pc; local
984 for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
985 s = g->strip[pc];
988 assert(pc == stop-1);
1034 pc -= OPND(s) + 1;
1035 INIT(here, pc);
1051 assert(OP(g->strip[pc
[all...]
/bionic/linker/
H A Dlinker.cpp350 _Unwind_Ptr dl_unwind_find_exidx(_Unwind_Ptr pc, int *pcount) argument
353 unsigned addr = (unsigned)pc;
987 - The address of the place if the relocation is pc-relative
/bionic/libc/kernel/arch-mips/asm/pci/
H A Dbridge.h662 struct pci_controller pc; member in struct:bridge_controller

Completed in 4481 milliseconds