Home
last modified time | relevance | path

Searched refs:direct (Results 1 – 25 of 454) sorted by relevance

12345678910>>...19

/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DLDSDIRInstructions.td34 class LDSDIR_getIns<bit direct> {
35 dag ret = !if(direct,
41 class LDSDIR_Common<string opName, string asm = "", bit direct> : InstSI<
43 LDSDIR_getIns<direct>.ret,
60 let is_direct = direct;
63 class LDSDIR_Pseudo<string opName, bit direct> :
64 LDSDIR_Common<opName, "", direct>,
70 class LDSDIR_getAsm<bit direct> {
71 string ret = !if(direct,
/openbsd-src/gnu/usr.bin/perl/win32/include/
H A Ddirent.h19 #define DIRSIZ(rp) (sizeof(struct direct))
22 #define DIRENT direct
25 typedef struct direct struct
39 struct direct dirstr; /* directory structure to return */ argument
46 struct direct * win32_readdir(DIR *dirp);
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Dathlon.md20 (define_attr "athlon_decode" "direct,vector,double"
30 (const_string "direct")))
69 (define_reservation "athlon-direct" "nothing,
72 ;; Double instructions behaves like two direct instructions.
136 "athlon-direct,athlon-ieu")
147 "athlon-direct,athlon-agu,athlon-store")
169 "athlon-direct,athlon-agu,nothing")
233 (and (eq_attr "athlon_decode" "direct")
236 "athlon-direct,athlon-ieu")
247 "athlon-direct,athlon-load")
[all …]
/openbsd-src/sbin/restore/
H A Ddirs.c118 static void dcvt(struct odirect *, struct direct *);
123 static void putent(struct direct *);
126 static struct direct *searchdir(ino_t, char *);
139 struct direct nulldir; in extractdirs()
222 struct direct *dp; in treescan()
283 struct direct *
287 struct direct *dp; in pathsearch()
308 static struct direct *
311 struct direct *dp; in searchdir()
334 struct direct cvtbuf; in putdir()
[all …]
H A Dextern.h78 struct direct *pathsearch(const char *);
87 struct direct *rst_readdir(RST_DIR *);
/openbsd-src/gnu/usr.bin/cvs/vms/
H A Dndir.c88 static struct direct *vms_low_readdir ();
179 if (vms_low_readdir ((DIR *) dirp) == (struct direct *) -1)
208 struct direct dir_static; /* simulated directory contents */
210 static struct direct *
230 return (struct direct *) -1;
285 dir_static.d_reclen = sizeof (struct direct)
296 struct direct *
300 register struct direct *dp;
308 if (dp == 0 || dp == (struct direct *) -1)
H A Dndir.h36 struct direct /* data from readdir() */ struct
53 extern struct direct *vms_readdir(); argument
/openbsd-src/sys/ufs/ufs/
H A Ddir.h79 struct direct { struct
113 ((offsetof(struct direct, d_name) + \
114 ((namlen)+1)*sizeof(((struct direct *)0)->d_name[0]) + 3) & ~3)
116 ((sizeof(struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
H A Dufs_extern.h37 struct direct;
110 int ufs_dirbadentry(struct vnode *, struct direct *, int);
112 struct direct *);
113 int ufs_direnter(struct vnode *, struct vnode *, struct direct *,
H A Dufs_lookup.c107 struct direct *ep; /* the current directory entry */ in ufs_lookup()
174 slotneeded = (sizeof(struct direct) - MAXNAMLEN + in ufs_lookup()
217 ep = (struct direct *)((char *)bp->b_data + in ufs_lookup()
278 ep = (struct direct *)((char *)bp->b_data + entryoffsetinblock); in ufs_lookup()
612 ufs_dirbadentry(struct vnode *vdp, struct direct *ep, int entryoffsetinblock) in ufs_dirbadentry()
650 struct direct *newdirp) in ufs_makedirentry()
674 ufs_direnter(struct vnode *dvp, struct vnode *tvp, struct direct *dirp, in ufs_direnter()
683 struct direct *ep, *nep; in ufs_direnter()
763 ep = (struct direct *)dirbuf; in ufs_direnter()
767 nep = (struct direct *)(dirbuf + loc); in ufs_direnter()
[all …]
H A Ddirhash.h124 void ufsdirhash_add(struct inode *, struct direct *, doff_t);
125 void ufsdirhash_remove(struct inode *, struct direct *, doff_t);
126 void ufsdirhash_move(struct inode *, struct direct *, doff_t, doff_t);
H A Dufs_dirhash.c67 doff_t ufsdirhash_getprev(struct direct *dp, doff_t offset);
107 struct direct *ep; in ufsdirhash_build()
212 ep = (struct direct *)((char *)bp->b_data + (pos & bmask)); in ufsdirhash_build()
314 struct direct *dp; in ufsdirhash_lookup()
406 dp = (struct direct *)(bp->b_data + (offset & bmask)); in ufsdirhash_lookup()
481 struct direct *dp; in ufsdirhash_findfree()
524 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufsdirhash_findfree()
543 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufsdirhash_findfree()
594 ufsdirhash_add(struct inode *ip, struct direct *dirp, doff_t offset) in ufsdirhash_add()
639 ufsdirhash_remove(struct inode *ip, struct direct *dirp, doff_t offset) in ufsdirhash_remove()
[all …]
/openbsd-src/sbin/fsck_ffs/
H A Ddir.c58 static struct direct *fsck_readdir(struct inodesc *);
95 struct direct *dp; in dirscan()
115 idesc->id_dirp = (struct direct *)dbuf; in dirscan()
132 static struct direct *
135 struct direct *dp, *ndp; in fsck_readdir()
143 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
150 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
166 dp = (struct direct *)(bp->b_un.b_buf + dploc); in fsck_readdir()
171 ndp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
181 dp = (struct direct *)(bp->b_un.b_buf + dploc); in fsck_readdir()
[all …]
/openbsd-src/gnu/usr.bin/cvs/windows-NT/
H A Dndir.c119 struct direct *
122 static struct direct dp; in readdir()
125 return (struct direct *)0; in readdir()
186 struct direct *entry = (struct direct *)0; in main()
H A Dndir.h28 struct direct struct
54 extern struct direct *readdir (DIR *); argument
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020326-1.c6 extern void direct (void);
10 direct (); in foo()
/openbsd-src/sys/sys/
H A Ddir.h53 #define direct dirent macro
63 ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
/openbsd-src/sys/lib/libsa/
H A Dufs2.c362 struct direct *dp, *edp; in search_directory()
374 dp = (struct direct *)buf; in search_directory()
375 edp = (struct direct *)(buf + buf_size); in search_directory()
392 dp = (struct direct *)((char *)dp + dp->d_reclen); in search_directory()
698 struct direct *dp, *edp; in ufs2_readdir()
716 dp = (struct direct *)buf; in ufs2_readdir()
717 edp = (struct direct *)(buf + buf_size); in ufs2_readdir()
719 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufs2_readdir()
H A Dufs.c366 struct direct *dp, *edp; in search_directory()
378 dp = (struct direct *)buf; in search_directory()
379 edp = (struct direct *)(buf + buf_size); in search_directory()
396 dp = (struct direct *)((char *)dp + dp->d_reclen); in search_directory()
702 struct direct *dp, *edp; in ufs_readdir()
720 dp = (struct direct *)buf; in ufs_readdir()
721 edp = (struct direct *)(buf + buf_size); in ufs_readdir()
723 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufs_readdir()
/openbsd-src/sys/arch/landisk/stand/xxboot/
H A Dufs12.c395 struct direct *dp, *edp; in search_directory()
412 dp = (struct direct *)buf; in search_directory()
413 edp = (struct direct *)(buf + buf_size); in search_directory()
430 dp = (struct direct *)((char *)dp + dp->d_reclen); in search_directory()
789 struct direct *dp, *edp; in ufs12_readdir()
812 dp = (struct direct *)buf; in ufs12_readdir()
813 edp = (struct direct *)(buf + buf_size); in ufs12_readdir()
815 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufs12_readdir()
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-tic30.c238 } direct; member
428 current_op->direct.label = token + 1; in tic30_operand()
432 retval = expression (&current_op->direct.direct_expr); in tic30_operand()
435 current_op->direct.direct_expr.X_op); in tic30_operand()
437 (long) current_op->direct.direct_expr.X_add_number); in tic30_operand()
442 if (current_op->direct.direct_expr.X_op == O_constant) in tic30_operand()
444 current_op->direct.address = in tic30_operand()
445 current_op->direct.direct_expr.X_add_number; in tic30_operand()
446 current_op->direct.resolved = 1; in tic30_operand()
452 current_op->direct.address = atoi (token + 1); in tic30_operand()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-tic30.c216 } direct; member
551 if (insn.operand_type[am_insn]->direct.resolved == 1)
554 insn.opcode |= (insn.operand_type[am_insn]->direct.address & 0x0000FFFF);
560 …fix_new_exp (frag_now, p + 2 - (frag_now->fr_literal), 2, &insn.operand_type[am_insn]->direct.dire…
702 if (insn.operand_type[0]->direct.resolved == 1)
705 insn.opcode |= (insn.operand_type[0]->direct.address & 0x00FF0000) >> 16;
712 …fix = fix_new_exp (frag_now, p + 3 - (frag_now->fr_literal), 1, &insn.operand_type[0]->direct.dire…
1212 current_op->direct.label = token + 1;
1216 retval = expression (&current_op->direct.direct_expr);
1217 debug ("Expression type: %d\n", current_op->direct.direct_expr.X_op);
[all …]
/openbsd-src/gnu/usr.bin/cvs/contrib/
H A Ddirfns.shar19 X.B struct direct
129 X.I direct
134 Xstruct direct {
158 X.I direct
232 X * a struct direct at the front of it, containing its inode number,
257 Xstruct direct {
266 X * the directory entry. This requires the amount of space in struct direct
272 X ((sizeof (struct direct) - (MAXNAMLEN+1)) + (((dp)->d_namlen+1 + 3) &~ 3))
288 Xextern struct direct *readdir();
394 Xstruct direct *
[all …]
/openbsd-src/gnu/usr.bin/perl/ext/Hash-Util-FieldHash/t/
H A D11_hashassign.t98 fieldhash my %direct;
100 %direct = ('Camel', 2, 'Dromedary', 1);
104 is_deeply (\%slow, \%direct, "direct list assignment to hash");
105 %direct = (Camel => 2, 'Dromedary' => 1);
106 is_deeply (\%slow, \%direct, "direct list assignment to hash using =>");
109 ok (!eq_hash (\%direct, \%slow), "different hashes should not be equal!");
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i386/
H A Dathlon.md20 (define_attr "athlon_decode" "direct,vector"
30 (const_string "direct")))
56 (eq_attr "athlon_decode" "direct"))
61 (eq_attr "athlon_decode" "direct"))
153 (eq_attr "athlon_decode" "direct")))

12345678910>>...19