Searched refs:tmp (Results 51 - 75 of 2163) sorted by relevance

1234567891011>>

/external/clang/test/
H A DMakefile41 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
42 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
43 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> lit.tmp
44 @$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> lit.tmp
45 @$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> lit.tmp
46 @$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> lit.tmp
47 @$(ECHOPATH) s=@CLANG_TOOLS_DIR@=$(ToolDir)=g >> lit.tmp
48 @$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> lit.tmp
49 @$(ECHOPATH) s=@LLVM_HOST_TRIPLE@=$(HOST_TRIPLE)=g >> lit.tmp
50 @$(ECHOPATH) s=@ENABLE_CLANG_ARCMT@=$(ENABLE_CLANG_ARCMT)=g >> lit.tmp
[all...]
/external/elfutils/src/tests/
H A Drun-addr2line-i-lex-test.sh38 /tmp/x.cpp:5
42 /tmp/x.cpp:5
46 /tmp/x.cpp:5
47 /tmp/x.cpp:12
51 /tmp/x.cpp:5
52 /tmp/x.cpp:12
58 /tmp/x.cpp:5
60 /tmp/x.cpp:5
61 foobar inlined at /tmp/x.cpp:12 in _Z3foov
62 /tmp/
[all...]
H A Dcoverage.sh12 tmp=$d-data
22 gawk "/$d.$fc/ { getline; co=gensub(/.*:(.*)% .*/, \"\\\\1\", \"g\"); co=co+0.0; li=\$4+0; printf \"%-35s %6.2f %5d\n\", \"$d/$fc\", co, li } " >> $tmp
28 if [ -f $tmp ]; then
29 gawk "{ copct=\$2; co=(\$3*copct)/100; toco+=(co+0); toli += (\$3+0); } END { printf \"%-12s %6.2f%% covered unused files: %3d\n\", \"$d\", (toco*100)/toli, \"$unused\" }" $tmp
30 rm -f $tmp
/external/webrtc/src/common_audio/signal_processing/
H A Dauto_corr_to_refl_coef.c23 WebRtc_Word16 tmp; local
38 tmp = WebRtcSpl_NormW32(*R);
39 *acfptr = (WebRtc_Word16)((*rptr++ << tmp) >> 16);
45 *acfptr = (WebRtc_Word16)((*rptr++ << tmp) >> 16);
53 tmp = WEBRTC_SPL_ABS_W16(*p1ptr);
54 if (*P < tmp)
62 // Division: WebRtcSpl_div(tmp, *P)
64 if (tmp != 0)
66 L_num = tmp;
90 tmp
[all...]
/external/aac/libFDK/include/
H A Dscramble.h125 FIXP_SGL tmp; local
126 tmp=x[2*m];
128 x[2*j]=tmp;
130 tmp=x[2*m+1];
132 x[2*j+1]=tmp;
152 FIXP_DBL tmp; local
153 tmp=x[2*m];
155 x[2*j]=tmp;
157 tmp=x[2*m+1];
159 x[2*j+1]=tmp;
[all...]
H A Ddct.h109 void dct_II(FIXP_DBL *pDat, FIXP_DBL *tmp, int size, int *pDat_e);
121 void dct_III(FIXP_DBL *pDat, FIXP_DBL *tmp, int size, int *pDat_e);
/external/skia/src/core/
H A DSkLineClipper.cpp107 SkPoint tmp[2]; local
108 memcpy(tmp, src, sizeof(tmp));
111 if (tmp[index0].fY < clip.fTop) {
112 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop);
114 if (tmp[index1].fY > clip.fBottom) {
115 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
118 if (tmp[0].fX < tmp[1].fX) {
127 if ((tmp[index
209 SkPoint tmp[2]; local
[all...]
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DLessThanBenchmark.java65 int tmp = 0;
71 tmp += z + ((x - y) >>> (Integer.SIZE - 1));
73 return tmp;
77 int tmp = 0;
83 tmp += z + IntMath.lessThanBranchFree(x, y);
85 return tmp;
89 int tmp = 0;
95 tmp += z + ((x < y) ? 1 : 0);
97 return tmp;
101 int tmp
[all...]
H A DBigIntegerMathRoundingBenchmark.java55 int tmp = 0;
58 tmp += BigIntegerMath.log2(positive[j], mode);
60 return tmp;
64 int tmp = 0;
67 tmp += BigIntegerMath.log10(positive[j], mode);
69 return tmp;
73 int tmp = 0;
76 tmp += BigIntegerMath.sqrt(positive[j], mode).intValue();
78 return tmp;
82 int tmp
[all...]
H A DDoubleMathBenchmark.java48 long tmp = 0;
51 tmp += Double.doubleToRawLongBits(DoubleMath.log2(positiveDoubles[j]));
53 return tmp;
57 long tmp = 0;
60 tmp += Double.doubleToRawLongBits(DoubleMath.factorial(factorials[j]));
62 return tmp;
66 int tmp = 0;
70 tmp++;
73 return tmp;
77 int tmp
[all...]
H A DDoubleMathRoundingBenchmark.java54 int tmp = 0;
57 tmp += DoubleMath.roundToInt(doubleInIntRange[j], mode);
59 return tmp;
63 long tmp = 0;
66 tmp += DoubleMath.roundToLong(doubleInLongRange[j], mode);
68 return tmp;
72 int tmp = 0;
75 tmp += DoubleMath.roundToBigInteger(positiveDoubles[j], mode).intValue();
77 return tmp;
81 int tmp
[all...]
H A DIntMathRoundingBenchmark.java55 int tmp = 0;
58 tmp += IntMath.log2(positive[j], mode);
60 return tmp;
64 int tmp = 0;
67 tmp += IntMath.log10(positive[j], mode);
69 return tmp;
73 int tmp = 0;
76 tmp += IntMath.sqrt(positive[j], mode);
78 return tmp;
82 int tmp
[all...]
H A DLongMathRoundingBenchmark.java55 int tmp = 0;
58 tmp += LongMath.log2(positive[j], mode);
60 return tmp;
64 int tmp = 0;
67 tmp += LongMath.log10(positive[j], mode);
69 return tmp;
73 int tmp = 0;
76 tmp += LongMath.sqrt(positive[j], mode);
78 return tmp;
82 int tmp
[all...]
H A DIntMathBenchmark.java56 int tmp = 0;
59 tmp += IntMath.pow(positive[j], exponent[j]);
61 return tmp;
65 int tmp = 0;
68 tmp += IntMath.mod(ints[j], positive[j]);
70 return tmp;
74 int tmp = 0;
77 tmp += IntMath.gcd(nonnegative[j], positive[j]);
79 return tmp;
83 int tmp
[all...]
H A DLongMathBenchmark.java59 int tmp = 0;
62 tmp += LongMath.pow(positive[j], exponents[j]);
64 return tmp;
68 int tmp = 0;
71 tmp += LongMath.mod(longs[j], positive[j]);
73 return tmp;
77 int tmp = 0;
80 tmp += LongMath.mod(nonnegative[j], positive[j]);
82 return tmp;
86 int tmp
[all...]
/external/skia/tools/
H A Dcoverage.sh22 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/baseline -i
26 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/coverage
28 lcov $QUIET -a /tmp/baseline -a /tmp/coverage -o /tmp/merged
30 genhtml $QUIET /tmp/merged --legend -o out/Coverage/report
/external/valgrind/none/tests/
H A Dfdleak_cmsg.stderr.exp4 Open AF_UNIX socket ...: /tmp/sock
7 Open AF_UNIX socket ...: /tmp/sock
10 Open file descriptor ...: /tmp/data2
13 Open file descriptor ...: /tmp/data1
28 Open file descriptor ...: /tmp/data2
31 Open file descriptor ...: /tmp/data1
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp39 char *tmp, *pos, *pos2; local
41 tmp = strdup(reqMsg);
42 if (tmp == NULL)
44 pos = strchr(tmp, '-');
46 free(tmp);
50 field = tmp;
53 free(tmp);
60 if (strcmp(tmp, "PASSWORD") == 0) {
63 } else if (strcmp(tmp, "NEW_PASSWORD") == 0) {
66 } else if (strcmp(tmp, "IDENTIT
[all...]
/external/libopus/celt/
H A Dpitch.h71 opus_val16 tmp; local
72 tmp = *x++;
74 sum[0] = MAC16_16(sum[0],tmp,y_0);
75 sum[1] = MAC16_16(sum[1],tmp,y_1);
76 sum[2] = MAC16_16(sum[2],tmp,y_2);
77 sum[3] = MAC16_16(sum[3],tmp,y_3);
78 tmp=*x++;
80 sum[0] = MAC16_16(sum[0],tmp,y_1);
81 sum[1] = MAC16_16(sum[1],tmp,y_2);
82 sum[2] = MAC16_16(sum[2],tmp,y_
99 opus_val16 tmp = *x++; local
108 opus_val16 tmp=*x++; local
117 opus_val16 tmp=*x++; local
[all...]
/external/llvm/utils/llvm-lit/
H A DMakefile23 $(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
24 $(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
25 $(Verb)sed -f lit.tmp $< > $@
27 $(Verb)rm -f lit.tmp
/external/skia/bench/
H A DInterpBench.cpp76 SkFixed tmp; variable
78 tmp = (SkFixed)(curr >> 16);
79 dst[i + 0] = TILE(tmp, count);
82 tmp = (SkFixed)(curr >> 16);
83 dst[i + 1] = TILE(tmp, count);
86 tmp = (SkFixed)(curr >> 16);
87 dst[i + 2] = TILE(tmp, count);
90 tmp = (SkFixed)(curr >> 16);
91 dst[i + 3] = TILE(tmp, count);
107 SkFixed tmp; variable
125 SkFixed tmp; variable
145 SkFixed tmp; variable
[all...]
/external/v8/test/webkit/
H A Ddfg-cse-dead-get-scoped-var.js32 var tmp = x;
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_flatshade.c115 struct prim_header tmp; local
117 tmp.det = header->det;
118 tmp.flags = header->flags;
119 tmp.pad = header->pad;
120 tmp.v[0] = header->v[0];
121 tmp.v[1] = dup_vert(stage, header->v[1], 0);
122 tmp.v[2] = dup_vert(stage, header->v[2], 1);
124 copy_colors2(stage, tmp.v[1], tmp.v[2], tmp
133 struct prim_header tmp; local
157 struct prim_header tmp; local
170 struct prim_header tmp; local
[all...]
/external/openssh/openbsd-compat/
H A Dsys-tree.h87 /* SPLAY_ROTATE_{LEFT,RIGHT} expect that tmp hold SPLAY_{RIGHT,LEFT} */
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
89 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
90 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
91 (head)->sph_root = tmp; \
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
95 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \
96 SPLAY_LEFT(tmp, field) = (head)->sph_root; \
97 (head)->sph_root = tmp; \
100 #define SPLAY_LINKLEFT(head, tmp, fiel
[all...]
/external/compiler-rt/lib/builtins/ppc/
H A Dgcc_qdiv.c21 double yq, tmp, q; local
46 tmp = LOWORDER(yq, yHi, yLo, qHi, qLo);
47 tmp = (x - yq) - tmp;
48 tmp = ((tmp + x1) - y1 * q) / y;
49 x = q + tmp;
51 dst.s.lo = (q - x) + tmp;

Completed in 1414 milliseconds

1234567891011>>