Searched refs:sf (Results 1 - 25 of 314) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ia64/
H A Dopc-f.pl3 @sf = ( "", ".s0", ".s1", ".s2", ".s3" );
10 foreach $s (@sf) {
20 foreach $s (@sf) {
27 foreach $s (@sf) {
58 foreach $s (@sf) {
80 foreach $s (@sf) {
87 foreach $s (@sf) {
97 foreach $s (@sf) {
106 foreach $s (@sf) {
132 foreach $s (@sf) {
[all...]
/netbsd-current/external/gpl3/binutils/dist/gprof/
H A Dsource.c41 Source_File *sf;
43 for (sf = first_src_file; sf; sf = sf->next)
45 if (FILENAME_CMP (path, sf->name) == 0)
49 if (!sf)
52 sf = (Source_File *) xmalloc (sizeof (*sf));
54 memset (sf,
40 Source_File *sf; local
68 Source_File *sf; local
92 annotate_source(Source_File *sf, unsigned int max_width, void (*annote) (char *, unsigned int, int, void *), void *arg) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/linux/
H A Dlinux_sync_file.c50 struct sync_file *sf; local
52 sf = kmem_zalloc(sizeof(*sf), KM_SLEEP);
53 sf->file = fp;
55 mutex_init(&sf->sf_lock, MUTEX_DEFAULT, IPL_VM);
56 selinit(&sf->sf_selq);
57 sf->sf_polling = false;
58 sf->sf_signalled = false;
59 sf->sf_fence = dma_fence_get(fence);
64 fp->f_data = sf;
72 struct sync_file *sf = fp->f_data; local
89 struct sync_file *sf = container_of(fcb, struct sync_file, sf_fcb); local
100 struct sync_file *sf = fp->f_data; local
136 struct sync_file *sf = fp->f_data; local
154 struct sync_file *sf = kn->kn_hook; local
164 struct sync_file *sf = kn->kn_hook; local
213 struct sync_file *sf; local
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/gprof/
H A Dsource.c41 Source_File *sf;
43 for (sf = first_src_file; sf; sf = sf->next)
45 if (FILENAME_CMP (path, sf->name) == 0)
49 if (!sf)
52 sf = (Source_File *) xmalloc (sizeof (*sf));
54 memset (sf,
40 Source_File *sf; local
68 Source_File *sf; local
92 annotate_source(Source_File *sf, unsigned int max_width, void (*annote) (char *, unsigned int, int, void *), void *arg) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gprof/
H A Dsource.c41 Source_File *sf;
43 for (sf = first_src_file; sf; sf = sf->next)
45 if (FILENAME_CMP (path, sf->name) == 0)
49 if (!sf)
52 sf = (Source_File *) xmalloc (sizeof (*sf));
54 memset (sf,
40 Source_File *sf; local
68 Source_File *sf; local
92 annotate_source(Source_File *sf, unsigned int max_width, void (*annote) (char *, unsigned int, int, void *), void *arg) argument
[all...]
/netbsd-current/games/adventure/
H A Dsave.c119 struct savefile *sf; local
121 sf = malloc(sizeof(*sf));
122 if (sf == NULL) {
125 sf->f = fopen(name, forwrite ? "w" : "r");
126 if (sf->f == NULL) {
127 free(sf);
133 sf->name = name;
134 sf->warned = false;
135 sf
147 savefile_rawread(struct savefile *sf, void *data, size_t len) argument
164 savefile_rawwrite(struct savefile *sf, const void *data, size_t len) argument
181 savefile_close(struct savefile *sf) argument
204 savefile_bintextread(struct savefile *sf, void *data, size_t len) argument
231 savefile_binread(struct savefile *sf, void *data, size_t len) argument
266 savefile_bintextwrite(struct savefile *sf, const void *data, size_t len) argument
295 savefile_binwrite(struct savefile *sf, const void *data, size_t len) argument
363 savefile_key(struct savefile *sf, uint32_t key) argument
376 savefile_getpad(struct savefile *sf) argument
392 savefile_cread(struct savefile *sf, void *data, size_t len) argument
424 savefile_cwrite(struct savefile *sf, const void *data, size_t len) argument
664 struct savefile *sf; local
755 struct savefile *sf; local
[all...]
/netbsd-current/sys/dev/sdmmc/
H A Dsdmmc_io.c145 struct sdmmc_function *sf0, *sf; local
175 sf = sdmmc_function_alloc(sc);
176 sf->number = i;
177 sf->rca = sf0->rca;
178 SIMPLEQ_INSERT_TAIL(&sc->sf_head, sf, sf_list);
189 sdmmc_io_init(struct sdmmc_softc *sc, struct sdmmc_function *sf) argument
197 sf->blklen = sdmmc_chip_host_maxblklen(sc->sc_sct, sc->sc_sch);
199 if (sf->number == 0) {
200 reg = sdmmc_io_read_1(sf, SD_IO_CCCR_CAPABILITY);
202 sdmmc_io_write_1(sf, SD_IO_CCCR_BUS_WIDT
283 sdmmc_io_function_ready(struct sdmmc_function *sf) argument
299 sdmmc_io_function_enable(struct sdmmc_function *sf) argument
326 sdmmc_io_function_disable(struct sdmmc_function *sf) argument
343 sdmmc_io_rw_direct(struct sdmmc_softc *sc, struct sdmmc_function *sf, int reg, u_char *datap, int arg, bool toutok) argument
391 sdmmc_io_rw_extended(struct sdmmc_softc *sc, struct sdmmc_function *sf, int reg, u_char *datap, int datalen, int arg) argument
437 sdmmc_io_read_1(struct sdmmc_function *sf, int reg) argument
449 sdmmc_io_write_1(struct sdmmc_function *sf, int reg, uint8_t data) argument
459 sdmmc_io_read_2(struct sdmmc_function *sf, int reg) argument
471 sdmmc_io_write_2(struct sdmmc_function *sf, int reg, uint16_t data) argument
481 sdmmc_io_read_4(struct sdmmc_function *sf, int reg) argument
493 sdmmc_io_write_4(struct sdmmc_function *sf, int reg, uint32_t data) argument
504 sdmmc_io_read_multi_1(struct sdmmc_function *sf, int reg, u_char *data, int datalen) argument
532 sdmmc_io_write_multi_1(struct sdmmc_function *sf, int reg, u_char *data, int datalen) argument
561 sdmmc_io_read_region_1(struct sdmmc_function *sf, int reg, u_char *data, int datalen) argument
590 sdmmc_io_write_region_1(struct sdmmc_function *sf, int reg, u_char *data, int datalen) argument
635 sdmmc_io_function_abort(struct sdmmc_function *sf) argument
703 sdmmc_intr_enable(struct sdmmc_function *sf) argument
717 sdmmc_intr_disable(struct sdmmc_function *sf) argument
827 sdmmc_io_set_blocklen(struct sdmmc_function *sf, int blklen) argument
[all...]
H A Dsdmmc_cis.c53 sdmmc_cisptr(struct sdmmc_function *sf) argument
58 if (sf->number == 0) {
59 cisptr |= sdmmc_io_read_1(sf, SD_IO_CCCR_CISPTR + 0) << 0;
60 cisptr |= sdmmc_io_read_1(sf, SD_IO_CCCR_CISPTR + 1) << 8;
61 cisptr |= sdmmc_io_read_1(sf, SD_IO_CCCR_CISPTR + 2) << 16;
63 struct sdmmc_function *sf0 = sf->sc->sc_fn0;
64 int num = sf->number;
74 decode_funce_common(struct sdmmc_function *sf, struct sdmmc_cis *cis, argument
80 struct sdmmc_function *sf0 = sf->sc->sc_fn0;
81 device_t dev = sf
106 decode_funce_function(struct sdmmc_function *sf, struct sdmmc_cis *cis, int tpllen, uint32_t reg) argument
137 decode_vers_1(struct sdmmc_function *sf, struct sdmmc_cis *cis, int tpllen, uint32_t reg) argument
168 sdmmc_read_cis(struct sdmmc_function *sf, struct sdmmc_cis *cis) argument
285 sdmmc_print_cis(struct sdmmc_function *sf) argument
312 sdmmc_check_cis_quirks(struct sdmmc_function *sf) argument
[all...]
H A Dsdmmc.c431 struct sdmmc_function *sf; local
471 SIMPLEQ_FOREACH(sf, &sc->sf_head, sf_list) {
472 if (ISSET(sc->sc_flags, SMF_IO_MODE) && sf->number < 1)
476 saa.manufacturer = sf->cis.manufacturer;
477 saa.product = sf->cis.product;
478 saa.interface = sf->interface;
479 saa.sf = sf;
481 sf->child =
499 struct sdmmc_function *sf, *sfnex local
533 struct sdmmc_function *sf = sa->sf; local
680 struct sdmmc_function *sf; local
742 sdmmc_function_free(struct sdmmc_function *sf) argument
793 struct sdmmc_function *sf; local
840 sdmmc_app_command(struct sdmmc_softc *sc, struct sdmmc_function *sf, struct sdmmc_command *cmd) argument
951 sdmmc_set_relative_addr(struct sdmmc_softc *sc, struct sdmmc_function *sf) argument
984 sdmmc_select_card(struct sdmmc_softc *sc, struct sdmmc_function *sf) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Damd64-obsd-nat.c72 struct switchframe sf;
105 read_memory (pcb->pcb_rsp, (gdb_byte *) &sf, sizeof sf);
106 if (sf.sf_rbp == pcb->pcb_rbp)
110 regcache->raw_supply (12, &sf.sf_r12);
111 regcache->raw_supply (13, &sf.sf_r13);
112 regcache->raw_supply (14, &sf.sf_r14);
113 regcache->raw_supply (15, &sf.sf_r15);
114 regcache->raw_supply (AMD64_RBX_REGNUM, &sf.sf_rbx);
115 regcache->raw_supply (AMD64_RIP_REGNUM, &sf
71 struct switchframe sf; local
[all...]
H A Di386-nbsd-nat.c42 struct switchframe sf; local
68 read_memory (pcb->pcb_esp, (gdb_byte *)&sf, sizeof sf);
70 regcache->raw_supply (I386_EDI_REGNUM, &sf.sf_edi);
71 regcache->raw_supply (I386_ESI_REGNUM, &sf.sf_esi);
74 regcache->raw_supply (I386_EBX_REGNUM, &sf.sf_ebx);
75 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
H A Di386-obsd-nat.c39 struct switchframe sf; local
68 read_memory (pcb->pcb_esp, (gdb_byte *) &sf, sizeof sf);
70 regcache->raw_supply (I386_EDI_REGNUM, &sf.sf_edi);
71 regcache->raw_supply (I386_ESI_REGNUM, &sf.sf_esi);
72 regcache->raw_supply (I386_EBX_REGNUM, &sf.sf_ebx);
73 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
81 sf.sf_eip = read_memory_integer(pcb->pcb_esp + 4, 4, byte_order);
82 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
H A Damd64-nbsd-nat.c67 struct switchframe sf; local
96 read_memory (pcb->pcb_rsp, (gdb_byte *) &sf, sizeof sf);
98 regcache->raw_supply (12, &sf.sf_r12);
99 regcache->raw_supply (13, &sf.sf_r13);
100 regcache->raw_supply (14, &sf.sf_r14);
101 regcache->raw_supply (15, &sf.sf_r15);
102 regcache->raw_supply (AMD64_RBX_REGNUM, &sf.sf_rbx);
103 regcache->raw_supply (AMD64_RIP_REGNUM, &sf.sf_rip);
H A Dmips-nbsd-nat.c128 struct label_t sf; local
130 sf = pcb->pcb_context;
135 regcache->raw_supply (MIPS_S0_REGNUM, &sf.val[_L_S0]);
136 regcache->raw_supply (MIPS_S1_REGNUM, &sf.val[_L_S1]);
137 regcache->raw_supply (MIPS_S2_REGNUM, &sf.val[_L_S2]);
138 regcache->raw_supply (MIPS_S3_REGNUM, &sf.val[_L_S3]);
139 regcache->raw_supply (MIPS_S4_REGNUM, &sf.val[_L_S4]);
140 regcache->raw_supply (MIPS_S5_REGNUM, &sf.val[_L_S5]);
141 regcache->raw_supply (MIPS_S6_REGNUM, &sf.val[_L_S6]);
142 regcache->raw_supply (MIPS_S7_REGNUM, &sf
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Damd64-obsd-nat.c72 struct switchframe sf;
105 read_memory (pcb->pcb_rsp, (gdb_byte *) &sf, sizeof sf);
106 if (sf.sf_rbp == pcb->pcb_rbp)
110 regcache->raw_supply (12, &sf.sf_r12);
111 regcache->raw_supply (13, &sf.sf_r13);
112 regcache->raw_supply (14, &sf.sf_r14);
113 regcache->raw_supply (15, &sf.sf_r15);
114 regcache->raw_supply (AMD64_RBX_REGNUM, &sf.sf_rbx);
115 regcache->raw_supply (AMD64_RIP_REGNUM, &sf
71 struct switchframe sf; local
[all...]
H A Di386-netbsd-nat.c40 struct switchframe sf; local
62 read_memory (pcb->pcb_esp, (gdb_byte *)&sf, sizeof sf);
64 regcache->raw_supply (I386_EDI_REGNUM, &sf.sf_edi);
65 regcache->raw_supply (I386_ESI_REGNUM, &sf.sf_esi);
68 regcache->raw_supply (I386_EBX_REGNUM, &sf.sf_ebx);
69 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
H A Di386-obsd-nat.c39 struct switchframe sf; local
68 read_memory (pcb->pcb_esp, (gdb_byte *) &sf, sizeof sf);
70 regcache->raw_supply (I386_EDI_REGNUM, &sf.sf_edi);
71 regcache->raw_supply (I386_ESI_REGNUM, &sf.sf_esi);
72 regcache->raw_supply (I386_EBX_REGNUM, &sf.sf_ebx);
73 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
81 sf.sf_eip = read_memory_integer(pcb->pcb_esp + 4, 4, byte_order);
82 regcache->raw_supply (I386_EIP_REGNUM, &sf.sf_eip);
H A Damd64-netbsd-nat.c67 struct switchframe sf; local
96 read_memory (pcb->pcb_rsp, (gdb_byte *) &sf, sizeof sf);
98 regcache->raw_supply (12, &sf.sf_r12);
99 regcache->raw_supply (13, &sf.sf_r13);
100 regcache->raw_supply (14, &sf.sf_r14);
101 regcache->raw_supply (15, &sf.sf_r15);
102 regcache->raw_supply (AMD64_RBX_REGNUM, &sf.sf_rbx);
103 regcache->raw_supply (AMD64_RIP_REGNUM, &sf.sf_rip);
H A Dmips-netbsd-nat.c125 struct label_t sf; local
127 sf = pcb->pcb_context;
132 regcache->raw_supply (MIPS_S0_REGNUM, &sf.val[_L_S0]);
133 regcache->raw_supply (MIPS_S1_REGNUM, &sf.val[_L_S1]);
134 regcache->raw_supply (MIPS_S2_REGNUM, &sf.val[_L_S2]);
135 regcache->raw_supply (MIPS_S3_REGNUM, &sf.val[_L_S3]);
136 regcache->raw_supply (MIPS_S4_REGNUM, &sf.val[_L_S4]);
137 regcache->raw_supply (MIPS_S5_REGNUM, &sf.val[_L_S5]);
138 regcache->raw_supply (MIPS_S6_REGNUM, &sf.val[_L_S6]);
139 regcache->raw_supply (MIPS_S7_REGNUM, &sf
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/i386/
H A Dfreebsd-unwind.h78 struct sigframe *sf; local
106 sf = (struct sigframe *) context->cfa;
107 new_cfa = sf->REG_NAME(rsp);
114 fs->regs.reg[0].loc.offset = (long)&sf->REG_NAME(rax) - new_cfa;
116 fs->regs.reg[1].loc.offset = (long)&sf->REG_NAME(rdx) - new_cfa;
118 fs->regs.reg[2].loc.offset = (long)&sf->REG_NAME(rcx) - new_cfa;
120 fs->regs.reg[3].loc.offset = (long)&sf->REG_NAME(rbx) - new_cfa;
122 fs->regs.reg[4].loc.offset = (long)&sf->REG_NAME(rsi) - new_cfa;
124 fs->regs.reg[5].loc.offset = (long)&sf->REG_NAME(rdi) - new_cfa;
126 fs->regs.reg[6].loc.offset = (long)&sf
165 struct sigframe *sf; local
[all...]
H A Ddragonfly-unwind.h91 struct sigframe *sf; local
97 sf = (struct sigframe *) context->cfa;
98 new_cfa = sf->REG_NAME(rsp);
106 fs->regs.reg[0].loc.offset = (long)&sf->REG_NAME(rax) - new_cfa;
108 fs->regs.reg[1].loc.offset = (long)&sf->REG_NAME(rdx) - new_cfa;
110 fs->regs.reg[2].loc.offset = (long)&sf->REG_NAME(rcx) - new_cfa;
112 fs->regs.reg[3].loc.offset = (long)&sf->REG_NAME(rbx) - new_cfa;
114 fs->regs.reg[4].loc.offset = (long)&sf->REG_NAME(rsi) - new_cfa;
116 fs->regs.reg[5].loc.offset = (long)&sf->REG_NAME(rdi) - new_cfa;
118 fs->regs.reg[6].loc.offset = (long)&sf
170 struct sigframe *sf; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/i386/
H A Dfreebsd-unwind.h78 struct sigframe *sf; local
106 sf = (struct sigframe *) context->cfa;
107 new_cfa = sf->REG_NAME(rsp);
114 fs->regs.reg[0].loc.offset = (long)&sf->REG_NAME(rax) - new_cfa;
116 fs->regs.reg[1].loc.offset = (long)&sf->REG_NAME(rdx) - new_cfa;
118 fs->regs.reg[2].loc.offset = (long)&sf->REG_NAME(rcx) - new_cfa;
120 fs->regs.reg[3].loc.offset = (long)&sf->REG_NAME(rbx) - new_cfa;
122 fs->regs.reg[4].loc.offset = (long)&sf->REG_NAME(rsi) - new_cfa;
124 fs->regs.reg[5].loc.offset = (long)&sf->REG_NAME(rdi) - new_cfa;
126 fs->regs.reg[6].loc.offset = (long)&sf
165 struct sigframe *sf; local
[all...]
H A Ddragonfly-unwind.h91 struct sigframe *sf; local
97 sf = (struct sigframe *) context->cfa;
98 new_cfa = sf->REG_NAME(rsp);
106 fs->regs.reg[0].loc.offset = (long)&sf->REG_NAME(rax) - new_cfa;
108 fs->regs.reg[1].loc.offset = (long)&sf->REG_NAME(rdx) - new_cfa;
110 fs->regs.reg[2].loc.offset = (long)&sf->REG_NAME(rcx) - new_cfa;
112 fs->regs.reg[3].loc.offset = (long)&sf->REG_NAME(rbx) - new_cfa;
114 fs->regs.reg[4].loc.offset = (long)&sf->REG_NAME(rsi) - new_cfa;
116 fs->regs.reg[5].loc.offset = (long)&sf->REG_NAME(rdi) - new_cfa;
118 fs->regs.reg[6].loc.offset = (long)&sf
170 struct sigframe *sf; local
[all...]
/netbsd-current/tools/m4/
H A DMakefile14 @ln -sf ${.ALLSRC:M*.c} $@
16 @ln -sf ${.ALLSRC:M*.h} $@
18 @ln -sf ${.ALLSRC:M*.c} $@
/netbsd-current/sys/arch/sparc/sparc/
H A Dsunos_machdep.c80 struct sunos_sigframe sf; local
111 sf.sf_signo = sig;
112 sf.sf_code = code;
113 sf.sf_scp = &fp->sf_sc;
114 sf.sf_addr = 0; /* XXX */
119 sf.sf_sc.sc_onstack = l->l_sigstk.ss_flags & SS_ONSTACK;
120 native_sigset_to_sigset13(mask, &sf.sf_sc.sc_mask);
121 sf.sf_sc.sc_sp = oldsp;
122 sf.sf_sc.sc_pc = tf->tf_pc;
123 sf
[all...]

Completed in 400 milliseconds

1234567891011>>