Searched refs:pc (Results 726 - 750 of 1052) sorted by relevance

<<21222324252627282930>>

/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h103 Guesses if pc is a thumb pc.
104 In this case, returns pc with the thumb bit set (bit0)
105 else just returns pc.
112 If debug info not found for this pc, assumes arm */
113 extern Addr thumb_pc (Addr pc);
/external/chromium_org/v8/src/ia32/
H A Ddisasm-ia32.cc1758 for (byte* pc = begin; pc < end;) {
1761 byte* prev_pc = pc;
1762 pc += d.InstructionDecode(buffer, pc);
1766 for (byte* bp = prev_pc; bp < pc; bp++) {
1769 for (int i = 6 - (pc - prev_pc); i >= 0; i--) {
/external/chromium_org/v8/src/x87/
H A Ddisasm-x87.cc1775 for (byte* pc = begin; pc < end;) {
1778 byte* prev_pc = pc;
1779 pc += d.InstructionDecode(buffer, pc);
1783 for (byte* bp = prev_pc; bp < pc; bp++) {
1786 for (int i = 6 - (pc - prev_pc); i >= 0; i--) {
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp52 eKASLRScanNearPC, // Scan backwards from the current $pc looking for kernel; checking at 96 locations total
61 { eKASLRScanNearPC, "fast-scan", "Scan near the pc value on attach to find the Darwin kernel's load address."},
277 // from the current pc value looking for the kernel's Mach header in memory.
292 addr_t pc = thread->GetRegisterContext ()->GetPC(LLDB_INVALID_ADDRESS);
294 if (pc == LLDB_INVALID_ADDRESS)
308 if (pc < kernel_range_low)
314 // Round the current pc down to the nearest one megabyte boundary - the place where we will start searching.
315 addr_t addr = pc & ~0xfffff;
318 while (i < 32 && pc >= kernel_range_low)
/external/llvm/test/MC/ARM/
H A Dv8_IT_manual.s13 addge r1, pc
16 addge pc, r2
97 movge r4, pc
100 movge pc, r5
125 cmpge r3, pc
128 cmpge pc, r4
307 bxge pc
315 blxge pc
350 ldrge r0, [pc, #8]
354 ldrge r10, [pc, #
[all...]
/external/llvm/lib/Support/
H A DAPFloat.cpp478 unsigned int pc;
480 pc = partsCount[n];
483 if (pc == 0) {
484 pc = partsCount[n - 1];
485 APInt::tcFullMultiply(pow5, pow5 - pc, pow5 - pc, pc, pc);
486 pc *= 2;
487 if (pow5[pc
[all...]
/external/opencv/cvaux/src/
H A Dcvepilines.cpp673 CvPoint2D64d pa,pb,pc,pd; local
684 pc.x = 0;
685 pc.y = imageSize.height-1;
695 *point2 = pc;
705 *point2 = pc;
718 *point2 = pc;
745 *point1 = pc;
751 *point2 = pc;
2283 CvPoint2D32f pa,pb,pc,pd; local
2294 pc
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeaux.c1033 void sqlite3VdbePrintOp(FILE *pOut, int pc, Op *pOp){ argument
1039 fprintf(pOut, zFormat1, pc,
1158 ** encountered, but p->pc will eventually catch up to nRow.
1180 i = p->pc++;
1510 p->pc = -1;
1572 return pFrame->pc;
1932 if( p->magic==VDBE_MAGIC_RUN && p->pc>=0 ){
2092 if( p->pc>=0 ){
2240 if( p->pc>=0 ){
2300 if( p->pc>
[all...]
/external/chromium_org/v8/src/
H A Dgdb-jit.cc903 void SetPosition(intptr_t pc, int pos, bool is_statement) { argument
904 AddPCInfo(PCInfo(pc, pos, is_statement));
908 PCInfo(intptr_t pc, int pos, bool is_statement) argument
909 : pc_(pc), pos_(pos), is_statement_(is_statement) {}
1467 intptr_t pc = 0; local
1477 DCHECK(info->pc_ >= pc);
1487 // the last pc address in the function as a statement (e.g. "}"), so that
1502 uintptr_t pc_diff = info->pc_ - pc;
1525 // Increment the pc and line operands.
1526 pc
[all...]
H A Dcpu-profiler.cc50 regs.pc = frame->pc();
/external/chromium_org/v8/src/mips/
H A Dsimulator-mips.cc309 // pc.
797 PrintF(" from pc (alias 'di')\n");
979 // The ra and pc are initialized to a known bad value that will cause an
981 registers_[pc] = bad_ra;
1085 if (reg == pc) {
1152 return registers_[reg] + ((reg == pc) ? Instruction::kPCReadOffset : 0);
1310 registers_[pc] = value;
1315 return ((registers_[pc] == bad_ra) || (registers_[pc] == end_sim_pc));
1321 return registers_[pc];
[all...]
H A Dconstants-mips.h132 // Number of registers with HI, LO, and pc.
913 // Use the At(pc) function to create references to Instruction.
914 static Instruction* At(byte* pc) {
915 return reinterpret_cast<Instruction*>(pc);
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Dsixtappredict4x4_neon.asm264 pop {r4, pc}
351 pop {r4, pc}
416 pop {r4, pc}
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.cpp1016 dx_PixelConstants pc = {0}; local
1023 pc.viewCoords[0] = actualViewport.width * 0.5f;
1024 pc.viewCoords[1] = actualViewport.height * 0.5f;
1025 pc.viewCoords[2] = actualViewport.x + (actualViewport.width * 0.5f);
1026 pc.viewCoords[3] = actualViewport.y + (actualViewport.height * 0.5f);
1028 pc.depthFront[0] = (actualZFar - actualZNear) * 0.5f;
1029 pc.depthFront[1] = (actualZNear + actualZFar) * 0.5f;
1030 pc.depthFront[2] = depthFront;
1036 pc.depthRange[0] = actualZNear;
1037 pc
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccapitst.c3035 char *pc; local
3065 pc=strstr(swappedName, UCNV_SWAP_LFNL_OPTION_STRING);
3066 if(swap != (pc!=NULL)) {
3073 pc=normal;
3074 ucnv_fromUnicode(cnv, &pc, normal+LENGTHOF(normal), &pcu, text+LENGTHOF(text), NULL, TRUE, &errorCode);
3075 normalLength=(int32_t)(pc-normal);
3078 pc=swapped;
3079 ucnv_fromUnicode(swapCnv, &pc, swapped+LENGTHOF(swapped), &pcu, text+LENGTHOF(text), NULL, TRUE, &errorCode);
3080 swappedLength=(int32_t)(pc-swapped);
3110 pc
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dccapitst.c3039 char *pc; local
3069 pc=strstr(swappedName, UCNV_SWAP_LFNL_OPTION_STRING);
3070 if(swap != (pc!=NULL)) {
3077 pc=normal;
3078 ucnv_fromUnicode(cnv, &pc, normal+LENGTHOF(normal), &pcu, text+LENGTHOF(text), NULL, TRUE, &errorCode);
3079 normalLength=(int32_t)(pc-normal);
3082 pc=swapped;
3083 ucnv_fromUnicode(swapCnv, &pc, swapped+LENGTHOF(swapped), &pcu, text+LENGTHOF(text), NULL, TRUE, &errorCode);
3084 swappedLength=(int32_t)(pc-swapped);
3114 pc
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper_unittest.cc402 net::ParsedCookie pc("a=1");
404 new net::CanonicalCookie(url_google, pc));
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Ddequant_idct_v6.asm182 ldmia sp!, {r4 - r11, pc}
H A Diwalsh_v6.asm130 ldmia sp!, {r4 - r12, pc}
H A Dvp8_variance8x8_armv6.asm97 pop {r4-r10, pc}
/external/chromium_org/third_party/libxml/src/
H A Dlibxml2.spec115 %{_libdir}/pkgconfig/libxml-2.0.pc
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Devergreen_compute.c453 uint32_t pc, const void *input)
457 COMPUTE_DBG("PC: %i\n", pc);
450 evergreen_launch_grid( struct pipe_context *ctx_, const uint *block_layout, const uint *grid_layout, uint32_t pc, const void *input) argument
/external/chromium_org/v8/src/mips64/
H A Dconstants-mips64.h94 // Number of registers with HI, LO, and pc.
927 // Use the At(pc) function to create references to Instruction.
928 static Instruction* At(byte* pc) {
929 return reinterpret_cast<Instruction*>(pc);
/external/chromium_org/v8/test/cctest/
H A Dtest-disasm-mips64.cc43 bool DisassembleAndCompare(byte* pc, const char* compare_string) { argument
48 disasm.InstructionDecode(disasm_buffer, pc);
/external/chromium_org/v8/tools/profviz/
H A Dcomposer.js297 pc, timer, unused_x, unused_y, vmstate, stack) {
300 var entry = code_map.findEntry(pc);

Completed in 2267 milliseconds

<<21222324252627282930>>