HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 51 - 75 of 3860) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwb/src/
agc2_amr_wb.cpp 128 int16 temp; local
132 temp = sig_out[0] >> 2;
133 s = fxp_mul_16by16(temp, temp) << 1;
136 temp = sig_out[i] >> 2;
137 s = mac_16by16_to_int32(s, temp, temp);
150 temp = sig_in[0] >> 2;
151 s = mul_16by16_to_int32(temp, temp);
    [all...]
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
test3-expected.cc 16 scoped_refptr<Foo> temp(new Foo);
17 ExpectsScopedRefptr(temp);
test3-original.cc 16 scoped_refptr<Foo> temp(new Foo);
17 ExpectsScopedRefptr(temp);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
lsfwt.cpp 192 Word16 temp; local
223 temp = wgt_fct - 1843;
225 if (temp > 0)
227 temp = (Word16)(((Word32)temp * 6242) >> 15);
228 wgt_fct = 1843 - temp;
232 temp = (Word16)(((Word32)wgt_fct * 28160) >> 15);
233 wgt_fct = 3427 - temp;
  /external/libtextclassifier/util/gtl/
stl_util.h 31 auto temp = it; local
33 delete *temp;
46 auto temp = it; local
48 delete temp->second;
  /external/lzma/CPP/7zip/UI/FileManager/
PropertyName.cpp 20 wchar_t temp[16]; local
21 ConvertUInt32ToString(propID, temp);
22 return temp;
  /external/selinux/libselinux/src/
selinuxswig_ruby.i 22 %typemap(in,numinputs=0) security_id_t *(security_id_t temp) {
23 $1 = &temp;
26 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
27 $1 = &temp;
37 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
38 $1 = &temp;
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
mult3s_16x16.c 34 LVM_INT32 temp; local
38 temp = (LVM_INT32)(*src) * (LVM_INT32)val;
41 *dst = (LVM_INT16)(temp >> 15);
Shift_Sat_v16xv16.c 33 LVM_INT32 temp; local
40 temp = (LVM_INT32)*src;
43 temp = temp << val;
45 if (temp > 0x00007FFF)
49 else if (temp < -0x00008000)
55 *dst = (LVM_INT16)temp;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
AverageFilter.java 35 private float[] temp = new float[NUM_FRAMES]; field in class:AverageFilter
58 temp[counter] = ((Float)inFrameValue.getValue()).floatValue();
63 float output = (temp[0] + temp[1] + temp[2] + temp[3] + temp[4]) / NUM_FRAMES;
64 if (mLogVerbose) Log.v(TAG, "Avg= " + output + "temp1= " + temp[0] + "temp2= " +
65 temp[1] + "temp3= " + temp[2] + "temp4=" + temp[3] + "temp5=" + temp[4])
    [all...]
  /external/ltp/testcases/kernel/syscalls/nftw/
test64.c 36 extern FILE *temp;
49 temp = stderr;
51 fprintf(temp, "TEST: nftw64() succeeds\n");
66 fprintf(temp, "TEST: Whole tree traversed\n");
70 fprintf(temp, "ERROR: Count of objects visited incorrect\n");
71 fprintf(temp, " Expected %d, Received %d\n", ngoods,
90 fprintf(temp, "ERROR: Unexpected visit to %s\n",
109 temp = stderr;
111 fprintf(temp,
129 fprintf(temp,
    [all...]
  /external/libgsm/src/
lpc.c 36 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 = P[1]
257 register word temp; local
291 register word temp; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
chkder.h 28 Scalar temp; local
36 temp = eps * abs(x[j]);
37 if (temp == 0.)
38 temp = eps;
39 xp[j] = x[j] + temp;
46 temp = abs(x[j]);
47 if (temp == 0.)
48 temp = 1.;
49 err += temp * fjac.col(j);
52 temp = 1.
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/stdlib/
_rand48.c 41 unsigned short temp[2]; local
47 temp[0] = (unsigned short) accu; /* lower 16 bits */
51 temp[1] = (unsigned short) accu; /* middle 16 bits */
54 xseed[0] = temp[0];
55 xseed[1] = temp[1];
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str());
32 std::remove(temp.c_str());
36 fs.open(temp.c_str());
41 std::remove(temp.c_str());
rdbuf.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::remove(temp.c_str());
31 std::wofstream fs(temp.c_str());
35 std::remove(temp.c_str());
open_pointer.pass.cpp 23 std::string temp = get_temp_file_name(); local
30 fs.open(temp.c_str());
35 std::ifstream fs(temp.c_str());
40 std::remove(temp.c_str());
47 fs.open(temp.c_str());
52 std::wifstream fs(temp.c_str());
57 std::remove(temp.c_str());
open_string.pass.cpp 23 std::string temp = get_temp_file_name(); local
30 fs.open(temp);
35 std::ifstream fs(temp.c_str());
40 std::remove(temp.c_str());
47 fs.open(temp);
52 std::wifstream fs(temp.c_str());
57 std::remove(temp.c_str());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 23 std::string temp = get_temp_file_name(); local
27 fs.open(temp.c_str());
32 std::remove(temp.c_str());
36 fs.open(temp.c_str());
41 std::remove(temp.c_str());
rdbuf.pass.cpp 23 std::string temp = get_temp_file_name(); local
25 std::ofstream fs(temp.c_str());
29 std::remove(temp.c_str());
31 std::wofstream fs(temp.c_str());
35 std::remove(temp.c_str());
  /external/libcxx/test/libcxx/input.output/file.streams/fstreams/ofstream.members/
open_wchar_pointer.pass.cpp 24 std::wstring temp = get_wide_temp_file_name(); local
31 fs.open(temp.c_str());
36 std::ifstream fs(temp.c_str());
41 _wremove(temp.c_str());
48 fs.open(temp.c_str());
53 std::wifstream fs(temp.c_str());
58 _wremove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
move_assign.pass.cpp 25 std::string temp = get_temp_file_name(); local
27 std::ofstream fso(temp.c_str());
33 std::ifstream fs(temp.c_str());
38 std::remove(temp.c_str());
40 std::wofstream fso(temp.c_str());
46 std::wifstream fs(temp.c_str());
51 std::remove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/
move.pass.cpp 25 std::string temp = get_temp_file_name(); local
27 std::ofstream fso(temp.c_str());
32 std::ifstream fs(temp.c_str());
37 std::remove(temp.c_str());
39 std::wofstream fso(temp.c_str());
44 std::wifstream fs(temp.c_str());
49 std::remove(temp.c_str());
  /frameworks/base/obex/javax/obex/
ObexPacket.java 59 byte[] temp = null;
62 temp = new byte[length - 3];
63 bytesReceived = is.read(temp);
64 while (bytesReceived != temp.length) {
65 bytesReceived += is.read(temp, bytesReceived, temp.length - bytesReceived);
68 newPacket.mPayload = temp;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_random.h 77 int temp,temp2,i,j; local
81 temp=db_RandomInt(r_seed,pool_size-1-i);
85 if(s[j]<=temp) temp++;
89 temp2=temp;
90 temp=s[j];
94 s[i]=temp;

Completed in 1210 milliseconds

1 23 4 5 6 7 8 91011>>