Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 25 of 953) sorted by relevance

12345678910>>...39

/netbsd-src/sys/fs/msdosfs/
H A Ddenode.h141 #define fc_setcache(dep, slot, frcn, fsrcn) \ argument
142 (dep)->de_fc[slot].fc_frcn = frcn; \
143 (dep)->de_fc[slot].fc_fsrcn = fsrcn;
145 #define fc_last_to_nexttolast(dep) \ argument
147 (dep)->de_fc[FC_NEXTTOLASTFC].fc_frcn = (dep)->de_fc[FC_LASTFC].fc_frcn; \
148 (dep)->de_fc[FC_NEXTTOLASTFC].fc_fsrcn = (dep)->de_fc[FC_LASTFC].fc_fsrcn; \
218 #define DE_INTERNALIZE32(dep, dp) \ argument
219 ((dep)->de_StartCluster |= getushort((dp)->deHighClust) << 16)
220 #define DE_INTERNALIZE(dep, dp) \ argument
221 (memcpy((dep)->de_Name, (dp)->deName, 8), \
[all …]
H A Dmsdosfs_denode.c333 msdosfs_deupdat(struct denode *dep, int waitfor) in msdosfs_deupdat() argument
336 return (msdosfs_update(DETOV(dep), NULL, NULL, in msdosfs_deupdat()
344 msdosfs_detrunc(struct denode *dep, u_long length, int flags, kauth_cred_t cred) in msdosfs_detrunc() argument
352 int isadir = dep->de_Attributes & ATTR_DIRECTORY; in msdosfs_detrunc()
354 struct msdosfsmount *pmp = dep->de_pmp; in msdosfs_detrunc()
357 printf("detrunc(): file %s, length %lu, flags %x\n", dep->de_Name, length, flags); in msdosfs_detrunc()
368 if ((DETOV(dep)->v_vflag & VV_ROOT) && !FAT32(pmp)) { in msdosfs_detrunc()
370 dep->de_dirclust, dep->de_diroffset); in msdosfs_detrunc()
374 uvm_vnp_setsize(DETOV(dep), length); in msdosfs_detrunc()
376 if (dep->de_FileSize < length) in msdosfs_detrunc()
[all …]
H A Dmsdosfs_vnops.c114 struct denode *dep; in msdosfs_create() local
152 if ((error = msdosfs_createde(&ndirent, pdep, &pdep->de_crap, &dep, in msdosfs_create()
155 *ap->a_vpp = DETOV(dep); in msdosfs_create()
173 struct denode *dep = VTODE(vp); in msdosfs_close() local
177 DETIMES(dep, NULL, NULL, NULL, dep->de_pmp->pm_gmtoff); in msdosfs_close()
183 msdosfs_check_possible(struct vnode *vp, struct denode *dep, accmode_t accmode) in msdosfs_check_possible() argument
207 msdosfs_check_permitted(struct vnode *vp, struct denode *dep, accmode_t accmode, in msdosfs_check_permitted() argument
210 struct msdosfsmount *pmp = dep->de_pmp; in msdosfs_check_permitted()
213 if ((dep in msdosfs_check_permitted()
234 struct denode *dep = VTODE(vp); msdosfs_access() local
254 struct denode *dep = VTODE(ap->a_vp); msdosfs_getattr() local
323 struct denode *dep = VTODE(ap->a_vp); msdosfs_setattr() local
459 struct denode *dep = VTODE(vp); msdosfs_read() local
559 struct denode *dep = VTODE(vp); msdosfs_write() local
684 struct denode *dep; msdosfs_update() local
725 struct denode *dep = VTODE(ap->a_vp); msdosfs_remove() local
783 struct denode *dep; msdosfs_mkdir() local
969 struct denode *dep = VTODE(ap->a_vp); msdosfs_readdir() local
1245 struct denode *dep = VTODE(ap->a_vp); msdosfs_bmap() local
1293 struct denode *dep = VTODE(bp->b_vp); msdosfs_strategy() local
1334 struct denode *dep = VTODE(ap->a_vp); msdosfs_print() local
1355 struct denode *dep = VTODE(ap->a_vp); msdosfs_advlock() local
1417 struct denode *dep = VTODE(vp); msdosfs_fsync() local
1429 msdosfs_detimes(struct denode * dep,const struct timespec * acc,const struct timespec * mod,const struct timespec * cre,int gmtoff) msdosfs_detimes() argument
[all...]
H A Dmsdosfs_lookup.c120 struct direntry *dep; in msdosfs_lookup() local
247 dep = (struct direntry *)((char *)bp->b_data + blkoff); in msdosfs_lookup()
257 if (dep->deName[0] == SLOT_EMPTY || in msdosfs_lookup()
258 dep->deName[0] == SLOT_DELETED) { in msdosfs_lookup()
268 if (dep->deName[0] == SLOT_EMPTY) { in msdosfs_lookup()
283 if (dep->deAttributes == ATTR_WIN95) { in msdosfs_lookup()
289 (struct winentry *)dep, in msdosfs_lookup()
299 if (dep->deAttributes & ATTR_VOLUME) { in msdosfs_lookup()
308 (chksum == msdosfs_winChksum(dep->deName)); in msdosfs_lookup()
311 memcmp(&dosfilename[0],dep->deName,8) || in msdosfs_lookup()
[all …]
H A Dmsdosfs_fat.c182 msdosfs_pcbmap(struct denode *dep, in msdosfs_pcbmap() argument
197 struct msdosfsmount *pmp = dep->de_pmp; in msdosfs_pcbmap()
209 cn = dep->de_StartCluster; in msdosfs_pcbmap()
218 if (dep->de_Attributes & ATTR_DIRECTORY) { in msdosfs_pcbmap()
219 if (de_cn2off(pmp, findcn) >= dep->de_FileSize) { in msdosfs_pcbmap()
232 dep->de_FileSize - de_cn2off(pmp, findcn)); in msdosfs_pcbmap()
257 msdosfs_fc_lookup(dep, findcn, &i, &cn); in msdosfs_pcbmap()
264 fc_lastclust = dep->de_fc[FC_LASTFC].fc_frcn; in msdosfs_pcbmap()
331 fc_setcache(dep, FC_LASTMAP, i, cn); in msdosfs_pcbmap()
341 fc_setcache(dep, FC_LASTFC, i - 1, prevcn); in msdosfs_pcbmap()
[all …]
/netbsd-src/usr.bin/make/unit-tests/
H A Ddeptgt-end-fail.mk17 . for all-dep in ok ERR
19 . for end-dep in ok ERR
20 . for target in ${all}-${all-dep}-${end}-${end-dep}
23 echo Test case all=${all} all-dep=${all-dep} end=${end} end-dep=${end-dep}.
25 all=${all} all-dep=${all-dep} \
26 end=${end} end-dep=${end-dep} \
39 all all-dep end-dep: .PHONY
44 all: all-dep
48 all-dep:
50 @${CMD.${all-dep}}
[all …]
H A Ddep-double-colon-indep.mk16 @rm -f dep-double-colon-1???
18 _!= touch -t 202001011200 dep-double-colon-1200
19 _!= touch -t 202001011300 dep-double-colon-1300
20 _!= touch -t 202001011400 dep-double-colon-1400
21 _!= touch -t 202001011500 dep-double-colon-1500
23 all: dep-double-colon-1300
25 dep-double-colon-1300:: dep-double-colon-1200
28 dep-double-colon-1300:: dep-double-colon-1400
31 dep-double-colon-1300:: dep-double-colon-1500
/netbsd-src/usr.sbin/makefs/msdos/
H A Dmsdosfs_denode.c197 msdosfs_detrunc(struct denode *dep, u_long length, int flags, in msdosfs_detrunc() argument
206 int isadir = dep->de_Attributes & ATTR_DIRECTORY; in msdosfs_detrunc()
208 struct msdosfsmount *pmp = dep->de_pmp; in msdosfs_detrunc()
211 printf("detrunc(): file %s, length %lu, flags %x\n", dep->de_Name, length, flags); in msdosfs_detrunc()
222 if (dep->de_vnode != NULL && !FAT32(pmp)) { in msdosfs_detrunc()
224 dep->de_dirclust, dep->de_diroffset); in msdosfs_detrunc()
228 if (dep->de_FileSize < length) in msdosfs_detrunc()
229 return (msdosfs_deextend(dep, length, cred)); in msdosfs_detrunc()
242 chaintofree = dep->de_StartCluster; in msdosfs_detrunc()
243 dep->de_StartCluster = 0; in msdosfs_detrunc()
[all …]
H A Dmsdosfs_vnops.c98 msdosfs_times(struct msdosfsmount *pmp, struct denode *dep, in msdosfs_times() argument
116 msdosfs_unix2dostime(&at, pmp->pm_gmtoff, &dep->de_ADate, in msdosfs_times()
118 msdosfs_unix2dostime(&mt, pmp->pm_gmtoff, &dep->de_MDate, in msdosfs_times()
119 &dep->de_MTime, NULL); in msdosfs_times()
151 struct direntry *dep; in msdosfs_findslot() local
214 dep = (struct direntry *)((char *)bp->b_data + blkoff); in msdosfs_findslot()
224 if (dep->deName[0] == SLOT_EMPTY || in msdosfs_findslot()
225 dep->deName[0] == SLOT_DELETED) { in msdosfs_findslot()
235 if (dep->deName[0] == SLOT_EMPTY) { in msdosfs_findslot()
250 if (dep->deAttributes == ATTR_WIN95) { in msdosfs_findslot()
[all …]
/netbsd-src/external/gpl2/gmake/dist/
H A Drule.c84 register struct dep *dep; in count_implicit_rule_limits() local
97 for (dep = rule->deps; dep != 0; dep = dep->next) in count_implicit_rule_limits()
99 unsigned int len = strlen (dep->name); in count_implicit_rule_limits()
102 char *p = strrchr (dep->name, ']'); in count_implicit_rule_limits()
105 p = strrchr (dep->name, ':'); in count_implicit_rule_limits()
106 p2 = p != 0 ? strchr (dep->name, '%') : 0; in count_implicit_rule_limits()
108 char *p = strrchr (dep->name, '/'); in count_implicit_rule_limits()
109 char *p2 = p != 0 ? strchr (dep->name, '%') : 0; in count_implicit_rule_limits()
120 if (p == dep->name) in count_implicit_rule_limits()
122 if (p - dep->name > namelen) in count_implicit_rule_limits()
[all …]
H A Dimplicit.c263 struct dep *dep, *expl_d; in pattern_search() local
269 struct dep **d_ptr; in pattern_search()
488 for (dep = rule->deps; dep != 0; dep = dep->next) in pattern_search()
503 p = get_next_word (dep->name, &len); in pattern_search()
518 if (dep->need_2nd_expansion) in pattern_search()
810 dep = file->deps; in pattern_search()
811 while (dep != 0) in pattern_search()
813 struct dep *next = dep->next; in pattern_search()
814 free_dep (dep); in pattern_search()
815 dep = next; in pattern_search()
[all …]
H A Ddep.h36 struct dep struct
38 struct dep *next; argument
77 extern struct dep *alloc_dep PARAMS ((void));
78 extern void free_dep PARAMS ((struct dep *d));
79 extern struct dep *copy_dep_chain PARAMS ((const struct dep *d));
80 extern void free_dep_chain PARAMS ((struct dep *d));
82 extern struct dep *read_all_makefiles PARAMS ((char **makefiles));
84 extern int update_goal_chain PARAMS ((struct dep *goals));
85 extern void uniquize_deps PARAMS ((struct dep *));
H A Dmisc.c485 struct dep *
488 struct dep *d = (struct dep *) xmalloc (sizeof (struct dep)); in alloc_dep()
489 bzero ((char *) d, sizeof (struct dep)); in alloc_dep()
497 free_dep (struct dep *d) in free_dep()
511 struct dep *
512 copy_dep_chain (const struct dep *d) in copy_dep_chain()
514 register struct dep *c; in copy_dep_chain()
515 struct dep *firstnew = 0; in copy_dep_chain()
516 struct dep *lastnew = 0; in copy_dep_chain()
520 c = (struct dep *) xmalloc (sizeof (struct dep)); in copy_dep_chain()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Ddepend.c59 struct dependency *dep; in register_dependency() local
64 for (dep = dep_chain; dep != NULL; dep = dep->next) in register_dependency()
66 if (!filename_cmp (filename, dep->file)) in register_dependency()
70 dep = XNEW (struct dependency); in register_dependency()
71 dep->file = xstrdup (filename); in register_dependency()
72 dep->next = dep_chain; in register_dependency()
73 dep_chain = dep; in register_dependency()
186 struct dependency *dep; in print_dependencies() local
200 for (dep = dep_chain; dep != NULL; dep = dep->next) in print_dependencies()
201 wrap_output (f, dep->file, ' '); in print_dependencies()
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Ddepend.c59 struct dependency *dep; in register_dependency() local
64 for (dep = dep_chain; dep != NULL; dep = dep->next) in register_dependency()
66 if (!filename_cmp (filename, dep->file)) in register_dependency()
70 dep = XNEW (struct dependency); in register_dependency()
71 dep->file = xstrdup (filename); in register_dependency()
72 dep->next = dep_chain; in register_dependency()
73 dep_chain = dep; in register_dependency()
186 struct dependency *dep; in print_dependencies() local
200 for (dep = dep_chain; dep != NULL; dep = dep->next) in print_dependencies()
201 wrap_output (f, dep->file, ' '); in print_dependencies()
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_scheduler.c310 struct i915_dependency *dep, *p; in __i915_schedule() local
347 list_for_each_entry(dep, &dfs, dfs_link) { in __i915_schedule()
348 struct i915_sched_node *node = dep->signaler; in __i915_schedule()
361 GEM_BUG_ON(p == dep); /* no cycles! */ in __i915_schedule()
393 list_for_each_entry_safe_reverse(dep, p, &dfs, dfs_link) { in __i915_schedule()
394 INIT_LIST_HEAD(&dep->dfs_link); in __i915_schedule()
396 node = dep->signaler; in __i915_schedule()
489 i915_dependency_free(struct i915_dependency *dep) in i915_dependency_free() argument
491 kmem_cache_free(global.slab_dependencies, dep); in i915_dependency_free()
496 struct i915_dependency *dep, in __i915_sched_node_add_dependency() argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
H A Deh_ptr.cc167 __cxa_dependent_exception *dep = __get_dependent_exception_from_ue (exc); in __gxx_dependent_exception_cleanup() local
169 __get_refcounted_exception_header_from_obj (dep->primaryException); in __gxx_dependent_exception_cleanup()
178 __cxa_free_dependent_exception (dep); in __gxx_dependent_exception_cleanup()
197 __cxa_dependent_exception *dep = __cxa_allocate_dependent_exception (); in rethrow_exception() local
198 dep->primaryException = obj; in rethrow_exception()
203 dep->unexpectedHandler = get_unexpected (); in rethrow_exception()
205 dep->terminateHandler = get_terminate (); in rethrow_exception()
206 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(dep->unwindHeader.exception_class); in rethrow_exception()
207 dep->unwindHeader.exception_cleanup = __gxx_dependent_exception_cleanup; in rethrow_exception()
213 _Unwind_SjLj_RaiseException (&dep->unwindHeader); in rethrow_exception()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/libsupc++/
H A Deh_ptr.cc199 __cxa_dependent_exception *dep = __get_dependent_exception_from_ue (exc); in __gxx_dependent_exception_cleanup() local
201 __get_refcounted_exception_header_from_obj (dep->primaryException); in __gxx_dependent_exception_cleanup()
210 __cxa_free_dependent_exception (dep); in __gxx_dependent_exception_cleanup()
229 __cxa_dependent_exception *dep = __cxa_allocate_dependent_exception (); in rethrow_exception() local
230 dep->primaryException = obj; in rethrow_exception()
233 dep->unexpectedHandler = get_unexpected (); in rethrow_exception()
234 dep->terminateHandler = get_terminate (); in rethrow_exception()
235 __GXX_INIT_DEPENDENT_EXCEPTION_CLASS(dep->unwindHeader.exception_class); in rethrow_exception()
236 dep->unwindHeader.exception_cleanup = __gxx_dependent_exception_cleanup; in rethrow_exception()
242 _Unwind_SjLj_RaiseException (&dep->unwindHeader); in rethrow_exception()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dsched-deps.c94 init_dep_1 (dep_t dep, rtx_insn *pro, rtx_insn *con, enum reg_note type, ds_t ds) in init_dep_1() argument
96 DEP_PRO (dep) = pro; in init_dep_1()
97 DEP_CON (dep) = con; in init_dep_1()
98 DEP_TYPE (dep) = type; in init_dep_1()
99 DEP_STATUS (dep) = ds; in init_dep_1()
100 DEP_COST (dep) = UNKNOWN_DEP_COST; in init_dep_1()
101 DEP_NONREG (dep) = 0; in init_dep_1()
102 DEP_MULTIPLE (dep) = 0; in init_dep_1()
103 DEP_REPLACE (dep) = NULL; in init_dep_1()
104 dep->unused = 0; in init_dep_1()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dsched-deps.cc94 init_dep_1 (dep_t dep, rtx_insn *pro, rtx_insn *con, enum reg_note type, ds_t ds) in init_dep_1() argument
96 DEP_PRO (dep) = pro; in init_dep_1()
97 DEP_CON (dep) = con; in init_dep_1()
98 DEP_TYPE (dep) = type; in init_dep_1()
99 DEP_STATUS (dep) = ds; in init_dep_1()
100 DEP_COST (dep) = UNKNOWN_DEP_COST; in init_dep_1()
101 DEP_NONREG (dep) = 0; in init_dep_1()
102 DEP_MULTIPLE (dep) = 0; in init_dep_1()
103 DEP_REPLACE (dep) = NULL; in init_dep_1()
104 dep->unused = 0; in init_dep_1()
[all …]
/netbsd-src/external/gpl2/gmake/dist/tests/scripts/options/
H A Dsymlinks18 # Set up a symlink sym -> dep
19 # We'll make both dep and targ older than sym
22 &utouch(-10, 'dep');
24 symlink("../$dirnm/dep", 'sym');
32 # Now update dep; in all cases targ should be out of date.
33 &touch('dep');
42 # Add in a new link between sym and dep. Be sure it's newer than targ.
44 rename('dep', 'dep1');
45 symlink('dep1', 'dep');
52 rmfiles('targ', 'dep', 'sym', 'dep1');
[all …]
/netbsd-src/external/mit/isl/dist/
H A Disl_flow.c208 struct isl_labeled_map *dep; member
434 struct isl_flow *dep; in isl_flow_alloc() local
440 dep = isl_calloc_type(ctx, struct isl_flow); in isl_flow_alloc()
441 if (!dep) in isl_flow_alloc()
445 dep->dep = isl_calloc_array(ctx, struct isl_labeled_map, n); in isl_flow_alloc()
446 if (n && !dep->dep) in isl_flow_alloc()
449 dep->n_source = n; in isl_flow_alloc()
455 dep->dep[2 * i].map = isl_map_empty(space); in isl_flow_alloc()
456 dep->dep[2 * i + 1].map = isl_map_copy(dep->dep[2 * i].map); in isl_flow_alloc()
457 dep->dep[2 * i].data = acc->source[i].data; in isl_flow_alloc()
[all …]
/netbsd-src/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_link.c133 prepare_elf32(dtrace_hdl_t *dtp, const dof_hdr_t *dof, dof_elf32_t *dep) in prepare_elf32() argument
175 dep->de_strlen = strtabsz; in prepare_elf32()
176 dep->de_nrel = count; in prepare_elf32()
177 dep->de_nsym = count + 1; /* the first symbol is always null */ in prepare_elf32()
180 dep->de_strlen += sizeof (DOFLAZYSTR); in prepare_elf32()
181 dep->de_nsym++; in prepare_elf32()
183 dep->de_strlen += sizeof (DOFSTR); in prepare_elf32()
184 dep->de_nsym++; in prepare_elf32()
187 if ((dep->de_rel = calloc(dep->de_nrel, in prepare_elf32()
188 sizeof (dep->de_rel[0]))) == NULL) { in prepare_elf32()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/util/
H A Dadd-depends.pl184 my $dep = $line;
188 if ($dep =~ s|^\Q$abs_srcdir_shaved\E([\.>\]])?|$srcdir_shaved$1|i) {
191 $depconv_cache{$line} = $dep;
239 my $dep = $tail;
243 if ($dep =~ s|^\Q$abs_srcdir\E\\|\$(SRCDIR)\\|i) {
246 $depconv_cache{$tail} = $dep;
288 my $dep = $tail;
292 if ($dep =~ s|^\Q$abs_srcdir\E\\|\$(SRCDIR)\\|i) {
295 $depconv_cache{$tail} = $dep;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemDepPrinter.cpp65 static InstTypePair getInstTypePair(MemDepResult dep) { in getInstTypePair()
66 if (dep.isClobber()) in getInstTypePair()
67 return InstTypePair(dep.getInst(), Clobber); in getInstTypePair()
68 if (dep.isDef()) in getInstTypePair()
69 return InstTypePair(dep.getInst(), Def); in getInstTypePair()
70 if (dep.isNonFuncLocal()) in getInstTypePair()
71 return InstTypePair(dep.getInst(), NonFuncLocal); in getInstTypePair()
72 assert(dep.isUnknown() && "unexpected dependence type"); in getInstTypePair()
73 return InstTypePair(dep.getInst(), Unknown); in getInstTypePair()

12345678910>>...39