Searched refs:LONG (Results 1 - 25 of 393) sorted by relevance

1234567891011>>

/external/aac/libFDK/include/
H A Dfixmul.h122 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 Dscale.h205 ( (((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 Dcommon_fix.h141 #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 DFDK_trigFcts.h98 #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 Dscale.h144 ( (((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 Dclz_arm.h99 inline INT fixnormz_D(LONG value)
106 inline INT fixnorm_D(LONG value)
H A Dcplx_mul.h110 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 Datomic32_win.cc22 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 DRegistry.h12 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 DRegistry.cpp19 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 Datomicops_internals_x86_msvc.cc55 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 Dclz_mips.h96 inline INT fixnormz_D(LONG value)
107 INT inline fixnormz_D(LONG value)
/external/webrtc/webrtc/system_wrappers/include/
H A Dfix_interlocked_exchange_pointer_win.h28 // 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 Dcurl.h862 #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 Dclz_x86.h96 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 DTypeTag.java25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG); field in interface:TypeTag
/external/aac/libAACenc/src/
H A Dchaosmeasure.cpp112 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 Dcurl.h644 #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 Dsbr_crc.h120 LONG NrCrcBits);
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
H A DPrimitiveName.java25 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 DPropertyPage.h27 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 DSkOSWindow_Win.h105 LONG fStyle;
106 LONG fExStyle;
108 LONG fScreenWidth;
109 LONG fScreenHeight;
110 LONG fScreenBits;
/external/libchrome/base/
H A Datomicops_internals_x86_msvc.h32 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 Datomicops_internals_x86_msvc.h28 LONG result = InterlockedCompareExchange(
29 reinterpret_cast<volatile LONG*>(ptr), static_cast<LONG>(new_value),
30 static_cast<LONG>(old_value));
36 LONG result = InterlockedExchange(reinterpret_cast<volatile LONG*>(ptr),
37 static_cast<LONG>(new_value));
43 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(ptr),
44 static_cast<LONG>(increment)) +
/external/compiler-rt/lib/profile/
H A DInstrProfilingPort.h67 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \
68 (LONG)OldV)
70 (DomType *)InterlockedExchangeAdd((LONG volatile *)&PtrVar, \
71 (LONG)sizeof(DomType) * PtrIncr)

Completed in 1456 milliseconds

1234567891011>>