Searched refs:SRC (Results 1 - 25 of 48) sorted by relevance

12

/external/clang/test/Frontend/Inputs/SystemHeaderPrefix/src/
H A Dwarn.h1 #if SRC
/external/dropbear/libtommath/
H A Dgen.pl10 open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
12 print OUT while <SRC>;
14 close SRC or die "Error closing $filename after reading: $!";
H A Ddep.pl25 open(SRC, "<$filename");
29 my $line = <SRC>;
36 while (<SRC>) {
44 close SRC;
55 open(SRC, "<$filename") or die "Can't open source file!\n";
65 while (<SRC>) {
85 close SRC;
H A Dpretty.build44 if (open(SRC, "<$tmp")) {
45 close SRC;
48 open( SRC, "<$filename" ) or die "Couldn't open $filename for reading: $!";
49 ++$lines while (<SRC>);
50 close SRC or die "Error closing $filename after reading: $!";
H A Dbooker.pl71 open(SRC,"<$m[1]") or die "Error:$srcline:Can't open source file $m[1]";
83 while (<SRC>) {
87 <SRC>;
91 while (<SRC>) {
117 close(SRC);
/external/dropbear/libtomcrypt/
H A Dfilter.pl8 open(SRC,"<$dst");
13 while (<SRC>) {
30 close SRC;
/external/bison/lib/
H A Dbbitset.h104 #define BITSET_VTABLE_(SRC) (SRC)->b.vtable
105 #define BITSET_CINDEX_(SRC) (SRC)->b.cindex
106 #define BITSET_CDATA_(SRC) (SRC)->b.cdata
107 #define BITSET_CSIZE_(SRC) (SRC)->b.csize
108 #define BITSET_NBITS_(SRC) (SRC)
[all...]
H A Dbitset.h178 /* Return size in bits of bitset SRC. */
179 #define bitset_size(SRC) BITSET_SIZE_ (SRC)
184 /* Return number of bits set in bitset SRC. */
185 #define bitset_count(SRC) BITSET_COUNT_ (SRC)
188 /* Return SRC == 0. */
189 #define bitset_empty_p(SRC) BITSET_EMPTY_P_ (SRC)
199 /* DST = SRC
[all...]
/external/compiler-rt/lib/tsan/output_tests/
H A Dtest_output.sh17 SRC=$1
20 OBJ=$SRC.o
21 EXE=$SRC.exe
22 $COMPILER $SRC $CFLAGS -c -o $OBJ
28 printf "%s\n" "$RES" | FileCheck $SRC
/external/dnsmasq/
H A DMakefile21 SRC = src macro
40 @cd $(SRC) && $(MAKE) \
46 rm -f *~ $(SRC)/*.mo contrib/*/*~ */*~ $(SRC)/*.pot
47 rm -f $(SRC)/*.o $(SRC)/dnsmasq.a $(SRC)/dnsmasq core */core
54 $(INSTALL) -m 755 $(SRC)/dnsmasq $(DESTDIR)$(BINDIR)
57 @cd $(SRC) && $(MAKE) \
63 cd ../$(SRC)
[all...]
/external/mesa3d/src/mesa/main/
H A Dmacros.h202 #define TEST_EQ_4UBV(DST, SRC) *((GLuint*)(DST)) == *((GLuint*)(SRC))
204 #define TEST_EQ_4UBV(DST, SRC) TEST_EQ_4V(DST, SRC)
208 #define COPY_4V( DST, SRC ) \
210 (DST)[0] = (SRC)[0]; \
211 (DST)[1] = (SRC)[1]; \
212 (DST)[2] = (SRC)[2]; \
213 (DST)[3] = (SRC)[3]; \
217 #define COPY_4V_CAST( DST, SRC, CAS
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dinstall.sh32 echo "usage: ${0} SRC DEST" >& 2
36 SRC=${1}
39 # Make sure that SRC is an absolute path and that it exists.
40 if [ -z "${SRC}" ] || [ "${SRC:0:1}" != "/" ] || [ ! -d "${SRC}" ] ; then
41 echo "${0}: source ${SRC} sanity check failed" >& 2
52 rsync -lrpt "${SRC}/" "${DEST}"
/external/valgrind/main/drd/scripts/
H A Ddownload-and-build-firefox7 SRC="$SRCDIR/mozilla"
9 BUILD="${SRC}-build"
42 if [ ! -e $SRC ]; then
47 . $SRC/browser/config/mozconfig
59 ${SRC}/configure
H A Ddownload-and-build-gcc13 SRC=$HOME/software/gcc-${GCC_VERSION}
14 BUILD=${SRC}-build
57 if [ ! -e $SRC ]; then
61 ${SRC}/configure \
/external/proguard/build/
H A Dbuild.sh19 SRC=src
43 javac -nowarn -Xlint:none -sourcepath "$SRC" -d "$CLASSES" \
44 "$SRC/$1.java" 2>&1 \
48 (cd "$SRC"; find $(dirname $1) -maxdepth 1 \
55 jar -cfm "$2" "$SRC/$(dirname $1)/MANIFEST.MF" -C "$CLASSES" $(dirname $1)
H A Dmakefile7 SRC = $(PROGUARD_HOME)/src macro
24 JAVAC_OPTIONS = -nowarn -Xlint:none -classpath $(CLASSPATH) -sourcepath $(SRC) -d $(CLASSES)
29 jar -cfm $(LIB)/$@.jar $(SRC)/$(dir $<)MANIFEST.MF \
69 $(shell find $(SRC)/$(dir $(1)) -maxdepth 1 \( -name \*.properties -o -name \*.png -o -name \*.gif -o -name \*.pro \) -printf $(CLASSES)/$(dir $(1))%P\\n)
81 $(CLASSES)/%.class: $(SRC)/%.java
85 cp $(subst $(CLASSES),$(SRC),$@) $@
/external/llvm/utils/buildit/
H A DGNUmakefile28 SRC = $(shell cd $(SRCROOT) && pwd | sed s,/private,,) macro
29 OBJROOT = $(SRC)/obj
64 $(SRC)/utils/buildit/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \
65 $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \
/external/openssh/regress/
H A Dssh-com.sh30 SRC=`dirname ${SCRIPT}`
44 HostKeyFile ${SRC}/dsa_ssh2.prv
45 PublicHostKeyFile ${SRC}/dsa_ssh2.pub
74 ${SSHKEYGEN} -if ${SRC}/dsa_ssh2.pub
H A Dscp.sh9 if diff -N ${SRC}/scp.sh ${SRC}/scp.sh 2>/dev/null; then
21 SRC=`dirname ${SCRIPT}`
22 cp ${SRC}/scp-ssh-wrapper.sh ${OBJ}/scp-ssh-wrapper.scp
H A Dtest-exec.sh59 SRC=`dirname ${SCRIPT}`
351 ${SRC}/ssh2putty.sh 127.0.0.1 $PORT $OBJ/rsa > \
353 ${SRC}/ssh2putty.sh 127.0.0.1 22 $OBJ/rsa >> \
362 echo "ProxyTelnetCommand=sh ${SRC}/sshd-log-wrapper.sh ${SSHD} ${TEST_SSH_LOGFILE} -i -f $OBJ/sshd_proxy" >> ${OBJ}/.putty/sessions/localhost_proxy
370 echo proxycommand ${SUDO} sh ${SRC}/sshd-log-wrapper.sh ${SSHD} ${TEST_SSH_LOGFILE} -i -f $OBJ/sshd_proxy
H A Dssh-com-client.sh30 SRC=`dirname ${SCRIPT}`
31 cp ${SRC}/dsa_ssh2.prv ${OBJ}/id.com
/external/webkit/Tools/android/flex-2.5.4a/MISC/Borland/
H A DMakefile93 SRC = $(BASESRC) scan.c macro
95 OBJS = $(SRC:.c=.obj)
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java30 public static final Attribute SRC = new AttributeImpl ("SRC"); field in class:Attribute
/external/iproute2/examples/
H A Dcbq.init-v0.7.3811 SRC=${rule%%,*}; DST=${rule##*,}
812 [ "$SRC" = "$rule" ] && SRC=""
825 if [ -n "$SRC" ]; then
826 SADDR=${SRC%%:*}; STEMP=${SRC##*:}
827 [ "$SADDR" = "$SRC" ] && STEMP=""
/external/libpcap/
H A Dtokdefs.h33 SRC = 259, enumerator in enum:yytokentype
137 #define SRC 259 macro

Completed in 457 milliseconds

12