Searched refs:tmp (Results 126 - 150 of 2163) sorted by relevance

1234567891011>>

/external/srtp/crypto/include/
H A Dcrypto_math.h133 uint64_t tmp; \
135 tmp = x->v32[3] + y->v32[3]; \
136 z->v32[3] = (uint32_t) tmp; \
138 tmp = x->v32[2] + y->v32[2] + (tmp >> 32); \
139 z->v32[2] = (uint32_t) tmp; \
141 tmp = x->v32[1] + y->v32[1] + (tmp >> 32); \
142 z->v32[1] = (uint32_t) tmp; \
144 tmp
[all...]
/external/v8/test/mjsunit/
H A Dargument-assigned.js72 var tmp = arguments[0];
74 return tmp;
82 var tmp = arguments[0];
84 return tmp;
92 var tmp = arguments[0];
102 var tmp = arguments[0];
/external/zlib/
H A Dupdate_zlib.sh21 wget -O /tmp/$tgz_file --no-verbose "http://zlib.net/$tgz_file"
29 tar zxf /tmp/$tgz_file
41 md5_sum=$(md5sum /tmp/$tgz_file)
/external/vboot_reference/cgpt/
H A Dcgpt_add.c17 char tmp[64]; local
20 snprintf(tmp, sizeof(tmp), "-i %d ", params->partition);
21 StrnAppend(buf, tmp, sizeof(buf));
23 snprintf(tmp, sizeof(tmp), "-l %s ", params->label);
24 StrnAppend(buf, tmp, sizeof(buf));
27 snprintf(tmp, sizeof(tmp), "-b %llu ", (unsigned long long)params->begin);
28 StrnAppend(buf, tmp, sizeo
[all...]
/external/skia/forth/
H A DStdWords.cpp87 intptr_t tmp = fe->pop(); local
88 fe->setTop(-(tmp && fe->top()));
92 intptr_t tmp = fe->pop(); local
93 fe->setTop(-(tmp || fe->top()));
101 intptr_t tmp = fe->top(); local
102 if (tmp) {
103 fe->push(tmp);
111 intptr_t tmp = fe->pop(); local
112 fe->setTop(fe->top() + tmp);
117 intptr_t tmp local
123 intptr_t tmp = fe->pop(); local
129 intptr_t tmp = fe->pop(); local
135 intptr_t tmp = fe->pop(); local
190 float tmp = fe->fpop(); local
198 float tmp = fe->fpop(); local
206 float tmp = fe->fpop(); local
214 float tmp = fe->fpop(); local
309 intptr_t tmp = fe->pop(); local
316 intptr_t tmp = fe->pop(); local
323 intptr_t tmp = fe->pop(); local
330 intptr_t tmp = fe->pop(); local
369 float tmp = fe->fpop(); local
376 float tmp = fe->fpop(); local
383 float tmp = fe->fpop(); local
390 float tmp = fe->fpop(); local
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_conv.c361 LLVMValueRef tmp[LP_MAX_VECTOR_LENGTH]; local
376 tmp[i] = src[i];
423 tmp[j] = LLVMBuildFMul(builder, src[j], const_255f, "");
424 tmp[j] = lp_build_iround(&bld, tmp[j]);
428 lo = lp_build_pack2(gallivm, int32_type, int16_type, tmp[0], tmp[1]);
429 hi = lp_build_pack2(gallivm, int32_type, int16_type, tmp[2], tmp[3]);
483 tmp[
[all...]
/external/bzip2/
H A Dbzdiff40 tmp=`mktemp ${TMPDIR:-/tmp}/bzdiff.XXXXXXXXXX` || {
56 bzip2 -cdfq "$2" > $tmp
57 bzip2 -cdfq "$1" | $comp $OPTIONS - $tmp
59 /bin/rm -f $tmp;;
/external/dhcpcd/mk/
H A Ddist.mk24 mkdir /tmp/${SNAPDIR}
25 cp -RPp * /tmp/${SNAPDIR}
26 (cd /tmp/${SNAPDIR}; make clean)
27 tar -cvjpf ${SNAPFILE} -C /tmp ${SNAPDIR}
28 rm -rf /tmp/${SNAPDIR}
/external/eigen/Eigen/src/Householder/
H A DHouseholder.h123 Map<typename internal::plain_row_type<PlainObject>::type> tmp(workspace,cols());
125 tmp.noalias() = essential.adjoint() * bottom;
126 tmp += this->row(0);
127 this->row(0) -= tau * tmp;
128 bottom.noalias() -= tau * essential * tmp;
160 Map<typename internal::plain_col_type<PlainObject>::type> tmp(workspace,rows());
162 tmp.noalias() = right * essential.conjugate();
163 tmp += this->col(0);
164 this->col(0) -= tau * tmp;
165 right.noalias() -= tau * tmp * essentia
[all...]
/external/skia/platform_tools/android/bin/
H A Dandroid_run_skia16 adb_push_if_needed "${SKIA_OUT}/$BUILDTYPE/skia_launcher" /data/local/tmp
19 adb_push_if_needed "${SKIA_OUT}/$BUILDTYPE/lib/libskia_android.so" /data/local/tmp
21 adb_push_if_needed "${SKIA_OUT}/$BUILDTYPE/lib/lib${APP_ARGS[0]}.so" /data/local/tmp
27 STATUS_FILENAME="/data/local/tmp/.skia_tmp_$(date +%s%N)"
29 echo "LD_LIBRARY_PATH=/data/local/tmp:$LD_LIBRARY_PATH \
30 /data/local/tmp/skia_launcher ${APP_ARGS[*]}; \
33 $ADB ${DEVICE_SERIAL} push ${CMD_FILENAME} /data/local/tmp
35 $ADB ${DEVICE_SERIAL} shell sh /data/local/tmp/${CMD_FILENAME}
/external/skia/platform_tools/android/tests/
H A Dgenerate_user_config_tests.py50 tmp = tempfile.mkdtemp()
51 original = os.path.join(tmp, MISSING_FILENAME)
61 target_dir=tmp, defines=defines)
66 require_sk_user_config=False, target_dir=tmp)
67 actual_name = os.path.join(tmp, MISSING_FILENAME)
73 shutil.rmtree(tmp)
76 tmp = tempfile.mkdtemp()
77 generate_dummy_user_config(FULL_DUMMY_PATH, True, tmp)
78 actual_name = os.path.join(tmp, USER_CONFIG_NAME)
82 shutil.rmtree(tmp)
[all...]
/external/libvncserver/x11vnc/misc/
H A Drx11vnc70 tmp=/tmp/rx11vnc.$$
92 # in the tmp file. The sleep at the end is to give us enough
97 $rsh -t -f $redir $host "$cmd $disp; echo END; sleep $time" > $tmp
103 if grep '^PORT=' $tmp > /dev/null; then
104 port=`grep '^PORT=' $tmp | sed -e 's/PORT=//'`
111 cat $tmp
112 rm -f $tmp
/external/linux-tools-perf/src/tools/perf/util/include/linux/
H A Dbitops.h98 unsigned long tmp; local
101 if ((tmp = *(p++)))
109 tmp = (*p) & (~0UL >> (BITS_PER_LONG - size));
110 if (tmp == 0UL) /* Are any bits set? */
113 return result + __ffs(tmp);
124 unsigned long tmp; local
131 tmp = *(p++);
132 tmp &= (~0UL << offset);
135 if (tmp)
141 if ((tmp
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_twoside.c59 struct vertex_header *tmp = dup_vert( &twoside->stage, v, idx ); local
62 COPY_4FV(tmp->data[twoside->attrib_front0],
63 tmp->data[twoside->attrib_back0]);
66 COPY_4FV(tmp->data[twoside->attrib_front1],
67 tmp->data[twoside->attrib_back1]);
70 return tmp;
83 struct prim_header tmp; local
85 tmp.det = header->det;
86 tmp.flags = header->flags;
87 tmp
[all...]
/external/bison/lib/
H A Dpipe2.c45 int tmp[2]; local
46 tmp[0] = fd[0];
47 tmp[1] = fd[1];
81 fd[0] = tmp[0];
82 fd[1] = tmp[1];
162 fd[0] = tmp[0];
163 fd[1] = tmp[1];
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DOptimizedErode.java64 float[] tmp = buffer.array();
65 float[] retval = new float[tmp.length];
70 float h = tmp[idx];
85 float hV = tmp[idxV];
86 float hH = tmp[idxH];
88 if (Math.abs(h - hV) > this.talus && Math.abs(h - tmp[idxVL]) > this.talus || vertT) {
97 if (Math.abs(h - hH) > this.talus && Math.abs(h - tmp[idxHL]) > this.talus || horizT) {
/external/libavc/encoder/
H A Dih264e_half_pel.c188 WORD32 tmp; local
196 tmp = ih264_g_six_tap[0] * (pu1_src[col - 2 * src_strd] + pu1_src[col + 3 * src_strd]) +
200 pi4_pred_temp[col] = tmp;
211 tmp = (pi4_pred[col - 2] + pi4_pred[col + 3]) +
215 tmp = (tmp + 512) >> 10;
217 pu1_dst2[col] = CLIP_U8(tmp);
/external/skia/src/core/
H A DSkQuadClipper.cpp73 SkPoint tmp[5]; // for SkChopQuadAt local
79 SkChopQuadAt(dst, tmp, t);
80 dst[0] = tmp[2];
81 dst[1] = tmp[3];
96 SkChopQuadAt(dst, tmp, t);
97 dst[1] = tmp[1];
98 dst[2] = tmp[2];
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_adler32.c31 unsigned long tmp = a >> 16; \
33 a += (tmp << 4) - tmp; \
47 z_off64_t tmp = a >> 32; \
49 a += (tmp << 8) - (tmp << 5) + tmp; \
50 tmp = a >> 16; \
52 a += (tmp << 4) - tmp; \
[all...]
/external/strace/
H A Dstrace-graph122 ($tmp, $in) = parse_str($in);
123 if (not defined $tmp) {
127 return ($tmp, $in);
141 my $tmp;
150 ($tmp, $in) = parse_one($in);
151 defined $tmp or return undef;
152 push @subarr, $tmp;
172 ($tmp, $in) = parse_one($in);
173 defined $tmp or return undef;
174 $subhash{$key} = $tmp;
[all...]
/external/zlib/src/
H A Dadler32.c31 unsigned long tmp = a >> 16; \
33 a += (tmp << 4) - tmp; \
47 z_off64_t tmp = a >> 32; \
49 a += (tmp << 8) - (tmp << 5) + tmp; \
50 tmp = a >> 16; \
52 a += (tmp << 4) - tmp; \
[all...]
/external/aac/libSBRenc/src/
H A Dsbr_misc.cpp243 FIXP_DBL tmp = FL2FXCONST_DBL(0.0f); local
254 tmp = fMultDiv2(num,scale);
256 if ( denom > (tmp >> fixMin(shiftNum+shiftScale-1,(DFRACT_BITS-1))) ) {
258 tmp = schur_div(tmp,denom,15);
261 tmp <<= -shiftCommon;
263 tmp >>= shiftCommon;
266 tmp = /*FL2FXCONST_DBL(1.0)*/ (FIXP_DBL)MAXVAL_DBL;
270 return (tmp);
/external/clang/test/Analysis/
H A Dmalloc-plist.c26 char * tmp; local
27 tmp = (char*)realloc(buf, 0x1000000);
28 if (!tmp) {
31 buf = tmp;
67 char *tmp; local
68 tmp = (char*)realloc(buf, 0x1000000);
69 if (!tmp) {
70 return tmp;
72 return tmp;
841 // CHECK-NEXT: <string>Assuming &apos;tmp
[all...]
/external/guava/guava-tests/benchmark/com/google/common/math/
H A DBigIntegerMathBenchmark.java90 int tmp = 0;
93 tmp += oldSlowFactorial(slowFactorials[j]).intValue();
95 return tmp;
99 int tmp = 0;
102 tmp += BigIntegerMath.factorial(factorials[j]).intValue();
104 return tmp;
108 int tmp = 0;
111 tmp += BigIntegerMath.binomial(factorials[j], binomials[j]).intValue();
113 return tmp;
/external/aac/libAACenc/src/
H A Dpre_echo_control.cpp140 FIXP_DBL tmp = pbThreshold[i]; local
143 pbThresholdNm1[i] = tmp;
145 tmp = fixMin(tmp, tmpThreshold1);
146 pbThreshold[i] = fixMax(tmp, tmpThreshold2);

Completed in 3014 milliseconds

1234567891011>>