Searched refs:U128 (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/IOAudioFamily-197.4.2/
H A DBigNum128.h29 class U128 class
32 U128(uint64_t lo = 0) : lo(lo), hi(0) { }; function in class:U128
33 U128(uint64_t hi, uint64_t lo) : lo(lo), hi(hi) { }; function in class:U128
34 inline bool operator==( const U128 &A ) const { return ( A.hi == hi ) && ( A.lo == lo ); }
35 inline bool operator>( const U128 &A ) const { return ( ( A.hi > hi ) || ( ( A.hi == hi ) && ( A.lo > lo ) ) ); }
36 inline bool operator<( const U128 &A ) const { return !( ( A.hi > hi ) || ( ( A.hi == hi ) && ( A.lo > lo ) ) ); }
38 U128 operator++( int )
46 U128 operator--( int )
55 U128& operator=( const U128
[all...]
H A DBigNum128.cpp27 U128 UInt64mult(const uint64_t A, const uint64_t B)
29 U128 result;
47 return U128(X, 0) + U128(z1, uint64_t(z0) << 32) + U128(0, Y);
H A DIOAudioTimeIntervalFilter.cpp258 mFilteredSnapshot = (U128(rawSnapshot) - ( U128( mExpectedInterval ) << mIIRCoef )) << mIIRCoef;
259 IIR( &mFilteredSnapshot, U128(rawSnapshot) << mIIRCoef, mIIRCoef );
261 U128 raw_offset = ( U128(rawSnapshot) << mIIRCoef ) - mFilteredSnapshot;
271 IIR( &mFilteredSnapshot, U128(rawSnapshot) << mIIRCoef, mIIRCoef );
273 U128 raw_offset = ( U128(rawSnapshot) << mIIRCoef ) - mFilteredSnapshot;
285 void IOAudioTimeIntervalFilterIIR::IIR(U128* filterVal, U128 inpu
[all...]
H A DIOAudioTimeIntervalFilter.h175 virtual void IIR(U128* filterVal, U128 input, int shiftAmount);
178 U128 mFilteredSnapshot;
179 U128 mFilteredOffset;
234 U128 FIR(uint64_t *history, uint64_t input);

Completed in 87 milliseconds