Home
last modified time | relevance | path

Searched +full:test2 +full:. +full:zeros (Results 1 – 9 of 9) sorted by relevance

/dflybsd-src/tools/regression/nfsmmap/test2/
H A DMakefile1 PROG= test2
3 NFSSERVER?= herring.nlsystems.com
4 CLEANFILES= test2.zeros test2.good test2.data test2.scratch
6 all: test2 test2.zeros test2.good
7 @cp ${.OBJDIR}/test2.zeros ${.OBJDIR}/test2.data
9 ssh ${NFSSERVER} touch ${.OBJDIR}/test2.data; \
11 @cd ${.OBJDIR}; ${.OBJDIR}/test2
12 @if cmp -s ${.OBJDIR}/test2.data ${.OBJDIR}/test2.good && \
13 cmp -s ${.OBJDIR}/test2.scratch ${.OBJDIR}/test2.good ; then \
19 test2.zeros: test2.zeros.uu target
[all …]
H A Dtest2.c2 * $DragonFly: src/tools/regression/nfsmmap/test2/test2.c,v 1.2 2003/11/07 14:38:38 eirikn Exp $
5 #include <sys/types.h>
6 #include <sys/fcntl.h>
7 #include <sys/mman.h>
8 #include <unistd.h>
14 char zeros[4096]; in main() local
17 memset(zeros, 0, sizeof zeros); in main()
20 unlink("test2.data"); in main()
21 fd = open("test2.data", O_RDWR|O_CREAT, 0666); in main()
24 if (write(fd, zeros, sizeof zeros) < 0) in main()
[all …]
HDtest2.zeros.uu1 begin 644 test2.zeros
/dflybsd-src/sys/dev/netif/sn/
H A Dif_sn.c2 * Copyright (c) 1996 Gardner Buchanan <gbuchanan@shl.com>
3 * All rights reserved.
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
15 * This product includes software developed by Gardner Buchanan.
16 * 4. The name of Gardner Buchanan may not be used to endorse or promote
18 * permission.
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Difcvt.c1 /* If-conversion support.
4 Free Software Foundation, Inc.
6 This file is part of GCC.
11 any later version.
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
16 License for more details.
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dmatch.pd1 /* Match-and-simplify patterns for shared GENERIC and GIMPLE folding.
2 This file is consumed by genmatch which produces gimple-match.c
3 and generic-match.c from it.
5 Copyright (C) 2014-2018 Free Software Foundation, Inc.
6 Contributed by Richard Biener <rguenther@suse.de>
7 and Prathamesh Kulkarni <bilbotheelffriend@gmail.com>
9 This file is part of GCC.
14 version.
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
[all …]
H A Difcvt.c1 /* If-conversion support.
2 Copyright (C) 2000-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
9 any later version.
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/doc/
H A Drtl.texi3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
14 representation called Register Transfer Language. In this language, the
16 algebraic form that describes what the instruction does.
18 RTL is inspired by Lisp lists. It has both an internal form, made up of
20 in the machine description and in printed debugging dumps. The textual
21 form uses nested parentheses to indicate the pointers in the internal form.
24 * RTL Objects:: Expressions vs vectors vs strings vs integers.
25 * RTL Classes:: Categories of RTL expression objects, and their structure.
[all …]
H A Dmd.texi3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
13 (@file{.md} file) and a C header file of macro definitions.
15 The @file{.md} file for a target machine contains a pattern for each
17 that is worth telling the compiler about). It may also contain comments.
19 is inside a quoted string.
21 See the next chapter for information on the C header file.
24 * Overview:: How the machine description is used.
25 * Patterns:: How to write instruction patterns.
[all …]