Searched refs:regs (Results 76 - 100 of 214) sorted by relevance

123456789

/external/kernel-headers/original/asm-x86/
H A Dirq_32.h44 unsigned int do_IRQ(struct pt_regs *regs);
H A Dvm86.h74 * normal regs, with special meaning for the segment descriptors..
107 struct vm86_regs regs; member in struct:vm86_struct
130 struct vm86_regs regs; member in struct:vm86plus_struct
152 * normal regs, with special meaning for the segment descriptors..
165 struct kernel_vm86_regs regs; member in struct:kernel_vm86_struct
181 struct pt_regs *regs32; /* here we save the pointer to the old regs */
/external/qemu/target-arm/
H A Dexec.h61 env->regs[15] = tb->pc;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/
H A Dsearchcvs.php28 while (preg_match($z["regex"], $q, $regs))
30 array_push($extra[$z["sqlpart"]], sprintf($z["sql"], $regs[1]));
35 $regs = array(); variable
37 if (preg_match("/^\s*\[?(\d+)\]?\s*$/", $_GET["q"], $regs))
39 $_GET["q"] = $regs[1];
40 $where = "WHERE `bugid` = $regs[1]";
43 else if (preg_match("/(\S)/", $q, $regs) || sizeof($extra["where"]) + sizeof($extra["having"]) > 0)
46 if (sizeof($regs) > 0)
250 preg_match_all("/\"([^\"]+)\"/", $str, $regs);
251 foreach ($regs[
258 $regs = null; variable
[all...]
/external/kernel-headers/original/linux/
H A Dbinfmts.h58 int (*load_binary)(struct linux_binprm *, struct pt_regs * regs);
60 int (*core_dump)(long signr, struct pt_regs * regs, struct file * file);
87 extern int do_coredump(long signr, int exit_code, struct pt_regs * regs);
H A Dperf_event.h620 struct pt_regs *regs);
888 struct pt_regs *regs);
892 struct pt_regs *regs);
914 perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip, int skip);
917 * Take a snapshot of the regs. Skip ip and frame pointer to
918 * the nth caller. We only need a few of the regs:
924 static inline void perf_fetch_caller_regs(struct pt_regs *regs, int skip) argument
928 memset(regs, 0, sizeof(*regs));
948 return perf_arch_fetch_caller_regs(regs, i
952 perf_sw_event(u32 event_id, u64 nr, int nmi, struct pt_regs *regs, u64 addr) argument
1042 perf_sw_event(u32 event_id, u64 nr, int nmi, struct pt_regs *regs, u64 addr) argument
[all...]
/external/oprofile/module/ia64/
H A Dop_pmu.c54 op_do_pmu_interrupt(u64 pmc0, struct pt_regs * regs) argument
61 op_do_profile(cpu, regs->cr_iip, 1, ctr);
70 op_raw_pmu_interrupt(int irq, void * arg, struct pt_regs * regs) argument
77 op_do_pmu_interrupt(pmc0, regs);
208 struct pt_regs * regs; local
210 regs = (struct pt_regs *)((unsigned long) current + IA64_STK_OFFSET);
211 regs--;
212 ia64_psr(regs)->pp = 0;
214 ia64_psr(regs)->up = 0;
289 struct pt_regs * regs; local
314 struct pt_regs * regs; local
355 struct pt_regs * regs; local
[all...]
/external/libvpx/vpx_ports/
H A Dx86.h58 int regs[4];\
59 __cpuid(regs,func); a=regs[0]; b=regs[1]; c=regs[2]; d=regs[3];\
/external/strace/
H A Dsyscall.c699 static struct pt_regs regs; variable in typeref:struct:pt_regs
704 static struct pt_regs regs; variable in typeref:struct:pt_regs
706 static struct pt_regs regs; variable in typeref:struct:pt_regs
733 struct reg regs; variable in typeref:struct:reg
880 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, &regs) < 0)
887 scno = regs.r8;
995 if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (void *)&regs) == -1)
1001 if (regs.ARM_ip == 0) {
1013 if (regs.ARM_cpsr & 0x20) {
1017 scno = regs
2760 struct pt_regs regs; local
2794 struct reg regs; local
[all...]
/external/qemu/target-i386/
H A Dkvm.c332 struct kvm_regs regs; local
336 ret = kvm_vcpu_ioctl(env, KVM_GET_REGS, &regs);
341 kvm_getput_reg(&regs.rax, &env->regs[R_EAX], set);
342 kvm_getput_reg(&regs.rbx, &env->regs[R_EBX], set);
343 kvm_getput_reg(&regs.rcx, &env->regs[R_ECX], set);
344 kvm_getput_reg(&regs.rdx, &env->regs[R_ED
[all...]
H A Dhax-all.c826 struct vcpu_state_t regs; local
828 memset(&regs, 0, sizeof(struct vcpu_state_t));
832 ret = hax_sync_vcpu_state(env, &regs, 0);
838 hax_getput_reg(&regs._rax, &env->regs[R_EAX], set);
839 hax_getput_reg(&regs._rbx, &env->regs[R_EBX], set);
840 hax_getput_reg(&regs._rcx, &env->regs[R_ECX], set);
841 hax_getput_reg(&regs
[all...]
/external/oprofile/module/x86/
H A Dop_syscalls.c115 asmlinkage static int my_sys_execve(struct pt_regs regs) argument
124 filename = getname((char *)regs.ebx);
129 ret = do_execve(filename, (char **)regs.ecx, (char **)regs.edx, &regs);
220 asmlinkage static int my_sys_fork(struct pt_regs regs) argument
228 ret = old_sys_fork(regs);
235 asmlinkage static int my_sys_vfork(struct pt_regs regs) argument
242 ret = old_sys_vfork(regs);
249 asmlinkage static int my_sys_clone(struct pt_regs regs) argument
[all...]
H A Dop_rtc.c30 static void do_rtc_interrupt(int irq, void * dev_id, struct pt_regs * regs) argument
36 int usermode = user_mode(regs);
47 op_do_profile(cpu, instruction_pointer(regs), IRQ_ENABLED(regs), 0);
H A Dop_x86_model.h40 struct pt_regs * const regs);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvInsn.java247 RegisterSpecList regs =
249 return withRegisters(regs);
263 RegisterSpecList regs = registers;
268 regs = regs.subset(compatRegs);
272 if (regs.size() == 0) return null;
274 return new HighRegisterPrefix(position, regs);
311 RegisterSpecList regs =
313 return withRegisters(regs);
H A DLocalList.java468 private RegisterSpecSet regs; field in class:LocalList.MakeState
482 regs = null;
518 newRegs.putAll(regs);
523 regs = newRegs;
545 RegisterSpec oldSpec = regs.get(i);
582 RegisterSpec existingLocal = regs.get(regNum);
589 RegisterSpec movedLocal = regs.findMatchingLocal(startedLocal);
628 regs.put(startedLocal);
656 RegisterSpec justBelow = regs.get(regNum - 1);
670 RegisterSpec justAbove = regs
[all...]
/external/linux-tools-perf/util/include/linux/added/
H A Dperf_event.h722 struct pt_regs *regs);
1027 struct pt_regs *regs);
1031 struct pt_regs *regs);
1051 static inline void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { } argument
1055 * Take a snapshot of the regs. Skip ip and frame pointer to
1056 * the nth caller. We only need a few of the regs:
1062 static inline void perf_fetch_caller_regs(struct pt_regs *regs) argument
1064 memset(regs, 0, sizeof(*regs));
1066 perf_arch_fetch_caller_regs(regs, CALLER_ADDR
1070 perf_sw_event(u32 event_id, u64 nr, int nmi, struct pt_regs *regs, u64 addr) argument
1179 perf_sw_event(u32 event_id, u64 nr, int nmi, struct pt_regs *regs, u64 addr) argument
[all...]
/external/quake/quake/src/WinQuake/
H A Ddos_v2.cpp35 regs_t regs; variable
112 regs.x.ss = regs.x.sp = 0;
113 rc = _go32_dpmi_simulate_int(vec, (_go32_dpmi_registers *) &regs);
114 return rc || (regs.x.flags & 1);
/external/valgrind/main/coregrind/m_debuginfo/
H A Dd3basics.c394 static Bool get_Dwarf_Reg( /*OUT*/Addr* a, Word regno, RegSummary* regs )
396 vg_assert(regs);
398 if (regno == 5/*EBP*/) { *a = regs->fp; return True; }
399 if (regno == 4/*ESP*/) { *a = regs->sp; return True; }
401 if (regno == 6/*RBP*/) { *a = regs->fp; return True; }
402 if (regno == 7/*RSP*/) { *a = regs->sp; return True; }
404 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
406 if (regno == 1/*SP*/) { *a = regs->sp; return True; }
408 if (regno == 13) { *a = regs->sp; return True; }
409 if (regno == 11) { *a = regs
462 evaluate_Dwarf3_Expr( UChar* expr, UWord exprszB, GExpr* fbGX, RegSummary* regs, const DebugInfo* di, Bool push_initial_zero ) argument
930 evaluate_GX( GExpr* gx, GExpr* fbGX, RegSummary* regs, const DebugInfo* di ) argument
[all...]
/external/qemu/hw/
H A Ddma.c59 struct dma_regs regs[4]; member in struct:dma_cont
91 d->regs[ichan].page = data;
104 d->regs[ichan].pageh = data;
117 return d->regs[ichan].page;
130 return d->regs[ichan].pageh;
137 r = d->regs + ichan;
160 r = d->regs + ichan;
182 r = d->regs + ichan;
241 d->regs[ichan].mode = data;
304 return dma_controllers[nchan > 3].regs[ncha
[all...]
/external/valgrind/main/coregrind/
H A Dvgdb.c698 /* Get the registers from pid into regs.
699 regs_bsz value gives the length of *regs.
702 Bool getregs (int pid, void *regs, long regs_bsz) argument
710 res = ptrace (PTRACE_GETREGS, pid, NULL, regs);
748 char *pregs = (char *) regs;
767 /* Set the registers of pid to regs.
768 regs_bsz value gives the length of *regs.
771 Bool setregs (int pid, void *regs, long regs_bsz) argument
783 res = ptrace (PTRACE_SETREGS, pid, NULL, regs);
793 char *pregs = (char *) regs;
[all...]
/external/kernel-headers/original/asm-arm/
H A Dsmp.h41 asmlinkage void do_IPI(struct pt_regs *regs);
H A Duser.h55 struct pt_regs regs; /* Where the registers are actually stored */ member in struct:user
/external/kernel-headers/original/asm-mips/dec/
H A Dkn02xa.h80 extern int dec_kn02xa_be_handler(struct pt_regs *regs, int is_fixup);
/external/linux-tools-perf/arch/arm/util/
H A Ddwarf-regs.c14 #include <dwarf-regs.h>
17 #include "util/include/dwarf-regs.h"

Completed in 687 milliseconds

123456789