Searched refs:real (Results 1 - 5 of 5) sorted by relevance

/system/core/logd/
H A DLogKlog.h50 static void convertMonotonicToReal(log_time& real) { argument
51 real += correction;
53 static void convertRealToMonotonic(log_time& real) { argument
54 real -= correction;
H A DLogKlog.cpp271 log_time real;
272 const char* ep = real.strptime(real_string, real_format);
273 if (!ep || (ep > &real_string[len]) || (real > log_time(CLOCK_REALTIME))) {
279 time_t now = real.tv_sec;
284 if ((tm.tm_gmtoff < 0) && ((-tm.tm_gmtoff) > (long)real.tv_sec)) {
285 real = log_time::EPOCH;
287 real.tv_sec += tm.tm_gmtoff;
289 if (monotonic > real) {
292 correction = real - monotonic;
330 log_time real(CLOCK_REALTIM
336 log_time real; local
[all...]
H A DLogReader.cpp128 // Find if time is really present in the logs, monotonic or real, implicit
129 // conversion from monotonic or real as necessary to perform the check.
160 log_time real = element->getRealTime(); local
161 if (me->mStart == real) {
162 me->mSequence = real;
165 } else if (!me->mIsMonotonic || android::isMonotonic(real)) {
166 if (me->mStart < real) {
171 me->mLast = real;
173 me->mLast = real;
/system/chre/external/kiss_fft/
H A Dkissfft.hh145 scratch[4] = cpx_type( scratch[4].imag()*negative_if_inverse , -scratch[4].real()* negative_if_inverse );
176 Fout[m] = cpx_type( Fout->real() - HALF_OF(scratch[3].real() ) , Fout->imag() - HALF_OF(scratch[3].imag() ) );
182 Fout[m2] = cpx_type( Fout[m].real() + scratch[0].imag() , Fout[m].imag() - scratch[0].real() );
184 C_ADDTO( Fout[m] , cpx_type( -scratch[0].imag(),scratch[0].real() ) );
225 S_MUL(scratch[7].real(),ya.real() ) + S_MUL(scratch[8].real() ,yb.real() ),
[all...]
/system/libhwbinder/
H A DParcel.cpp242 sp<IBinder> real = binder.promote(); local
243 if (real != NULL) {
244 IBinder *local = real->localBinder();
246 BpHwBinder *proxy = real->remoteBinder();
260 return finish_flatten_binder(real, obj, out);

Completed in 550 milliseconds