Searched refs:temp (Results 1 - 25 of 896) sorted by relevance

1234567891011>>

/external/qemu-pc-bios/vgabios/
H A Ddataseghack7 $1 > temp.awk.1
13 $1 > temp.awk.2
19 $1 > temp.awk.3
22 cat temp.awk.1 temp.awk.2 temp.awk.3 | sed -e 's/^\.data//' -e 's/^\.bss//' -e 's/^\.text//' > $1
23 /bin/rm -f temp.awk.1 temp.awk.2 temp.awk.3 $1.orig
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_pan.c63 EAS_INT temp; local
78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle);
79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle);
81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN)
82 temp = SYNTH_FULL_SCALE_EG1_GAIN;
83 else if (temp < 0)
84 temp = 0;
86 *pGainRight = (EAS_I16) temp;
89 temp
[all...]
/external/emma/core/java14/com/vladium/util/
H A DIJREVersion.java60 boolean temp = false;
66 temp = true;
70 _JRE_1_3_PLUS = temp;
72 if (temp)
74 temp = false;
78 temp = true;
82 _JRE_1_4_PLUS = temp;
84 temp = false;
86 _JRE_SUN_SIGNAL_COMPATIBLE = temp;
/external/libvpx/vp8/common/
H A Dswapyv12buffer.c16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
/external/qemu/android/
H A Dhw-lcd.c19 char temp[8]; local
36 snprintf(temp, sizeof temp, "%d", density);
37 boot_property_add("qemu.sf.lcd_density", temp);
/external/chromium/base/
H A Dbase64.cc12 std::string temp; local
13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
17 int output_size= modp_b64_encode(&(temp[0]), input.data(), input_size);
21 temp.resize(output_size); // strips off null byte
22 output->swap(temp);
27 std::string temp; local
28 temp.resize(modp_b64_decode_len(input.size()));
32 int output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
36 temp.resize(output_size);
37 output->swap(temp);
[all...]
/external/elfutils/tests/
H A Drun-strip-test.sh31 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile}
34 test x$stripped = xtestfile.temp || testfiles $stripped $debugfile
36 tempfiles testfile.temp testfile.debug.temp testfile.unstrip
38 testrun ../src/strip -o testfile.temp $debugout $original
42 cmp $stripped testfile.temp || status=$?
45 testrun ../src/elflint -q testfile.temp || status=$?
48 cmp $debugfile testfile.debug.temp || status=$?
51 testrun ../src/elflint -q -d testfile.debug.temp || status=$?
54 testrun ../src/unstrip -o testfile.unstrip testfile.temp testfil
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Dbios_usage2 gcc -E rombios.c | grep "^\.org" | sed -e 's/\.org //' | sed -e 's/ .*//' | sort >! temp.usage
3 usage rombios.bin temp.usage
4 /bin/rm temp.usage
/external/qemu/android/utils/
H A Dtempfile.h33 extern const char* tempfile_path( TempFile* temp );
34 extern void tempfile_close( TempFile* temp );
/external/libgsm/src/
H A Dlpc.c36 word temp, smax, scalauto; local
49 temp = GSM_ABS( s[k] );
50 if (temp > smax) smax = temp;
183 register word temp; local
198 temp = gsm_norm( L_ACF[0] );
200 assert(temp >= 0 && temp < 32);
203 for (i = 0; i <= 8; i++) ACF[i] = SASR( L_ACF[i] << temp, 16 );
215 temp
257 register word temp; local
291 register word temp; local
[all...]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dchkder.h24 Scalar temp; local
32 temp = eps * abs(x[j]);
33 if (temp == 0.)
34 temp = eps;
35 xp[j] = x[j] + temp;
42 temp = abs(x[j]);
43 if (temp == 0.)
44 temp = 1.;
45 err += temp * fjac.col(j);
48 temp
[all...]
/external/qemu/android/avd/
H A Dutil.c44 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
66 (void) bufprint_app_dir(temp, end);
67 sdkPath = path_parent(temp, 1);
86 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
88 p = bufprint_config_path(temp, end);
93 if (!path_exists(temp)) {
103 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
118 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
145 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
180 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
230 char temp[PATH_MAX], *p=temp, *end=p+sizeof(temp); local
[all...]
/external/llvm/tools/llvm-config/
H A DMakefile41 > temp.sed
43 >> temp.sed
45 >> temp.sed
47 >> temp.sed
49 >> temp.sed
51 >> temp.sed
53 >> temp.sed
55 >> temp.sed
57 >> temp.sed
58 $(Verb) $(SED) -f temp
[all...]
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c154 #define temp xtemp.x8 macro
158 *((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]);
159 *((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]);
160 *((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]);
161 *((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]);
162 *((word32*)(b )) = *((const word32*)T1[temp[0][0]])
163 ^ *((const word32*)T2[temp[1][1]])
164 ^ *((const word32*)T3[temp[2][2]])
165 ^ *((const word32*)T4[temp[3][3]]);
166 *((word32*)(b + 4)) = *((const word32*)T1[temp[
232 #undef temp macro
242 word8 temp[4][4]; local
319 #define temp macro
397 #undef temp macro
411 word8 temp[4], shift; local
[all...]
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClusterException.java70 ArrayList<Throwable> temp = new ArrayList<Throwable>();
71 temp.addAll(exceptions);
72 this.exceptions = Collections.unmodifiableCollection(temp);
79 ArrayList<Throwable> temp = new ArrayList<Throwable>();
81 temp.add(exception);
83 return create(temp);
113 Throwable temp = exceptions.iterator().next();
114 if (temp instanceof RuntimeException) {
115 return (RuntimeException)temp;
117 return new RuntimeException(temp);
[all...]
/external/chromium/crypto/
H A Dsignature_creator_win.cc46 std::vector<uint8> temp; local
47 temp.resize(signature_length);
48 if (!CryptSignHash(hash_object_, AT_SIGNATURE, NULL, 0, &temp.front(),
53 temp.resize(signature_length);
54 for (size_t i = temp.size(); i > 0; --i)
55 signature->push_back(temp[i - 1]);
/external/emma/ant/ant15/com/vladium/emma/ant/
H A DIANTVersion.java38 boolean temp = true;
47 temp = false;
51 temp = false;
55 temp = false;
60 temp = false;
63 _ANT_1_5_PLUS = temp;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
H A DMath.java6 long temp = b;
8 a = temp;
15 int temp = b;
17 a = temp;
/external/srtp/crypto/include/
H A Dkernel_compat.h73 uint32_t temp; local
74 get_random_bytes(&temp, sizeof(temp));
75 return temp % (RAND_MAX+1);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/
H A Dregress-108440.js51 var temp = ''; variable
60 temp = (a[a.length]=a);
68 temp = prop;
69 temp = (a[a.length] = self[prop]);
/external/chromium/testing/gtest/samples/
H A Dsample2.cc53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
/external/gtest/samples/
H A Dsample2.cc53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
/external/protobuf/gtest/samples/
H A Dsample2.cc53 const char * const temp = MyString::CloneCString(c_string); local
55 c_string_ = temp;

Completed in 3451 milliseconds

1234567891011>>