Home
last modified time | relevance | path

Searched refs:basep (Results 1 – 25 of 46) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-streamer-out.c133 tree *basep = NULL; in output_gimple_stmt() local
140 basep = &op; in output_gimple_stmt()
141 if (TREE_CODE (*basep) == ADDR_EXPR) in output_gimple_stmt()
142 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
143 while (handled_component_p (*basep)) in output_gimple_stmt()
144 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
145 if (VAR_P (*basep) in output_gimple_stmt()
146 && !auto_var_in_fn_p (*basep, fn->decl) in output_gimple_stmt()
147 && !DECL_REGISTER (*basep)) in output_gimple_stmt()
149 bool volatilep = TREE_THIS_VOLATILE (*basep); in output_gimple_stmt()
[all …]
H A Dtree-ssa-phiopt.c2271 tree *basep = &lhs; in cond_store_replacement() local
2272 while (handled_component_p (*basep)) in cond_store_replacement()
2273 basep = &TREE_OPERAND (*basep, 0); in cond_store_replacement()
2274 if (TREE_CODE (*basep) == MEM_REF in cond_store_replacement()
2275 || TREE_CODE (*basep) == TARGET_MEM_REF) in cond_store_replacement()
2276 TREE_OPERAND (*basep, 1) in cond_store_replacement()
2277 = fold_convert (ptr_type_node, TREE_OPERAND (*basep, 1)); in cond_store_replacement()
2279 *basep = build2 (MEM_REF, TREE_TYPE (*basep), in cond_store_replacement()
2280 build_fold_addr_expr (*basep), in cond_store_replacement()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-streamer-out.cc133 tree *basep = NULL; in output_gimple_stmt() local
140 basep = &op; in output_gimple_stmt()
141 if (TREE_CODE (*basep) == ADDR_EXPR) in output_gimple_stmt()
142 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
143 while (handled_component_p (*basep)) in output_gimple_stmt()
144 basep = &TREE_OPERAND (*basep, 0); in output_gimple_stmt()
145 if (VAR_P (*basep) in output_gimple_stmt()
146 && !auto_var_in_fn_p (*basep, fn->decl) in output_gimple_stmt()
147 && !DECL_REGISTER (*basep)) in output_gimple_stmt()
149 bool volatilep = TREE_THIS_VOLATILE (*basep); in output_gimple_stmt()
[all …]
H A Dtree-ssa-phiopt.cc3218 tree *basep = &lhs; in cond_store_replacement() local
3219 while (handled_component_p (*basep)) in cond_store_replacement()
3220 basep = &TREE_OPERAND (*basep, 0); in cond_store_replacement()
3221 if (TREE_CODE (*basep) == MEM_REF in cond_store_replacement()
3222 || TREE_CODE (*basep) == TARGET_MEM_REF) in cond_store_replacement()
3223 TREE_OPERAND (*basep, 1) in cond_store_replacement()
3224 = fold_convert (ptr_type_node, TREE_OPERAND (*basep, 1)); in cond_store_replacement()
3226 *basep = build2 (MEM_REF, TREE_TYPE (*basep), in cond_store_replacement()
3227 build_fold_addr_expr (*basep), in cond_store_replacement()
/netbsd-src/sys/dev/pci/
H A Dpci_map.c50 bus_addr_t *basep, bus_size_t *sizep, int *flagsp) in pci_io_find() argument
102 if (basep != NULL) in pci_io_find()
103 *basep = PCI_MAPREG_IO_ADDR(address); in pci_io_find()
114 bus_addr_t *basep, bus_size_t *sizep, int *flagsp) in pci_mem_find() argument
230 if (basep != NULL) in pci_mem_find()
231 *basep = PCI_MAPREG_MEM_ADDR(address); in pci_mem_find()
235 if (basep != NULL) in pci_mem_find()
236 *basep = PCI_MAPREG_MEM64_ADDR(waddress); in pci_mem_find()
393 int reg, pcireg_t type, bus_addr_t *basep, bus_size_t *sizep, int *flagsp, in pci_ea_find() argument
466 *basep = (bus_addr_t)entry.base; in pci_ea_find()
[all …]
/netbsd-src/sys/dev/cardbus/
H A Dcardbus_map.c76 bus_addr_t *basep, in cardbus_io_find() argument
119 if (basep != 0) { in cardbus_io_find()
120 *basep = PCI_MAPREG_IO_ADDR(address); in cardbus_io_find()
142 …dbus_function_tag_t cf, pcitag_t tag, int reg, pcireg_t type, bus_addr_t *basep, bus_size_t *sizep… in cardbus_mem_find() argument
201 if (basep != 0) { in cardbus_mem_find()
202 *basep = PCI_MAPREG_MEM_ADDR(address); in cardbus_mem_find()
229 …busflags, bus_space_tag_t *tagp, bus_space_handle_t *handlep, bus_addr_t *basep, bus_size_t *sizep) in cardbus_mapreg_map() argument
283 if (basep != 0) { in cardbus_mapreg_map()
284 *basep = base; in cardbus_mapreg_map()
H A Dcardbusvar.h286 #define Cardbus_mapreg_map(ct, reg, type, busflags, tagp, handlep, basep, sizep) \ argument
288 (busflags), (tagp), (handlep), (basep), (sizep))
/netbsd-src/sys/arch/arc/arc/
H A Dp_dti_arcstation.c157 btl_dti_arcstation_bouncemem(u_int *basep, u_int *sizep) in btl_dti_arcstation_bouncemem() argument
168 *basep = (u_int) kmem_alloc(*sizep, KM_SLEEP); in btl_dti_arcstation_bouncemem()
170 *basep = (u_int) rpc44_buffer | 0xa0000000; in btl_dti_arcstation_bouncemem()
H A Dp_dti_tyne.c163 btl_dti_tyne_bouncemem(u_int *basep, u_int*sizep) in btl_dti_tyne_bouncemem() argument
166 *basep = TYNE_V_BOUNCE; in btl_dti_tyne_bouncemem()
/netbsd-src/sys/kern/
H A Dsubr_kobj_vfs.c94 kobj_read_vfs(kobj_t ko, void **basep, size_t size, off_t off, in kobj_read_vfs() argument
106 base = *basep; in kobj_read_vfs()
140 *basep = base; in kobj_read_vfs()
H A Dsubr_kobj.c1165 kobj_read_mem(kobj_t ko, void **basep, size_t size, off_t off, in kobj_read_mem() argument
1168 void *base = *basep; in kobj_read_mem()
1194 *basep = base; in kobj_read_mem()
/netbsd-src/lib/libc/compat/sys/
H A Dcompat_getdirentries.c51 getdirentries(int fd, char *buf, int nbytes, long *basep) in getdirentries() argument
53 *basep = (long)lseek(fd, (off_t)0, SEEK_CUR); in getdirentries()
/netbsd-src/external/bsd/pkg_install/dist/admin/
H A Dmain.c636 const char *basep, *dir; in main() local
639 basep = basename_of(*argv); in main()
642 rc = match_local_files(dir, use_default_sfx, 1, basep, lsbasepattern, NULL); in main()
644 rc = match_local_files(dir, use_default_sfx, 1, basep, lspattern, __UNCONST(dir)); in main()
647 dir, basep); in main()
657 const char *basep, *dir; in main() local
661 basep = basename_of(*argv); in main()
663 p = find_best_matching_file(dir, basep, use_default_sfx, 1); in main()
/netbsd-src/sys/arch/luna68k/dev/
H A Domrasops.c1285 uint8_t *sp, *dp, *sq, *dq, *basep; in om1_copycols() local
1297 basep = (uint8_t *)ri->ri_bits + y * scanspan; in om1_copycols()
1306 sp = basep + (srcx / 32) * 4; in om1_copycols()
1307 dp = basep + (dstx / 32) * 4; in om1_copycols()
1334 sp = basep + (srcx / 32) * 4; in om1_copycols()
1335 dp = basep + (dstx / 32) * 4; in om1_copycols()
1374 sp = basep + ((srcx + w) / 32) * 4; in om1_copycols()
1375 dp = basep + ((dstx + w) / 32) * 4; in om1_copycols()
1418 uint8_t *sp, *dp, *sq, *dq, *basep; in om4_copycols() local
1430 basep in om4_copycols()
[all...]
/netbsd-src/common/lib/libc/rpc/
H A Dxdr_array.c160 xdr_vector(XDR *xdrs, char *basep, u_int nelem, u_int elemsize, in xdr_vector() argument
166 elptr = basep; in xdr_vector()
/netbsd-src/sys/arch/prep/pnpbus/
H A Dpnpbus.c560 pnpbus_getioport(struct pnpresources *r, int idx, int *basep, int *sizep) in pnpbus_getioport() argument
571 if (basep) in pnpbus_getioport()
572 *basep = io->minbase; in pnpbus_getioport()
613 pnpbus_getiomem(struct pnpresources *r, int idx, int *basep, int *sizep) in pnpbus_getiomem() argument
624 if (basep) in pnpbus_getiomem()
625 *basep = mem->minbase; in pnpbus_getiomem()
H A Dpnpbusvar.h132 int pnpbus_getioport(struct pnpresources *r, int idx, int *basep,
138 int pnpbus_getiomem(struct pnpresources *r, int idx, int *basep,
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/src/
H A Dx-lisp.c560 is_potential_number (const struct token *tp, int *basep) in is_potential_number() argument
568 *basep = 10; in is_potential_number()
573 a_letter_to_digit (tp, *basep); in is_potential_number()
606 is_number (const struct token *tp, int *basep) in is_number() argument
611 if (!is_potential_number (tp, basep)) in is_number()
652 if (c >= *basep) in is_number()
682 *basep = 10; in is_number()
/netbsd-src/usr.sbin/mtrace/
H A Dmtrace.c968 fixup_stats(struct resp_buf *basep, struct resp_buf *prev, struct resp_buf *new) in fixup_stats() argument
970 int rno = basep->len; in fixup_stats()
971 struct tr_resp *b = basep->resps + rno; in fixup_stats()
998 rno = basep->len; in fixup_stats()
999 b = basep->resps + rno; in fixup_stats()
1036 rno = basep->len; in fixup_stats()
1037 b = basep->resps + rno; in fixup_stats()
1047 print_stats(struct resp_buf *basep, struct resp_buf *prev, struct resp_buf *new) in print_stats() argument
1053 int rno = basep->len - 1; in print_stats()
1054 struct tr_resp *b = basep->resps + rno; in print_stats()
[all …]
/netbsd-src/tests/lib/libi386/
H A Dt_user_ldt.c72 build_desc(union descriptor *desc, void *basep, uint32_t limit, int type, in build_desc() argument
75 uintptr_t base = (uintptr_t)basep; in build_desc()
/netbsd-src/external/bsd/iscsi/dist/src/lib/
H A Dutil.c454 char *basep; in modify_iov() local
474 basep = iov[i].iov_base; in modify_iov()
475 basep += disp; in modify_iov()
476 iov[i].iov_base = basep; in modify_iov()
/netbsd-src/lib/libc/time/
H A Dlocaltime.c1254 tzparse(const char *name, struct state *sp, struct state const *basep) in tzparse()
1285 if (basep) { in tzparse()
1286 if (0 < basep->timecnt) in tzparse()
1287 atlo = basep->ats[basep->timecnt - 1]; in tzparse()
1289 sp->leapcnt = basep->leapcnt; in tzparse()
1290 memcpy(sp->lsis, basep->lsis, sp->leapcnt * sizeof *sp->lsis); in tzparse()
1146 tzparse(const char * name,struct state * sp,struct state const * basep) tzparse() argument
/netbsd-src/sys/compat/netbsd32/
H A Dnetbsd32_compat_12.c210 NETBSD32TOP_UAP(basep, long); in compat_12_netbsd32_getdirentries()
/netbsd-src/sys/compat/common/
H A Dvfs_syscalls_12.c260 return copyout(&loff, SCARG(uap, basep), sizeof(long)); in compat_12_sys_getdirentries()
/netbsd-src/sys/arch/i386/pnpbios/
H A Dpnpbios.c1301 int idx, bus_space_tag_t *tagp, int *basep) in pnpbios_getiobase() argument
1314 if (basep) in pnpbios_getiobase()
1315 *basep = io->minbase; in pnpbios_getiobase()

12