Searched refs:pc (Results 1 - 18 of 18) sorted by relevance

/system/core/libacc/tests/data/
H A Dpointers.c4 int* pc = (int*) 0; local
10 printf("Pointer comparison to zero: %d %d %d\n", pa == 0, pb == 0, pc == 0);
11 printf("Pointer comparison: %d %d %d %d %d\n", pa < pb, pa == pb, pa > pb, ! pb, ! pc);
/system/core/debuggerd/
H A Dutility.c57 /* Map a pc address to the name of the containing ELF file */
58 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def) argument
61 if((pc >= mi->start) && (pc < mi->end)){
69 /* Find the containing map info for the pc */
70 const mapinfo *pc_to_mapinfo(mapinfo *mi, unsigned pc, unsigned *rel_pc) argument
73 if((pc >= mi->start) && (pc < mi->end)){
76 *rel_pc = pc - mi->start;
H A Dutility.h47 /* Find the containing map for the pc */
48 const mapinfo *pc_to_mapinfo (mapinfo *mi, unsigned pc, unsigned *rel_pc);
50 /* Map a pc address to the name of the containing ELF file */
51 const char *map_to_name(mapinfo *mi, unsigned pc, const char* def);
H A Dunwind-arm.c383 /* Print out the current call level, pc, and module name in the crash log */
391 _uw pc; local
400 pc = vrs->core.r[R_PC];
404 pc &= ~1;
406 // For deeper framers, rollback pc by one instruction
408 pc = vrs->core.r[R_PC];
427 if (pc & 1) {
429 pc = (pc & ~1);
430 prev_word = get_remote_word(pid, (void *) pc
[all...]
H A Ddebuggerd.c133 unsigned int sp, pc, p, end, data; local
141 pc = r.ARM_pc;
143 _LOG(tfd, only_in_tombstone, "\ncode around pc:\n");
145 end = p = pc & ~3;
166 if ((unsigned) r.ARM_lr != pc) {
261 _LOG(tfd, !at_fault, " #%02d pc %08x %s\n", 0, r.ARM_pc,
286 " ip %08x sp %08x lr %08x pc %08x cpsr %08x\n",
478 * level is seen we make sure at lease pc and lr are dumped.
/system/core/include/private/
H A Dandroid_filesystem_config.h206 struct fs_path_config *pc; local
209 pc = dir ? android_dirs : android_files;
211 for(; pc->prefix; pc++){
212 int len = strlen(pc->prefix);
215 if(!strncmp(pc->prefix, path, len)) break;
219 if (pc->prefix[len -1] == '*') {
220 if(!strncmp(pc->prefix, path, len - 1)) break;
222 if(!strncmp(pc->prefix, path, len)) break;
225 *uid = pc
[all...]
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp60 uint32_t* ARMAssembler::pc() const function in class:android::ARMAssembler
86 size_t count = pc()-base();
144 uint32_t* pc = mPC; local
147 mPC = pc;
153 uint32_t* pc = mPC; local
156 mPC = pc;
171 int32_t offset = int32_t(target_pc - (bt.pc+2));
172 *bt.pc |= offset & 0xFFFFFF;
175 mAssembly->resize( int(pc()-base())*4 );
180 LOGI(format, name, int(pc()
271 B(int cc, uint32_t* pc) argument
277 BL(int cc, uint32_t* pc) argument
[all...]
H A DARMAssembler.h43 uint32_t* pc() const;
76 virtual void B(int cc, uint32_t* pc);
77 virtual void BL(int cc, uint32_t* pc);
142 inline branch_target_t() : label(0), pc(0) { }
144 : label(l), pc(p) { }
146 uint32_t* pc; member in struct:android::ARMAssembler::branch_target_t
H A DARMAssemblerProxy.h66 virtual void B(int cc, uint32_t* pc);
67 virtual void BL(int cc, uint32_t* pc);
H A DARMAssemblerProxy.cpp98 void ARMAssemblerProxy::B(int cc, uint32_t* pc) { argument
99 mTarget->B(cc, pc);
101 void ARMAssemblerProxy::BL(int cc, uint32_t* pc) { argument
102 mTarget->BL(cc, pc);
H A DARMAssemblerInterface.h133 virtual void B(int cc, uint32_t* pc) = 0;
134 virtual void BL(int cc, uint32_t* pc) = 0;
H A DGGLAssembler.h174 uint32_t* pc() const { return 0; } // XXX function in class:android::GGLAssembler
/system/core/nexus/
H A DCommandListener.cpp196 android::List<char *> *pc; local
202 if (!(pc = NetworkManager::Instance()->getPropMngr()->createPropertyList(prefix))) {
210 for (it = pc->begin(); it != pc->end(); ++it) {
231 delete pc;
/system/core/libpixelflinger/
H A Dcol32cb16blend.S75 pop {r4-r10, pc} // return
H A Drotate90CW_4x4_16v6.S62 ldmfd sp!, {r4,r5, r6,r7, r8,r9, r10,r11, pc}
H A Dcol32cb16blend_neon.S150 pop {r4-r11, pc} // return
/system/core/sh/
H A Dparser.c1401 int pc; local
1412 switch (pc = pgetc()) {
1417 if ((pc = pgetc()) == '\n') {
1431 if (pc != '\\' && pc != '`' && pc != '$'
1432 && (!ISDBLQUOTE() || pc != '"'))
1449 STPUTC(pc, pout);
/system/core/libacc/
H A Dacc.cpp459 /* Load the pc-relative address of a forward-referenced variable to R0.
1006 int pc = getPC(); local
1011 return pc;
1108 int pc = getPC(); local
1110 return pc;
1141 int pc = getPC(); local
1143 return pc;
1765 int pc = getPC(); local
1768 offset = (pc - ea - 8) >> 2;
1870 int pc local
1968 int pc = getPC(); local
2029 int pc = getPC(); local
2047 int pc = getPC(); local
3025 int pc = getPC(); local
3036 int pc = getPC(); local
[all...]

Completed in 432 milliseconds