/external/aac/libFDK/include/ |
H A D | fixmul.h | 122 inline LONG fixmuldiv2_DD (const LONG a, const LONG b) 124 return (LONG) ((((INT64)a) * b) >> 32) ; 135 inline LONG fixmuldiv2BitExact_DD (const LONG a, const LONG b) 137 return (LONG) ((((INT64)a) * b) >> 32) ; 143 inline LONG fixmul_DD (const LONG [all...] |
H A D | scale.h | 205 ( (((LONG)(src)>>(scale)) > (LONG)(((1U)<<((dBits)-1))-1)) ? (LONG)(((1U)<<((dBits)-1))-1) \ 206 : (((LONG)(src)>>(scale)) < ~((LONG)(((1U)<<((dBits)-1))-1))) ? ~((LONG)(((1U)<<((dBits)-1))-1)) \ 207 : ((LONG)(src) >> (scale)) ) 212 ( ((LONG)(src) > ((LONG)(((1U)<<((dBits)-1))-1)>>(scale))) ? (LONG)((( [all...] |
H A D | common_fix.h | 141 #define FX_DBL2FXCONST_SGL(val) ( ( ((((val) >> (DFRACT_BITS-FRACT_BITS-1)) + 1) > (((LONG)1<<FRACT_BITS)-1)) && ((LONG)(val) > 0) ) ? \ 142 (FIXP_SGL)(SHORT)(((LONG)1<<(FRACT_BITS-1))-1):(FIXP_SGL)(SHORT)((((val) >> (DFRACT_BITS-FRACT_BITS-1)) + 1) >> 1) ) 149 typedef LONG FIXP_DBL; 164 ((( (double)(val) * (DFRACT_FIX_SCALE) + 0.5 ) >= (double)(MAXVAL_DBL) ) ? (LONG)(MAXVAL_DBL) : (LONG)( (double)(val) * (double)(DFRACT_FIX_SCALE) + 0.5)) : \ 165 ((( (double)(val) * (DFRACT_FIX_SCALE) - 0.5) <= (double)(MINVAL_DBL_CONST) ) ? (LONG)(MINVAL_DBL_CONST) : (LONG)( (double)(val) * (double)(DFRACT_FIX_SCALE) - 0.5)) ) 170 #define FL2FX_DBL(val) ( (val)>0.0f ? (LONG)( (val)*(float)(DFRACT_FIX_SCALE)+0.5f ) : (LONG)( (va [all...] |
H A D | FDK_trigFcts.h | 98 #define Q(format) ((FIXP_DBL)(((LONG)1) << (format))) 153 s = ((LONG)residual) >> shift; 177 LONG sl, cl; 184 sl = (LONG)tmp.v.re; 185 cl = (LONG)tmp.v.im; 189 sl = (LONG)tmp.v.im; 190 cl = (LONG)tmp.v.re;
|
/external/aac/libFDK/include/arm/ |
H A D | scale.h | 144 ( (((LONG)(src) ^ ((LONG)(src) >> (DFRACT_BITS-1)))>>(scale)) > (LONG)(((1U)<<((dBits)-1))-1)) \ 145 ? ((LONG)(src) >> (DFRACT_BITS-1)) ^ (LONG)(((1U)<<((dBits)-1))-1) \ 146 : ((LONG)(src) >> (scale)) 149 ( ((LONG)(src) ^ ((LONG)(src) >> (DFRACT_BITS-1))) > ((LONG)(((1U)<<((dBits)-1))-1) >> (scale)) ) \ 150 ? ((LONG)(sr [all...] |
H A D | clz_arm.h | 99 inline INT fixnormz_D(LONG value) 106 inline INT fixnorm_D(LONG value)
|
H A D | cplx_mul.h | 110 LONG tmp1,tmp2; 111 const LONG w = wpk.w; 135 LONG tmp1, tmp2; 159 LONG tmp1, tmp2; 184 LONG tmp1, tmp2; 197 LONG discard;
|
/external/webrtc/webrtc/system_wrappers/source/ |
H A D | atomic32_win.cc | 22 static_assert(sizeof(value_) == sizeof(LONG), 32 reinterpret_cast<volatile LONG*>(&value_))); 37 reinterpret_cast<volatile LONG*>(&value_))); 41 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), 46 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), 51 const LONG old_value = InterlockedCompareExchange( 52 reinterpret_cast<volatile LONG*>(&value_),
|
/external/lzma/CPP/Windows/ |
H A D | Registry.h | 12 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
30 LONG Create(HKEY parentKey, LPCTSTR keyName,
35 LONG Open(HKEY parentKey, LPCTSTR keyName, REGSAM accessMask = KEY_ALL_ACCESS) throw();
37 LONG Close() throw();
39 LONG DeleteSubKey(LPCTSTR subKeyName) throw();
40 LONG RecurseDeleteKey(LPCTSTR subKeyName) throw();
42 LONG DeleteValue(LPCTSTR name) throw();
44 LONG DeleteValue(LPCWSTR name);
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValu [all...] |
H A D | Registry.cpp | 19 LONG CKey::Create(HKEY parentKey, LPCTSTR keyName,
26 LONG res = RegCreateKeyEx(parentKey, keyName, 0, keyClass,
38 LONG CKey::Open(HKEY parentKey, LPCTSTR keyName, REGSAM accessMask) throw()
42 LONG res = RegOpenKeyEx(parentKey, keyName, 0, accessMask, &key);
52 LONG CKey::Close() throw()
54 LONG res = ERROR_SUCCESS;
65 LONG CKey::DeleteSubKey(LPCTSTR subKeyName) throw()
71 LONG CKey::RecurseDeleteKey(LPCTSTR subKeyName) throw()
74 LONG res = key.Open(_object, subKeyName, KEY_READ | KEY_WRITE);
100 LONG CKe [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
H A D | atomicops_internals_x86_msvc.cc | 55 LONG result = InterlockedCompareExchange( 56 reinterpret_cast<volatile LONG*>(ptr), 57 static_cast<LONG>(new_value), 58 static_cast<LONG>(old_value)); 64 LONG result = InterlockedExchange( 65 reinterpret_cast<volatile LONG*>(ptr), 66 static_cast<LONG>(new_value)); 73 reinterpret_cast<volatile LONG*>(ptr), 74 static_cast<LONG>(increment)) + increment;
|
/external/aac/libFDK/include/mips/ |
H A D | clz_mips.h | 96 inline INT fixnormz_D(LONG value) 107 INT inline fixnormz_D(LONG value)
|
/external/webrtc/webrtc/system_wrappers/include/ |
H A D | fix_interlocked_exchange_pointer_win.h | 28 // doing a (LONG) C-style cast that triggers invariably the warning C4312 when 32 reinterpret_cast<volatile LONG*>(target), 33 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
|
/external/curl/include/curl/ |
H A D | curl.h | 862 #define LONG CURLOPTTYPE_LONG macro 884 CINIT(PORT, LONG, 3), 916 CINIT(TIMEOUT, LONG, 13), 927 CINIT(INFILESIZE, LONG, 14), 949 CINIT(LOW_SPEED_LIMIT, LONG, 19), 952 CINIT(LOW_SPEED_TIME, LONG, 20), 960 CINIT(RESUME_FROM, LONG, 21), 979 CINIT(CRLF, LONG, 27), 994 CINIT(SSLVERSION, LONG, 32), 997 CINIT(TIMECONDITION, LONG, 3 [all...] |
/external/aac/libFDK/include/x86/ |
H A D | clz_x86.h | 96 inline INT fixnormz_D(LONG value) 108 inline INT fixnorm_D(LONG value) 129 inline INT fixnormz_D(LONG value) 141 inline INT fixnorm_D(LONG value)
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
H A D | TypeTag.java | 25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG); field in interface:TypeTag
|
/external/aac/libAACenc/src/ |
H A D | chaosmeasure.cpp | 112 left = (FIXP_DBL)((LONG)paMDCTDataNM0[i]^((LONG)paMDCTDataNM0[i]>>(DFRACT_BITS-1))); 113 center = (FIXP_DBL)((LONG)paMDCTDataNM0[i+2]^((LONG)paMDCTDataNM0[i+2]>>(DFRACT_BITS-1))); 116 FIXP_DBL right = (FIXP_DBL)((LONG)paMDCTDataNM0[j+2]^((LONG)paMDCTDataNM0[j+2]>>(DFRACT_BITS-1)));
|
/external/google-breakpad/src/third_party/curl/ |
H A D | curl.h | 644 #define LONG CURLOPTTYPE_LONG macro 665 CINIT(PORT, LONG, 3), 697 CINIT(TIMEOUT, LONG, 13), 708 CINIT(INFILESIZE, LONG, 14), 730 CINIT(LOW_SPEED_LIMIT, LONG, 19), 733 CINIT(LOW_SPEED_TIME, LONG, 20), 741 CINIT(RESUME_FROM, LONG, 21), 759 CINIT(CRLF, LONG, 27), 774 CINIT(SSLVERSION, LONG, 32), 777 CINIT(TIMECONDITION, LONG, 3 [all...] |
/external/aac/libSBRdec/src/ |
H A D | sbr_crc.h | 120 LONG NrCrcBits);
|
/external/compiler-rt/lib/profile/ |
H A D | InstrProfilingPort.h | 34 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \ 35 (LONG)OldV)
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/ |
H A D | PrimitiveName.java | 25 BOOLEAN, BYTE, SHORT, INT, LONG, CHAR, FLOAT, DOUBLE; enum constant in enum:PrimitiveName 52 case LONG: 53 return LONG; 79 return LONG;
|
/external/lzma/CPP/Windows/Control/ |
H A D | PropertyPage.h | 27 virtual LONG OnSetActive() { return false; } // false = OK
28 virtual LONG OnSetActive(const PSHNOTIFY *) { return OnSetActive(); }
29 virtual LONG OnApply() { return PSNRET_NOERROR; }
30 virtual LONG OnApply(const PSHNOTIFY *) { return OnApply(); }
|
/external/skia/include/views/ |
H A D | SkOSWindow_Win.h | 114 LONG fStyle; 115 LONG fExStyle; 117 LONG fScreenWidth; 118 LONG fScreenHeight; 119 LONG fScreenBits;
|
/external/libchrome/base/ |
H A D | atomicops_internals_x86_msvc.h | 32 LONG result = _InterlockedCompareExchange( 33 reinterpret_cast<volatile LONG*>(ptr), 34 static_cast<LONG>(new_value), 35 static_cast<LONG>(old_value)); 41 LONG result = _InterlockedExchange( 42 reinterpret_cast<volatile LONG*>(ptr), 43 static_cast<LONG>(new_value)); 50 reinterpret_cast<volatile LONG*>(ptr), 51 static_cast<LONG>(increment)) + increment;
|
/external/v8/src/base/ |
H A D | atomicops_internals_x86_msvc.h | 28 LONG result = InterlockedCompareExchange( 29 reinterpret_cast<volatile LONG*>(ptr), 30 static_cast<LONG>(new_value), 31 static_cast<LONG>(old_value)); 37 LONG result = InterlockedExchange( 38 reinterpret_cast<volatile LONG*>(ptr), 39 static_cast<LONG>(new_value)); 46 reinterpret_cast<volatile LONG*>(ptr), 47 static_cast<LONG>(increment)) + increment;
|