Searched defs:pc (Results 51 - 75 of 416) sorted by relevance

1234567891011>>

/external/apache-harmony/luni/src/test/resources/net.resources/HTTP/html/testres231/UCL/
H A DUCL.jar ... .net.SocketPermission sp java.security.PermissionCollection pc
/external/capstone/suite/MC/ARM/
H A Darm-arithmetic-aliases.s.cs50 0x7b,0x00,0x8f,0xe2 = add r0, pc, #123 external variable declarations
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_mapping_libcdep.cc42 bool NeedsUpdate(uptr pc) { argument
44 if (last_pid == new_pid && pc && pc >= last_range_start &&
45 pc < last_range_end)
H A Dsanitizer_stacktrace.cc20 uptr StackTrace::GetNextInstructionPc(uptr pc) { argument
22 return pc + 8;
24 return pc + 4;
26 return pc + 1;
67 void BufferedStackTrace::FastUnwindStack(uptr pc, uptr bp, uptr stack_top, argument
71 trace_buffer[0] = pc;
101 if (pc1 != pc) {
121 uptr BufferedStackTrace::LocatePcInTrace(uptr pc) { argument
126 if (MatchPc(pc, trace[i], kPcThreshold))
H A Dsanitizer_stacktrace.h66 static inline uptr GetPreviousInstructionPc(uptr pc);
67 static uptr GetNextInstructionPc(uptr pc);
68 typedef bool (*SymbolizeCallback)(const void *pc, char *out_buffer,
74 uptr StackTrace::GetPreviousInstructionPc(uptr pc) { argument
77 pc = pc & (~1);
81 return pc - 4;
83 return pc - 8;
85 return pc - 1;
97 void Unwind(u32 max_depth, uptr pc, upt
[all...]
/external/curl/src/
H A Dtool_operhlp.c132 const char *pc, *pc2; local
137 pc = strstr(url, "://");
138 if(pc)
139 pc += 3;
141 pc = url;
143 pc2 = strrchr(pc, '\\');
144 pc = strrchr(pc, '/');
145 if(pc2 && (!pc || pc < pc
[all...]
/external/elfutils/libdw/
H A Ddwarf_entry_breakpoints.c39 add_bkpt (Dwarf_Addr pc, Dwarf_Addr **bkpts, int *pnbkpts) argument
49 newlist[*pnbkpts - 1] = pc;
58 Dwarf_Addr pc; local
59 return INTUSE(dwarf_entrypc) (die, &pc) < 0 ? -1 : add_bkpt (pc, bkpts, pnbkpts);
H A Ddwarf_getscopes.c41 Dwarf_Addr pc; member in struct:args
61 int result = INTUSE(dwarf_haspc) (&die->die, a->pc);
184 dwarf_getscopes (Dwarf_Die *cudie, Dwarf_Addr pc, Dwarf_Die **scopes) argument
190 struct args a = { .pc = pc };
/external/elfutils/tests/
H A Dbacktrace-dwarf.c88 Dwarf_Addr pc; local
90 if (! dwfl_frame_pc (state, &pc, &isactivation))
95 Dwarf_Addr pc_adjusted = pc - (isactivation ? 0 : 1);
105 printf ("%#" PRIx64 "\t%s\n", (uint64_t) pc, symname);
/external/google-breakpad/src/google_breakpad/common/
H A Dminidump_cpu_sparc.h122 uint64_t pc; /* Program Counter register (PC) */ member in struct:__anon7477
/external/javassist/src/main/javassist/bytecode/
H A DLineNumberAttribute.java74 * @param pc the index into the code array.
76 public int toLineNumber(int pc) { argument
80 if (pc < startPc(i))
176 int pc = ByteArray.readU16bit(info, pos);
177 if (pc > where || (exclusive && pc == where))
178 ByteArray.write16bit(pc + gapLength, info, pos);
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_context.h56 static StackFrame FromProgramCounter(const void* pc) { argument
57 return {Type::PROGRAM_COUNTER, pc};
/external/libcups/cups/
H A Dtestpwg.c27 static int test_pagesize(_ppd_cache_t *pc, ppd_file_t *ppd,
29 static int test_ppd_cache(_ppd_cache_t *pc, ppd_file_t *ppd);
43 _ppd_cache_t *pc; /* PPD cache and PWG mapping data */ local
78 if ((pc = _ppdCacheCreateWithPPD(ppd)) == NULL)
86 status += test_ppd_cache(pc, ppd);
118 if ((pagesize = _ppdCacheGetPageSize(pc, job, NULL, NULL)) == NULL)
145 fputs("_ppdCacheDestroy(pc): ", stdout);
146 _ppdCacheDestroy(pc);
351 test_pagesize(_ppd_cache_t *pc, /* I - PWG mapping data */ argument
365 if ((pagesize = _ppdCacheGetPageSize(pc, NUL
409 test_ppd_cache(_ppd_cache_t *pc, ppd_file_t *ppd) argument
[all...]
/external/libunwind_llvm/src/
H A DUnwind_AppleExtras.cpp149 bool checkKeyMgrRegisteredFDEs(uintptr_t pc, void *&fde) { argument
164 // Check if this FDE is for a function that includes the pc
165 if ((fdeInfo.pcStart <= pc) && (pc < fdeInfo.pcEnd)) {
177 (void)pc;
/external/mesa3d/src/gallium/auxiliary/indices/
H A Du_primconvert.c66 struct primconvert_context *pc = CALLOC_STRUCT(primconvert_context); local
67 if (!pc)
69 pc->pipe = pipe;
70 pc->primtypes_mask = primtypes_mask;
71 return pc;
75 util_primconvert_destroy(struct primconvert_context *pc) argument
77 if (pc->upload)
78 u_upload_destroy(pc->upload);
79 util_primconvert_save_index_buffer(pc, NULL);
80 FREE(pc);
84 util_primconvert_save_index_buffer(struct primconvert_context *pc, const struct pipe_index_buffer *ib) argument
99 util_primconvert_save_rasterizer_state(struct primconvert_context *pc, const struct pipe_rasterizer_state *rast) argument
111 util_primconvert_draw_vbo(struct primconvert_context *pc, const struct pipe_draw_info *info) argument
[all...]
/external/mesa3d/src/glx/
H A Drenderpix.c72 * \param pc Pointer to end of the command header
84 GLubyte * pc, GLubyte * modes)
108 __glXSendLargeCommand(gc, gc->pc, pc - gc->pc, buf, compsize);
148 pc += hdrlen;
151 row, pc, pixelHeaderPC);
152 pc += image1len;
156 column, pc, NULL);
157 pc
81 __glXSendLargeImage(struct glx_context * gc, GLint compsize, GLint dim, GLint width, GLint height, GLint depth, GLenum format, GLenum type, const GLvoid * src, GLubyte * pc, GLubyte * modes) argument
[all...]
H A Dsinglepix.c134 GLubyte const *pc = local
140 (void) memcpy((void *) (pc + 0), (void *) (&target), 4);
141 (void) memcpy((void *) (pc + 4), (void *) (&format), 4);
142 (void) memcpy((void *) (pc + 8), (void *) (&type), 4);
143 *(int8_t *) (pc + 12) = state->storePack.swapEndian;
/external/oj-libjdwp/src/share/javavm/export/
H A Djvmticmlr.h42 * for every pc address what are the methods on the invocation stack.
84 * stack at a specific pc address of a compiled method. Each element in
88 void* pc; /* the pc address for this compiled method */ member in struct:_PCStackInfo
95 * Record that contains inlining information for each pc address of
100 jint numpcs; /* number of pc descriptors in this nmethod */
101 PCStackInfo* pcinfo; /* array of numpcs pc descriptors */
/external/syslinux/com32/lua/src/
H A Dlfunc.c150 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) { argument
152 for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
153 if (pc < f->locvars[i].endpc) { /* is variable active? */
/external/v8/src/debug/arm/
H A Ddebug-arm.cc38 void DebugCodegen::ClearDebugBreakSlot(Isolate* isolate, Address pc) { argument
39 CodePatcher patcher(isolate, pc, Assembler::kDebugBreakSlotInstructions);
44 void DebugCodegen::PatchDebugBreakSlot(Isolate* isolate, Address pc, argument
47 CodePatcher patcher(isolate, pc, Assembler::kDebugBreakSlotInstructions);
54 // ldr ip, [pc, #0]
60 patcher.masm()->ldr(ip, MemOperand(v8::internal::pc, 0));
67 bool DebugCodegen::DebugBreakSlotIsPatched(Address pc) { argument
68 Instr current_instr = Assembler::instr_at(pc);
/external/v8/src/debug/arm64/
H A Ddebug-arm64.cc39 void DebugCodegen::ClearDebugBreakSlot(Isolate* isolate, Address pc) { argument
40 PatchingAssembler patcher(isolate, reinterpret_cast<Instruction*>(pc),
46 void DebugCodegen::PatchDebugBreakSlot(Isolate* isolate, Address pc, argument
49 PatchingAssembler patcher(isolate, reinterpret_cast<Instruction*>(pc),
59 // ldr ip0, [pc, #(2 * kInstructionSize)]
79 bool DebugCodegen::DebugBreakSlotIsPatched(Address pc) { argument
80 Instruction* current_instr = reinterpret_cast<Instruction*>(pc);
/external/v8/src/runtime/
H A Druntime-wasm.cc27 Address pc = local
29 Code* code = isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
/external/valgrind/coregrind/m_gdbserver/
H A Dvalgrind-low-arm.c55 { "pc", 480, 32 },
100 static const char *expedite_regs[] = { "r11", "sp", "pc", 0 };
106 unsigned long pc; local
108 collect_register_by_name ("pc", &pc);
110 dlog(1, "stop pc is %p\n", (void *) pc);
111 return pc;
118 supply_register_by_name ("pc", &newpc, &mod);
120 dlog(1, "set pc t
125 thumb_pc(Addr pc) argument
[all...]
H A Dvalgrind-low-arm64.c72 { "pc", 2048, 64 },
110 static const char *expedite_regs[] = { "x29", "sp", "pc", 0 };
117 unsigned long pc; local
119 collect_register_by_name ("pc", &pc);
121 dlog(1, "stop pc is %p\n", (void *) pc);
122 return pc;
129 supply_register_by_name ("pc", &newpc, &mod);
131 dlog(1, "set pc t
[all...]
H A Dvalgrind-low-ppc32.c106 { "pc", 3072, 32 },
150 static const char *expedite_regs[] = { "r1", "pc", 0 };
156 unsigned long pc; local
158 collect_register_by_name ("pc", &pc);
160 dlog(1, "stop pc is %p\n", (void *) pc);
161 return pc;
168 supply_register_by_name ("pc", &newpc, &mod);
170 dlog(1, "set pc t
[all...]

Completed in 1261 milliseconds

1234567891011>>