Searched refs:cpp (Results 201 - 225 of 364) sorted by relevance

1234567891011>>

/freebsd-10.2-release/contrib/bmake/
H A Dmkdeps.sh18 # cpp_c=/usr/lib/cpp
23 # If the variable 'cpp_$suffix' is set, we use it as our cpp in
36 # find cpp or an equivalent cc invocation to assign to 'cpp_c'.
87 # if /usr/lib/cpp or equivalent is available it is better than
95 cpp_c=$d/cpp
142 case "$cpp" in
148 # $cpp (eg. /usr/lib/cpp or cc -E) should produce output like:
151 $cpp $cpp_opts $cc_include $* 2>> $EF | egrep '^#.*\.h"' | sed 's,^#.*"\(.*\)".*,\1,' |
162 case "$cpp" i
[all...]
/freebsd-10.2-release/contrib/bmake/mk/sys/
H A DGeneric.mk5 .SUFFIXES: .out .a .ln .o .s .S .c .cc .cpp .cxx .C .F .f .r .y .l .cl .p .h
39 COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -traditional-cpp
58 CPP?= cpp
113 .cc .cpp .cxx .C:
115 .cc.o .cpp.o .cxx.o .C.o:
117 .cc.a .cpp.a .cxx.a .C.a:
H A DNetBSD.mk22 .SUFFIXES: .out .a .ln .o .s .S .c .cc .cpp .cxx .C .F .f .r .y .l .cl .p .h
35 COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -traditional-cpp
81 CPP?= cpp
140 .cc .cpp .cxx .C:
142 .cc.o .cpp.o .cxx.o .C.o:
144 .cc.a .cpp.a .cxx.a .C.a:
H A DOpenBSD.mk7 .SUFFIXES: .out .a .ln .o .s .S .c .cc .cpp .cxx .C .F .f .r .y .l .cl .p .h
29 COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -traditional-cpp
56 CPP?= cpp
115 .cc .cpp .cxx .C:
117 .cc.o .cpp.o .cxx.o .C.o:
119 .cc.a .cpp.a .cxx.a .C.a:
H A DIRIX.mk13 .SUFFIXES: .out .a .ln .o .s .S .c .cc .cpp .cxx .C .F .f .r .y .l .cl .p .h
26 COMPILE.S?= ${CC} ${AFLAGS} ${CPPFLAGS} -c -traditional-cpp
105 .cc .cpp .cxx .C:
107 .cc.o .cpp.o .cxx.o .C.o:
109 .cc.a .cpp.a .cxx.a .C.a:
/freebsd-10.2-release/gnu/usr.bin/cc/doc/
H A DMakefile10 INFO= gcc cpp gccint cppinternals
14 INFOENTRY_cpp= "* cpp: (cpp). The GNU C pre-processor."
34 cpp.info: cpp.texi fdl.texi cppenv.texi cppopts.texi gcc-common.texi \
/freebsd-10.2-release/lib/libc/nameser/
H A Dns_name.c521 const u_char **cpp, **lpp, *eob, *msg; local
528 lpp = cpp = NULL;
531 for (cpp = dnptrs; *cpp != NULL; cpp++)
533 lpp = cpp; /*%< end of list to search */
577 if (lastdnptr != NULL && cpp < lastdnptr - 1 &&
579 *cpp++ = dstp;
580 *cpp = NULL;
928 const u_char * const *cpp; local
981 decode_bitstring(const unsigned char **cpp, char *dn, const char *eom) argument
[all...]
/freebsd-10.2-release/libexec/atf/atf-check/
H A DMakefile34 SRCS= atf-check.cpp
/freebsd-10.2-release/libexec/atf/atf-sh/
H A DMakefile34 SRCS= atf-sh.cpp
/freebsd-10.2-release/gnu/usr.bin/cc/libcpp/
H A DMakefile12 LIB= cpp
/freebsd-10.2-release/usr.bin/atf/atf-sh/
H A DMakefile34 SRCS= atf-sh.cpp
/freebsd-10.2-release/usr.bin/clang/llc/
H A DMakefile8 SRCS= llc.cpp
/freebsd-10.2-release/usr.bin/clang/llvm-rtdyld/
H A DMakefile11 SRCS= llvm-rtdyld.cpp
/freebsd-10.2-release/contrib/groff/src/utils/indxbib/
H A DMakefile.sub9 $(srcdir)/indxbib.cpp
/freebsd-10.2-release/contrib/telnet/telnetd/
H A Dsys_term.c1124 char **cpp; local
1125 for (cpp = environ; *cpp; cpp++)
1126 argv = addarg(argv, *cpp);
1154 char **cpp; local
1166 for (cpp = argv; *cpp; cpp++)
1168 if (cpp
1207 char **cpp, **cpp2; local
[all...]
/freebsd-10.2-release/sys/dev/drm2/radeon/
H A Dr200.c319 track->cb[0].cpp = 1;
324 track->cb[0].cpp = 2;
327 track->cb[0].cpp = 4;
346 track->zb.cpp = 2;
354 track->zb.cpp = 4;
489 track->textures[i].cpp = 1;
501 track->textures[i].cpp = 2;
509 track->textures[i].cpp = 4;
513 track->textures[i].cpp = 1;
518 track->textures[i].cpp
[all...]
/freebsd-10.2-release/sys/xdr/
H A Dxdr.c498 * *cpp is a pointer to the bytes, *sizep is the count.
499 * If *cpp is NULL maxsize bytes are allocated
502 xdr_bytes(XDR *xdrs, char **cpp, u_int *sizep, u_int maxsize) argument
504 char *sp = *cpp; /* sp is the actual string pointer */
528 *cpp = sp = mem_alloc(nodesize);
542 *cpp = NULL;
614 * terminated by a NULL character. The parameter cpp references a
620 xdr_string(XDR *xdrs, char **cpp, u_int maxsize) argument
622 char *sp = *cpp; /* sp is the actual string pointer */
659 *cpp
684 xdr_wrapstring(XDR *xdrs, char **cpp) argument
[all...]
/freebsd-10.2-release/lib/libc/xdr/
H A Dxdr.c593 * *cpp is a pointer to the bytes, *sizep is the count.
594 * If *cpp is NULL maxsize bytes are allocated
597 xdr_bytes(xdrs, cpp, sizep, maxsize)
599 char **cpp;
603 char *sp = *cpp; /* sp is the actual string pointer */
627 *cpp = sp = mem_alloc(nodesize);
641 *cpp = NULL;
716 * terminated by a NULL character. The parameter cpp references a
722 xdr_string(xdrs, cpp, maxsize)
724 char **cpp;
[all...]
/freebsd-10.2-release/contrib/ncurses/misc/
H A Dncu-indent84 *.[ch]|*.cc|*.cpp)
/freebsd-10.2-release/contrib/atf/atf-c++/
H A Dpkg_config_test.sh82 cat >tp.cpp <<EOF
113 atf_check -s eq:0 -o empty -e empty ${cxx} ${cxxflags} -o tp.o -c tp.cpp
/freebsd-10.2-release/usr.bin/clang/lldb/
H A DMakefile13 SRCS= Driver.cpp \
14 Platform.cpp
/freebsd-10.2-release/contrib/llvm/lib/Support/
H A DRWMutex.cpp1 //===- RWMutex.cpp - Reader/Writer Mutual Exclusion Lock --------*- C++ -*-===//
123 #warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in Support/Mutex.cpp
H A DThreadLocal.cpp1 //===- ThreadLocal.cpp - Thread Local Data ----------------------*- C++ -*-===//
90 #warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 set in Support/ThreadLocal.cpp
/freebsd-10.2-release/contrib/netbsd-tests/share/mk/
H A Dt_test.sh76 cat >t_fake.cpp <<EOF
/freebsd-10.2-release/contrib/atf/atf-c/
H A Dh_build.h177 const char *cpp; member in struct:cpp_test
187 "cpp",
196 "cpp", "-o", "test.out", "test.c", NULL
202 "cpp -foo",
211 "cpp", "-foo", "-o", "test.out", "test.c", NULL
217 "cpp",
226 "cpp", "-f1", "-f2", "-f3", "-f4-f5", "-o", "test.out",
233 "cpp",
242 "cpp", "-o1", "-o2", "-o", "test.out", "test.c", NULL
248 "cpp",
[all...]

Completed in 218 milliseconds

1234567891011>>