Searched refs:LONG (Results 1 - 25 of 445) 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...]
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/
H A Dwin_ce_semaphore.h7 LONG MaxCount;
8 volatile LONG CurCount;
17 extern SYNCHHANDLE CreateSemaphoreCE (LPSECURITY_ATTRIBUTES, LONG, LONG, LPCTSTR);
19 extern BOOL ReleaseSemaphoreCE (SYNCHHANDLE, LONG, LPLONG);
/external/lzma/CPP/Windows/
H A DRegistry.h13 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
31 LONG Create(HKEY parentKey, LPCTSTR keyName,
36 LONG Open(HKEY parentKey, LPCTSTR keyName, REGSAM accessMask = KEY_ALL_ACCESS);
38 LONG Close();
40 LONG DeleteSubKey(LPCTSTR subKeyName);
41 LONG RecurseDeleteKey(LPCTSTR subKeyName);
43 LONG DeleteValue(LPCTSTR name);
45 LONG DeleteValue(LPCWSTR name);
48 LONG SetValue(LPCTSTR valueName, UInt32 value);
49 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)
42 LONG res = RegOpenKeyEx(parentKey, keyName, 0, accessMask, &key);
52 LONG CKey::Close()
54 LONG res = ERROR_SUCCESS;
65 LONG CKey::DeleteSubKey(LPCTSTR subKeyName)
71 LONG CKey::RecurseDeleteKey(LPCTSTR subKeyName)
74 LONG res = key.Open(_object, subKeyName, KEY_READ | KEY_WRITE);
100 LONG CKe
[all...]
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.h72 virtual STDMETHODIMP accHitTest(LONG x_left, LONG y_top, VARIANT* child);
78 STDMETHODIMP accLocation(LONG* x_left,
79 LONG* y_top,
80 LONG* width,
81 LONG* height,
85 STDMETHODIMP accNavigate(LONG nav_dir, VARIANT start, VARIANT* end);
91 virtual STDMETHODIMP get_accChildCount(LONG* child_count);
125 STDMETHODIMP accSelect(LONG flags_sel, VARIANT var_id);
131 LONG* topic_i
[all...]
/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)
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Datomic32_win.cc23 COMPILE_ASSERT(sizeof(value_) == sizeof(LONG),
33 reinterpret_cast<volatile LONG*>(&value_)));
38 reinterpret_cast<volatile LONG*>(&value_)));
42 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
47 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_),
52 const LONG old_value = InterlockedCompareExchange(
53 reinterpret_cast<volatile LONG*>(&value_),
/external/chromium_org/ui/gfx/range/
H A Drange_win.cc13 Range::Range(const CHARRANGE& range, LONG total_length) {
37 const LONG kLONGMax = std::numeric_limits<LONG>::max();
38 CHECK_LE(static_cast<LONG>(start()), kLONGMax);
39 CHECK_LE(static_cast<LONG>(end()), kLONGMax);
40 r.cpMin = static_cast<LONG>(start());
41 r.cpMax = static_cast<LONG>(end());
/external/webrtc/src/system_wrappers/source/
H A Datomic32_win.cc25 COMPILE_ASSERT(sizeof(_value) == sizeof(LONG));
36 reinterpret_cast<volatile LONG*>(&_value)));
42 reinterpret_cast<volatile LONG*>(&_value)));
47 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&_value),
53 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&_value),
60 const LONG oldValue = InterlockedCompareExchange(
61 reinterpret_cast<volatile LONG*>(&_value),
/external/chromium_org/third_party/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/chromium_org/base/win/
H A Dregistry.h33 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
35 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
45 LONG OpenKey(const wchar_t* relative_key_name, REGSAM access);
65 LONG GetValueNameAt(int index, std::wstring* name) const;
72 LONG DeleteKey(const wchar_t* name);
76 LONG DeleteEmptyKey(const wchar_t* name);
79 LONG DeleteValue(const wchar_t* name);
85 LONG ReadValueD
[all...]
/external/aac/libFDK/include/mips/
H A Dclz_mips.h96 inline INT fixnormz_D(LONG value)
107 INT inline fixnormz_D(LONG value)
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
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/qemu/include/qemu/
H A Dthread-win32.h7 LONG owner;
11 LONG waiters, target;
/external/webrtc/src/system_wrappers/interface/
H A Dfix_interlocked_exchange_pointer_win.h24 // doing a (LONG) C-style cast that triggers invariably the warning C4312 when
28 reinterpret_cast<volatile LONG*>(target),
29 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-windows.h73 inline LONG FastInterlockedCompareExchange(volatile LONG* ptr,
74 LONG newval, LONG oldval) {
75 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
77 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
78 return ::InterlockedExchange(const_cast<LONG*>(ptr), newval);
80 inline LONG FastInterlockedExchangeAd
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-windows.h72 inline LONG FastInterlockedCompareExchange(volatile LONG* ptr,
73 LONG newval, LONG oldval) {
74 return ::InterlockedCompareExchange(const_cast<LONG*>(ptr), newval, oldval);
76 inline LONG FastInterlockedExchange(volatile LONG* ptr, LONG newval) {
77 return ::InterlockedExchange(const_cast<LONG*>(ptr), newval);
79 inline LONG FastInterlockedExchangeAd
[all...]
/external/chromium_org/win8/metro_driver/ime/
H A Dtext_store.h106 STDMETHOD(FindNextAttrTransition)(LONG acp_start,
107 LONG acp_halt,
111 LONG* acp_next,
113 LONG* found_offset) OVERRIDE;
117 LONG* acp) OVERRIDE;
119 STDMETHOD(GetEmbedded)(LONG acp_pos,
123 STDMETHOD(GetEndACP)(LONG* acp) OVERRIDE;
124 STDMETHOD(GetFormattedText)(LONG acp_start,
125 LONG acp_end,
133 STDMETHOD(GetText)(LONG acp_star
[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/qemu/distrib/sdl-1.2.15/src/video/windib/
H A DSDL_dibevents_c.h29 extern LONG
/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)));

Completed in 2536 milliseconds

1234567891011>>