/external/dropbear/libtommath/ |
gen.pl | 10 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: $!";
|
pretty.build | 44 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: $!";
|
dep.pl | 25 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;
|
/external/dropbear/libtomcrypt/ |
filter.pl | 8 open(SRC,"<$dst"); 13 while (<SRC>) { 30 close SRC;
|
/external/bison/lib/ |
bbitset.h | 104 #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)->b.n_bit [all...] |
bitset.h | 178 /* 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/dnsmasq/ |
Makefile | 21 SRC = src 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) [all...] |
/external/mesa3d/src/mesa/main/ |
macros.h | 202 #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, CAST ) [all...] |
/external/chromium/chrome/browser/ui/cocoa/ |
install.sh | 32 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/ |
download-and-build-firefox | 7 SRC="$SRCDIR/mozilla" 9 BUILD="${SRC}-build" 42 if [ ! -e $SRC ]; then 47 . $SRC/browser/config/mozconfig 59 ${SRC}/configure
|
download-and-build-gcc | 13 SRC=$HOME/software/gcc-${GCC_VERSION} 14 BUILD=${SRC}-build 57 if [ ! -e $SRC ]; then 61 ${SRC}/configure \
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/ |
Makefile | 7 SRC=\ 12 OBJ=$(SRC:.c=.o) 36 $(SRC): $(HSRC)
|
/development/build/tools/ |
mk_sdk_repo_xml.sh | 150 SRC=$1 156 VALUE=$( grep "^$SRC=" "$PROPS" | cut -d = -f 2 | tr ' ' '@' | tr -d '\r' ) 223 SRC="$1" 225 if [[ "${SRC/:/}" != "$SRC" ]]; then 226 DST="${SRC/*:/}" 227 SRC="${SRC/:*/}" 229 [[ ! -f "$SRC" ]] && error "Missing file for archive $TYPE/$OS: $SRC" [all...] |
/frameworks/base/graphics/java/android/graphics/ |
PorterDuff.java | 26 SRC (1),
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/ |
Makefile | 7 SRC=\ 11 SRC += $(GTTOOLSSRCDIR)/OMX_Common_Utils.c 16 OBJ=$(SRC:.c=.o) 56 $(SRC): $(HSRC)
|
/sdk/eclipse/scripts/ |
create_all_symlinks.sh | 235 for SRC in $CP_FILES; do 236 if [[ "${SRC:0:2}" == "@:" ]]; then 237 DEST="${SRC:2}" 241 if [[ ! -f "$SRC" ]]; then 242 ORIG_SRC="$SRC" 243 SRC="out/host/$PLATFORM/framework/$SRC.jar" 245 if [[ -f "$SRC" ]]; then 250 cpfile "$SRC" "$DEST"
|
/external/proguard/build/ |
build.sh | 19 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)
|
makefile | 7 SRC = $(PROGUARD_HOME)/src 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),$@) $@
|
/prebuilts/tools/common/proguard/proguard4.7/build/ |
build.sh | 19 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)
|
makefile | 7 SRC = $(PROGUARD_HOME)/src 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),$@) $@
|
/ndk/build/tools/ |
dev-platform-compress.sh | 34 file1 = \$SRC/android-3/foo 35 file2 = \$SRC/android-4/foo 36 file3 = \$SRC/android-5/foo 45 Repeat for all files under \$SRC/android-N for increasing values of N. 49 register_var_option "--src-dir=<path>" SRCDIR "Specify source platforms directory"
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/ |
Makefile | 7 SRC=\ 14 OBJ=$(SRC:.c=.o) 53 $(SRC): $(HSRC)
|
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/ |
Makefile | 7 SRC=\ 14 OBJ=$(SRC:.c=.o) 53 $(SRC): $(HSRC)
|
/hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/ |
Makefile | 7 SRC=\ 14 OBJ=$(SRC:.c=.o) 51 $(SRC): $(HSRC)
|
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/ |
Makefile | 11 SRC=\ 18 OBJ=$(SRC:.c=.o) 55 $(SRC): $(HSRC)
|