Searched refs:TMP (Results 1 - 15 of 15) sorted by relevance

/external/dropbear/libtomcrypt/
H A Dfilter.pl10 open(TMP,">tmp.delme");
15 print TMP $_;
18 print TMP $_;
22 print TMP $_;
25 print TMP $_;
29 close TMP;
/external/libpcap/
H A Dmkdep54 TMP=/tmp/mkdep$$
56 trap 'rm -f $TMP ; exit 1' 1 2 3 13 15
60 sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP
62 cat << _EOF_ >> $TMP
99 }' >> $TMP
101 cat << _EOF_ >> $TMP
107 cp $TMP $MAKE
108 rm -f ${MAKE}.bak $TMP
/external/tcpdump/
H A Dmkdep54 TMP=/tmp/mkdep$$
56 trap 'rm -f $TMP ; exit 1' 1 2 3 13 15
60 sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP
62 cat << _EOF_ >> $TMP
99 }' >> $TMP
101 cat << _EOF_ >> $TMP
107 cp $TMP $MAKE
108 rm -f ${MAKE}.bak $TMP
/external/e2fsprogs/contrib/
H A Dbuild-rpm16 # ensure that $TMP is set to something
17 TMP=${TMP:-'/tmp'}
20 tmpdir=`mktemp -d ${RPM_TMPDIR:-$TMP}/rpmtmp.XXXXXX`
39 --define "_tmpdir ${RPM_TMPDIR:-$TMP}" \
/external/e2fsprogs/lib/ss/
H A Dmk_cmds.sh.in44 TMP="ct$$.c"
52 | ${AWK} -f "${DIR}/ct_c.awk" "rootname=${ROOT}" "outfile=${TMP}" -
54 if grep "^#__ERROR_IN_FILE" "${TMP}" > /dev/null; then
55 rm "${TMP}"
59 mv -f "${TMP}" "${BASE}.c"
/external/webkit/Tools/Scripts/
H A Drun-webkit-nightly.cmd2 set script=%TMP%\run-webkit-nightly2.cmd
H A Dparallelcl175 open(TMP, '>:raw:encoding(UTF16-LE):crlf:utf8', $tmpFile) or die "Couldn't open $tmpFile";
176 print TMP "$options\n";
178 print TMP "$file\n";
180 close(TMP);
/external/qemu-pc-bios/bochs/bios/
H A Dacpi-dsdt.dsl263 Name (TMP, ResourceTemplate ()
280 Return (TMP)
295 Name (TMP, ResourceTemplate ()
299 Return (TMP)
467 CreateWordField (PRR0, 0x01, TMP)
471 ShiftLeft (One, Local0, TMP)
475 Store (Zero, TMP)
481 CreateWordField (Arg0, 0x01, TMP)
482 FindSetRightBit (TMP, Local0)
514 CreateWordField (PRR0, 0x01, TMP)
[all...]
/external/icu4c/test/intltest/
H A Dloctest.cpp2217 UChar TMP[4]; local
2229 resLen = ucurr_forLocaleAndDate("eo_AM", date, index, TMP, 4, &status);
2241 resLen = ucurr_forLocaleAndDate("eo_AM", date, index, TMP, 4, &status);
2242 tempStr.setTo(TMP);
2254 resLen = ucurr_forLocaleAndDate("eo_AM", date, index, TMP, 4, &status);
2255 tempStr.setTo(TMP);
2267 resLen = ucurr_forLocaleAndDate("eo_AM", date, index, TMP, 4, &status);
2268 tempStr.setTo(TMP);
2281 resLen = ucurr_forLocaleAndDate("eo_AD", date, 1, TMP, 4, &status);
2282 tempStr.setTo(TMP);
[all...]
H A Dnumfmtst.cpp1730 UChar TMP[4]; local
1740 ucurr_forLocale("en_US", TMP, 4, &status);
1741 if (u_strcmp(YEN, TMP) != 0) {
1745 ucurr_forLocale("en_US_EURO", TMP, 4, &status);
1746 if (u_strcmp(QQQ, TMP) != 0) {
1750 int32_t fallbackLen = ucurr_forLocale("en_XX_BAR", TMP, 4, &status);
1760 ucurr_forLocale("en_US", TMP, 4, &status);
1761 if (u_strcmp(USD, TMP) != 0) {
1766 ucurr_forLocale("en_US_EURO", TMP, 4, &status);
1767 if (u_strcmp(QQQ, TMP) !
[all...]
/external/openssl/crypto/bn/asm/
H A Dmodexp512-x86_64.pl86 my ($x, $DST, $SRC2, $ASRC, $OP, $TMP)=@_;
98 mov %rdx, $TMP
105 add $TMP, $X[$i]
119 my ($x, $DST, $SRC2, $OP, $TMP)=@_;
130 mov %rdx, $TMP
136 add $TMP, $X[$i]
364 #MULADD_256x512 MACRO pDst, pA, pB, OP, TMP, X7, X6, X5, X4, X3, X2, X1, X0
375 my ($pDst, $pA, $pB, $OP, $TMP, $X)=@_;
379 &MULSTEP_512_ADD($X, "(+8*0)($pDst)", $pB, $pA, $OP, $TMP);
385 &MULSTEP_512($X, "(+8*1)($pDst)", $pB, $OP, $TMP);
[all...]
/external/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp190 unsigned TMP = 0; local
193 TMP *= 10;
194 TMP += P[0] - '0';
199 N = TMP;
/external/linux-tools-perf/config/
H A Dutilities.mak185 'TMP="$(OUTPUT)$(TMPOUT).$$$$"; \
187 $(CC) -x c - $(2) -o "$$TMP" > /dev/null 2>&1 && echo y; \
188 rm -f "$$TMP"')
/external/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm354 ;# RES = abs( A-B), trashes TMP
355 .macro Abs RES, TMP, A, B
357 vsububs \TMP, \B, \A
358 vor \RES, \RES, \TMP
361 ;# RES = Max( RES, abs( A-B)), trashes TMP
362 .macro max_abs RES, TMP, A, B
363 vsububs \TMP, \A, \B
364 vmaxub \RES, \RES, \TMP
365 vsububs \TMP, \B, \A
366 vmaxub \RES, \RES, \TMP
[all...]
H A Dfilter_altivec.asm58 .macro Msum Re, Ro, V, T, TMP
60 vmuleub \TMP, \V, \T ;# trashes v8
61 vadduhm \Re, \Re, \TMP ;# Re = evens, saturation unnecessary
62 vmuloub \TMP, \V, \T
63 vadduhm \Ro, \Ro, \TMP ;# Ro = odds

Completed in 269 milliseconds