Searched defs:regs (Results 1 - 20 of 20) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/commands/i386/pc/
H A Dlsapm.c30 struct grub_bios_int_registers regs; local
33 regs.eax = 0x5300;
34 regs.ebx = 0;
35 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
36 grub_bios_interrupt (0x15, &regs);
38 if (regs.flags & GRUB_CPU_INT_FLAGS_CARRY)
40 info->version = regs.eax & 0xffff;
41 info->flags = regs.ecx & 0xffff;
44 regs.eax = 0x5304;
45 regs
[all...]
H A Dhalt.c50 struct grub_bios_int_registers regs; local
58 regs.eax = 0x5300;
59 regs.ebx = 0;
60 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
61 grub_bios_interrupt (0x15, &regs);
63 if (regs.flags & GRUB_CPU_INT_FLAGS_CARRY)
67 regs.eax = 0x5304;
68 regs.ebx = 0;
69 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
70 grub_bios_interrupt (0x15, &regs);
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/i386/pc/
H A Dmmap.c48 struct grub_bios_int_registers regs; local
50 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
51 grub_bios_interrupt (0x12, &regs);
52 return regs.eax & 0xffff;
64 struct grub_bios_int_registers regs; local
66 regs.eax = 0x8800;
67 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
68 grub_bios_interrupt (0x15, &regs);
69 return regs.eax & 0xffff;
82 struct grub_bios_int_registers regs; local
110 struct grub_bios_int_registers regs; local
[all...]
H A Dinit.c57 struct grub_bios_int_registers regs; local
59 regs.eax = 0;
60 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
61 grub_bios_interrupt (0x1a, &regs);
63 return (regs.ecx << 16) | (regs.edx & 0xffff);
/osnet-11/usr/src/grub/grub2/grub-core/term/i386/pc/
H A Dconsole.c28 struct grub_bios_int_registers regs; local
30 regs.eax = ch | 0x0900;
31 regs.ebx = grub_console_cur_color & 0xff;
32 regs.ecx = n;
33 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
34 grub_bios_interrupt (0x10, &regs);
51 struct grub_bios_int_registers regs; local
53 regs.eax = 0x0300;
54 regs.ebx = 0;
55 regs
72 struct grub_bios_int_registers regs; local
98 struct grub_bios_int_registers regs; local
168 struct grub_bios_int_registers regs; local
211 struct grub_bios_int_registers regs; local
[all...]
/osnet-11/usr/src/lib/libproc/common/
H A DPsyscall.c86 prgregset_t regs; member in struct:__anon2365
115 (void) memcpy(&cmd.regs, &P->status.pr_lwp.pr_reg[0],
H A DPservice.c119 ps_lgetregs(struct ps_prochandle *P, lwpid_t lwpid, prgregset_t regs) argument
124 if (Plwp_getregs(P, lwpid, regs) == 0)
131 ps_lsetregs(struct ps_prochandle *P, lwpid_t lwpid, const prgregset_t regs) argument
136 if (Plwp_setregs(P, lwpid, regs) == 0)
143 ps_lgetfpregs(struct ps_prochandle *P, lwpid_t lwpid, prfpregset_t *regs) argument
148 if (Plwp_getfpregs(P, lwpid, regs) == 0)
155 ps_lsetfpregs(struct ps_prochandle *P, lwpid_t lwpid, const prfpregset_t *regs) argument
160 if (Plwp_setfpregs(P, lwpid, regs) == 0)
346 prgregset_t regs; local
360 if ((error = ps_lgetregs(P, lwpid, regs)) !
[all...]
/osnet-11/usr/src/lib/libproc/amd64/
H A DPisadep.c234 Pstack_iter32(struct ps_prochandle *P, const prgregset_t regs, argument
272 (void) memcpy(gregs, regs, sizeof (gregs));
274 fp = regs[R_FP];
275 pc = regs[R_PC];
371 Pstack_iter(struct ps_prochandle *P, const prgregset_t regs, argument
410 return (Pstack_iter32(P, regs, func, arg));
413 (void) memcpy(gregs, regs, sizeof (gregs));
/osnet-11/usr/src/lib/libproc/i386/
H A DPisadep.c173 Pstack_iter(struct ps_prochandle *P, const prgregset_t regs, argument
210 (void) memcpy(gregs, regs, sizeof (gregs));
212 fp = regs[R_FP];
213 pc = regs[R_PC];
/osnet-11/usr/src/lib/libcurses/screen/
H A Dtparm.c268 short *regs = cur_term->_regs; local
549 regs[*cp++ - 'A'] =
568 push(&stk, regs[*cp++ - 'A']);
/osnet-11/usr/src/grub/grub2/grub-core/disk/i386/pc/
H A Dbiosdisk.c39 struct grub_bios_int_registers regs; local
43 regs.eax = 0;
44 regs.edx = 0;
45 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
47 grub_bios_interrupt (0x13, &regs);
51 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT | GRUB_CPU_INT_FLAGS_CARRY;
52 regs.edx = drive;
55 regs.eax = 0x1500;
56 grub_bios_interrupt (0x13, &regs);
57 if (regs
77 struct grub_bios_int_registers regs; local
103 struct grub_bios_int_registers regs; local
149 struct grub_bios_int_registers regs; local
180 struct grub_bios_int_registers regs; local
209 struct grub_bios_int_registers regs; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/video/i386/pc/
H A Dvga.c54 struct grub_bios_int_registers regs; local
57 regs.eax = 0x0f00;
58 regs.ebx = 0;
59 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
60 grub_bios_interrupt (0x10, &regs);
62 ret = regs.eax & 0xff;
63 regs.eax = mode;
64 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
65 grub_bios_interrupt (0x10, &regs);
H A Dvbe.c232 struct grub_bios_int_registers regs; local
233 regs.eax = 0x4f09;
234 regs.ebx = 0;
235 regs.ecx = color_count;
236 regs.edx = start_index;
237 regs.es = (((grub_addr_t) palette_data) & 0xffff0000) >> 4;
238 regs.edi = ((grub_addr_t) palette_data) & 0xffff;
239 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
240 grub_bios_interrupt (0x10, &regs);
241 return regs
248 struct grub_bios_int_registers regs; local
263 struct grub_bios_int_registers regs; local
279 struct grub_bios_int_registers regs; local
296 struct grub_bios_int_registers regs; local
309 struct grub_bios_int_registers regs; local
326 struct grub_bios_int_registers regs; local
342 struct grub_bios_int_registers regs; local
358 struct grub_bios_int_registers regs; local
373 struct grub_bios_int_registers regs; local
389 struct grub_bios_int_registers regs; local
414 struct grub_bios_int_registers regs; local
432 struct grub_bios_int_registers regs; local
456 struct grub_bios_int_registers regs; local
471 struct grub_bios_int_registers regs; local
489 struct grub_bios_int_registers regs; local
[all...]
/osnet-11/usr/src/lib/libproc/sparc/
H A DPisadep.c253 Pstack_iter(struct ps_prochandle *P, const prgregset_t regs, argument
274 (void) memcpy(gregs, regs, sizeof (gregs));
/osnet-11/usr/src/lib/libproc/sparcv9/
H A DPisadep.c335 Pstack_iter(struct ps_prochandle *P, const prgregset_t regs, argument
356 (void) memcpy(gregs, regs, sizeof (gregs));
/osnet-11/usr/src/grub/grub2/grub-core/net/drivers/i386/pc/
H A Dpxe.c170 struct grub_bios_int_registers regs; local
174 regs.flags = GRUB_CPU_INT_FLAGS_DEFAULT;
176 regs.ebx = 0;
177 regs.ecx = 0;
178 regs.eax = 0x5650;
179 regs.es = 0;
181 grub_bios_interrupt (0x1a, &regs);
183 if ((regs.eax & 0xffff) != 0x564e)
186 pxenv = (struct grub_pxenv *) ((regs.es << 4) + (regs
[all...]
/osnet-11/usr/src/lib/libdisasm/sparc/
H A Ddis_sparc_fmt.c1983 const char **regs = NULL; local
2002 regs = fcc_names;
2004 regs = icc_names;
2005 if (regs[f->f3c.cc] == NULL)
2011 bprintf(dhp, "%s, ", regs[f->f3c.cc]);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregex_internal.h647 regmatch_t *regs; member in struct:re_fail_stack_ent_t
H A Dregexec.c48 struct re_registers *regs,
53 struct re_registers *regs,
55 static unsigned int re_copy_regs (struct re_registers *regs, regmatch_t *pmatch,
70 regmatch_t *regs,
313 re_match (bufp, string, length, start, regs)
317 struct re_registers *regs;
319 return re_search_stub (bufp, string, length, start, 0, length, regs, true);
326 re_search (bufp, string, length, start, range, regs)
331 struct re_registers *regs;
333 return re_search_stub (bufp, string, length, start, range, length, regs,
330 struct re_registers *regs; variable in typeref:struct:re_registers
344 struct re_registers *regs; variable in typeref:struct:re_registers
359 struct re_registers *regs; variable in typeref:struct:re_registers
370 re_search_2_stub(struct re_pattern_buffer *bufp, const char *string1, Idx length1, const char *string2, Idx length2, Idx start, regoff_t range, struct re_registers *regs, Idx stop, bool ret_len) argument
418 re_search_stub(struct re_pattern_buffer *bufp, const char *string, Idx length, Idx start, regoff_t range, Idx stop, struct re_registers *regs, bool ret_len) argument
511 re_copy_regs(struct re_registers *regs, regmatch_t *pmatch, Idx nregs, int regs_allocated) argument
1287 proceed_next_node(const re_match_context_t *mctx, Idx nregs, regmatch_t *regs, Idx *pidx, Idx node, re_node_set *eps_via_nodes, struct re_fail_stack_t *fs) argument
1389 push_fail_stack(struct re_fail_stack_t *fs, Idx str_idx, Idx dest_node, Idx nregs, regmatch_t *regs, re_node_set *eps_via_nodes) argument
1416 pop_fail_stack(struct re_fail_stack_t *fs, Idx *pidx, Idx nregs, regmatch_t *regs, re_node_set *eps_via_nodes) argument
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dtg3.h2154 unsigned long regs; member in struct:tg3

Completed in 116 milliseconds