Home
last modified time | relevance | path

Searched refs:new_dir (Results 1 – 10 of 10) sorted by relevance

/openbsd/src/games/atc/
Dinput.c275 pp->new_dir = p.new_dir; in getcommand()
332 p.new_dir = MAXDIR; in circle()
340 p.new_dir = p.dir - 1; in left()
341 if (p.new_dir < 0) in left()
342 p.new_dir += MAXDIR; in left()
350 p.new_dir = p.dir + 1; in right()
351 if (p.new_dir >= MAXDIR) in right()
352 p.new_dir -= MAXDIR; in right()
359 p.new_dir = p.dir - 2; in Left()
360 if (p.new_dir < 0) in Left()
[all …]
Dupdate.c110 dir_diff = pp->new_dir - pp->dir; in update()
114 if (pp->new_dir >= 0 && pp->new_dir < MAXDIR) { in update()
247 else if (pp->new_dir >= MAXDIR || pp->new_dir < 0) in command()
249 else if (pp->new_dir != pp->dir) in command()
251 "%d", dir_deg(pp->new_dir)); in command()
346 p.new_dir = p.dir = sp->exit[rnd2].dir; in addplane()
361 p.new_dir = p.dir = sp->airport[p.orig_no].dir; in addplane()
Dstruct.h88 int new_dir; member
/openbsd/src/gnu/llvm/lldb/examples/customization/pwd-cd-and-system/
Dutils.py26 new_dir = args.strip()
27 if not new_dir:
28 new_dir = os.path.expanduser('~')
29 elif new_dir == '-':
35 new_dir = Holder.prev_dir()
38 os.chdir(new_dir)
/openbsd/src/gnu/usr.bin/perl/Porting/
Dsync-with-cpan508 (my $new_dir = basename($new_file)) =~ s/$tail_pat\z//;
511 for my $file (find_type_f($new_dir)) {
533 FILE: for my $file ( find_type_f( $new_dir )) {
535 $file =~ s{^\Q$new_dir\E/}{};
570 remove_tree( $new_dir );
/openbsd/src/gnu/llvm/clang/utils/analyzer/
DSATestBuild.py787 new_dir = os.path.join(directory, OUTPUT_DIR_NAME)
791 new_list = glob.glob(new_dir + "/*")
797 new_list.remove(os.path.join(new_dir, LOG_DIR_NAME))
813 for ref_dir, new_dir in zip(ref_list, new_list):
814 assert(ref_dir != new_dir)
822 new_results = CmpRuns.ResultsDirectory(new_dir, patched_source)
/openbsd/src/lib/libcrypto/x509/
Dby_dir.c93 static int new_dir(X509_LOOKUP *lu);
101 .new_item = new_dir,
137 new_dir(X509_LOOKUP *lu) in new_dir() function
/openbsd/src/gnu/gcc/libcpp/
Dfiles.c1297 char *new_dir; in remap_filename() local
1318 new_dir = XNEWVEC (char, len + 1); in remap_filename()
1319 memcpy (new_dir, dir->name, dir->len); in remap_filename()
1320 memcpy (new_dir + dir->len, fname, p - fname + 1); in remap_filename()
1321 new_dir[len] = '\0'; in remap_filename()
1323 dir = make_cpp_dir (pfile, new_dir, dir->sysp); in remap_filename()
/openbsd/src/gnu/lib/libiberty/src/
Dvmsbuild.com25 $ set default 'new_dir'
/openbsd/src/gnu/llvm/lldb/source/Target/
DTarget.cpp4452 FileSpec new_dir = GetSaveJITObjectsDir(); in CheckJITObjectsDir() local
4453 if (!new_dir) in CheckJITObjectsDir()
4457 bool exists = instance.Exists(new_dir); in CheckJITObjectsDir()
4458 bool is_directory = instance.IsDirectory(new_dir); in CheckJITObjectsDir()
4459 std::string path = new_dir.GetPath(true); in CheckJITObjectsDir()