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

1 2 34 5 6 7 8 91011>>

  /packages/apps/SecureElement/src/com/android/se/security/gpac/
Response_ALL_AR_DO.java 87 BerTlv temp; local
91 temp = BerTlv.decode(data, currentPos);
95 if (temp.getTag() == REF_AR_DO.TAG) { // REF-AR-DO tag
96 tempRefArDo = new REF_AR_DO(data, temp.getValueIndex(), temp.getValueLength());
105 currentPos = temp.getValueIndex() + temp.getValueLength();
AR_DO.java 93 BerTlv temp = BerTlv.decode(data, index); local
95 if (temp.getTag() == APDU_AR_DO.TAG) { // APDU-AR-DO
96 mApduAr = new APDU_AR_DO(data, temp.getValueIndex(), temp.getValueLength());
98 } else if (temp.getTag() == NFC_AR_DO.TAG) { // NFC-AR-DO
99 mNfcAr = new NFC_AR_DO(data, temp.getValueIndex(), temp.getValueLength());
106 index = temp.getValueIndex() + temp.getValueLength();
128 ByteArrayOutputStream temp = new ByteArrayOutputStream() local
    [all...]
REF_AR_DO.java 98 BerTlv temp = BerTlv.decode(data, index); local
99 if (temp.getTag() == REF_DO.TAG) { // REF-DO
100 mRefDo = new REF_DO(data, temp.getValueIndex(), temp.getValueLength());
102 } else if (temp.getTag() == AR_DO.TAG) { // AR-DO
103 mArDo = new AR_DO(data, temp.getValueIndex(), temp.getValueLength());
111 index = temp.getValueIndex() + temp.getValueLength();
126 ByteArrayOutputStream temp = new ByteArrayOutputStream() local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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());
  /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...]
  /external/libvpx/libvpx/vpx_dsp/x86/
convolve_ssse3.h 77 __m128i temp = _mm_adds_epi16(x0, x3); local
78 temp = _mm_adds_epi16(temp, x1);
79 temp = _mm_adds_epi16(temp, x2);
80 temp = _mm_adds_epi16(temp, x4);
82 temp = _mm_adds_epi16(temp, k_64);
83 temp = _mm_srai_epi16(temp, 7)
98 __m128i temp; 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...]
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
typemaps.i 61 %typemap(in) double *INPUT(double temp), double &INPUT(double temp)
63 if (Tcl_GetDoubleFromObj(interp,$input,&temp) == TCL_ERROR) {
66 $1 = &temp;
69 %typemap(in) float *INPUT(double dvalue, float temp), float &INPUT(double dvalue, float temp)
74 temp = (float) dvalue;
75 $1 = &temp;
78 %typemap(in) int *INPUT(int temp), int &INPUT(int 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...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DelayMix_16x16.c 37 LVM_INT16 temp; local
42 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) + (LVM_INT32)delay[Offset]) >> 1);
43 *dst = temp;
52 temp = (LVM_INT16)((LVM_UINT32)((LVM_INT32)(*dst) - (LVM_INT32)delay[Offset]) >> 1);
53 *dst = temp;
82 LVM_FLOAT temp; local
87 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst + (LVM_FLOAT)delay[Offset]) / 2.0f);
88 *dst = temp;
97 temp = (LVM_FLOAT)((LVM_FLOAT)(*dst - (LVM_FLOAT)delay[Offset]) / 2.0f);
98 *dst = temp;
    [all...]
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/h264/parser/
h264parse_bsd.c 36 uint32_t temp = 0, match = 0, noOfBits = 0, count = 0; local
59 bits_operation_result = viddec_pm_peek_bits(parent, &temp, noOfBits);
62 temp = (temp << bits_offset);
63 if(temp!=0)
72 bits_operation_result = viddec_pm_peek_bits(parent, &temp, 8);
81 if(temp != 0)
85 while(((temp & 0x80) != 0x80) && (count <= noOfBits))
88 temp = temp <<1;
    [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/elfutils/tests/
run-strip-test.sh 23 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile}
26 test x$stripped = xtestfile.temp || testfiles $stripped $debugfile
28 tempfiles testfile.temp testfile.debug.temp testfile.unstrip
30 testrun ${abs_top_builddir}/src/strip -o testfile.temp $debugout $original
34 cmp $stripped testfile.temp || status=$?
37 testrun ${abs_top_builddir}/src/elflint -q testfile.temp || status=$?
40 cmp $debugfile testfile.debug.temp || status=$?
43 testrun ${abs_top_builddir}/src/elflint -q -d testfile.debug.temp || status=$?
46 testrun ${abs_top_builddir}/src/unstrip -o testfile.unstrip testfile.temp testfile.debug.tem
    [all...]
  /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;
  /frameworks/rs/
rsMatrix2x2.cpp 46 Matrix2x2 temp; local
55 temp.set(i, 0, ri0);
56 temp.set(i, 1, ri1);
58 load(&temp);
62 float temp = m[1]; local
64 m[2] = temp;
  /frameworks/rs/tests/lldb/cpp/MultipleRSFiles/
first.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/
infiniteloop.rs 45 float4 temp = rsUnpackColor8888(in);
46 temp = gColour;
47 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/java/MultipleRSFiles/src/rs/
first.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/rs/
simple.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/jni/InfiniteLoop/jniinfiniteloop/
infiniteloop.rs 45 float4 temp = rsUnpackColor8888(in);
46 temp = gColour;
47 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/jni/MultipleRSFiles/jnimultiplersfiles/
first.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);
  /frameworks/rs/tests/lldb/jni/NoDebugWaitAttach/jninodebugwaitattach/
simple.rs 28 float4 temp = rsUnpackColor8888(in);
29 temp = gColor;
30 uchar4 result = rsPackColorTo8888(temp);

Completed in 1685 milliseconds

1 2 34 5 6 7 8 91011>>