/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
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;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.assign/ |
move_assign.pass.cpp | 24 std::string temp = get_temp_file_name(); local 26 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()); 45 std::wifstream fs(temp.c_str()); 50 std::remove(temp.c_str());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.cons/ |
move.pass.cpp | 24 std::string temp = get_temp_file_name(); local 26 std::ofstream fso(temp.c_str()); 31 std::ifstream fs(temp.c_str()); 36 std::remove(temp.c_str()); 38 std::wofstream fso(temp.c_str()); 43 std::wifstream fs(temp.c_str()); 48 std::remove(temp.c_str());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/fstreams/ofstream.members/ |
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());
|
/packages/apps/Camera/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;
|
/packages/apps/Camera2/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;
|
/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;
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
rijndael-alg-fst.c | 154 #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[1][0]] 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...] |
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/ |
d_plsf_3.cpp | 173 Word16 temp; local 186 temp = 201 temp, 210 /* temp = mean_lsf[i] + past_r2_q[i] * PRED_FAC; */ 212 temp = 218 temp = 221 temp, 227 temp, 236 /* temp = mean_lsf[i] + past_r2_q[i]; */ 238 temp [all...] |
/external/guava/guava-testlib/src/com/google/common/testing/ |
ClusterException.java | 70 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local 71 temp.addAll(exceptions); 72 this.exceptions = Collections.unmodifiableCollection(temp); 79 ArrayList<Throwable> temp = new ArrayList<Throwable>(); local 81 temp.add(exception); 83 return create(temp); 113 Throwable temp = exceptions.iterator().next(); local 114 if (temp instanceof RuntimeException) { 115 return (RuntimeException)temp; 117 return new RuntimeException(temp); [all...] |
/external/chromium_org/chrome/common/extensions/permissions/ |
usb_device_permission_data.cc | 68 int temp; local 69 if (!dict_value->GetInteger(kVendorIdKey, &temp)) 71 if (temp < 0 || temp > kuint16max) 73 vendor_id_ = temp; 75 if (!dict_value->GetInteger(kProductIdKey, &temp)) 77 if (temp < 0 || temp > kuint16max) 79 product_id_ = temp; 81 if (!dict_value->GetInteger(kInterfaceIdKey, &temp)) [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
vlc_dequant.cpp | 77 int32 temp; local 148 temp = (int32)datablock[k] * qmat[k] * QP; 149 temp = (temp + (0x7 & (temp >> 31))) >> 3; 150 if (temp > 2047) temp = 2047; 151 else if (temp < -2048) temp = -2048; 152 datablock[k] = (int) temp; 402 int32 temp; local 507 int32 temp; local 809 int32 temp; local 1071 int32 temp; local [all...] |
/external/chromium/crypto/ |
signature_creator_win.cc | 46 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/chromium_org/third_party/opus/src/silk/float/ |
solve_LS_FLP.c | 120 silk_float temp; local 125 temp = 0; 127 temp += ptr1[ j * M ] * x[ j ]; 129 temp = b[ i ] - temp; 130 x[ i ] = temp; 142 silk_float temp; local 147 temp = 0; 149 temp += ptr1[ j ] * x[ j ]; 151 temp = b[ i ] - temp 165 double temp, diag_min_value; local [all...] |
/external/chromium_org/tools/metrics/histograms/ |
diffutil.py | 37 temp = NamedTemporaryFile(suffix='.html', delete=False) 39 temp.write(html_diff) 40 temp.close() # Close the file so the browser process can access it. 41 webbrowser.open('file://' + temp.name) 45 temp.close() # May be called on already closed file. 46 os.remove(temp.name)
|
/external/emma/ant/ant15/com/vladium/emma/ant/ |
IANTVersion.java | 38 boolean temp = true; 47 temp = false; 51 temp = false; 55 temp = false; 60 temp = false; 63 _ANT_1_5_PLUS = temp;
|
/libcore/luni/src/main/java/java/math/ |
Division.java | 56 long temp = (rem << 32) | (dividend[i] & 0xffffffffL); local 58 if (temp >= 0) { 59 quot = (temp / bLong); 60 rem = (temp % bLong); 66 long aPos = temp >>> 1; 71 rem = (rem << 1) + (temp & 1);
|
/frameworks/base/graphics/java/android/graphics/ |
TemporaryBuffer.java | 40 public static void recycle(char[] temp) { 41 if (temp.length > 1000) return; 44 sTemp = temp;
|
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/ |
GLutils.h | 30 T temp; local 31 temp=x; 33 y=temp;
|
/external/ceres-solver/internal/ceres/ |
stl_util.h | 52 ForwardIterator temp = begin; local 54 delete *temp; 66 ForwardIterator temp = begin; local 68 delete *temp;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/ |
Math.java | 6 long temp = b; local 8 a = temp; 15 int temp = b; local 17 a = temp;
|
/external/srtp/crypto/include/ |
kernel_compat.h | 73 uint32_t temp; local 74 get_random_bytes(&temp, sizeof(temp)); 75 return temp % (RAND_MAX+1);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
SharedPreset.java | 32 ImagePreset temp = mIntermediatePreset; local 34 mProducerPreset = temp; 42 ImagePreset temp = mConsumerPreset; local 44 mIntermediatePreset = temp;
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1GeneralizedTime.java | 89 String temp = sdf.format(out.content); local 93 while (((nullId = temp.lastIndexOf('0', currLength = temp.length() - 1)) != -1) 95 temp = temp.substring(0, nullId); 98 if (temp.charAt(currLength) == '.') { 99 temp = temp.substring(0, currLength); 102 out.content = (temp + "Z").getBytes(StandardCharsets.UTF_8);
|