Searched refs:LONG (Results 1 - 25 of 277) 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.h197 ( (((LONG)(src)>>(scale)) > (LONG)(((1U)<<((dBits)-1))-1)) ? (LONG)(((1U)<<((dBits)-1))-1) \
198 : (((LONG)(src)>>(scale)) < ~((LONG)(((1U)<<((dBits)-1))-1))) ? ~((LONG)(((1U)<<((dBits)-1))-1)) \
199 : ((LONG)(src) >> (scale)) )
204 ( ((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/qemu/distrib/sdl-1.2.12/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/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/kernel-headers/original/asm-mips/fw/arc/
H A Dtypes.h18 typedef long LONG __attribute__ ((__mode__ (__SI__))); typedef
27 typedef LONG _PCHAR;
28 typedef LONG _PSHORT;
29 typedef LONG _PLARGE_INTEGER;
30 typedef LONG _PLONG;
31 typedef LONG _PUCHAR;
32 typedef LONG _PUSHORT;
33 typedef LONG _PULONG;
34 typedef LONG _PVOID;
43 typedef long LONG __attribute_ typedef
[all...]
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.h78 STDMETHODIMP accHitTest(LONG x_left, LONG y_top, VARIANT* child);
81 STDMETHODIMP accLocation(LONG* x_left,
82 LONG* y_top,
83 LONG* width,
84 LONG* height,
88 STDMETHODIMP accNavigate(LONG nav_dir, VARIANT start, VARIANT* end);
94 STDMETHODIMP get_accChildCount(LONG* child_count);
127 STDMETHODIMP accSelect(LONG flags_sel, VARIANT var_id);
131 LONG* topic_i
[all...]
/external/chromium/base/win/
H A Dregistry.h31 LONG Create(HKEY rootkey, const wchar_t* subkey, REGSAM access);
33 LONG CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
36 LONG Open(HKEY rootkey, const wchar_t* subkey, REGSAM access);
39 LONG CreateKey(const wchar_t* name, REGSAM access);
42 LONG OpenKey(const wchar_t* name, REGSAM access);
49 LONG ReadName(int index, std::wstring* name) const;
56 LONG DeleteKey(const wchar_t* name);
59 LONG DeleteValue(const wchar_t* name);
63 LONG ReadValue(const wchar_t* name, void* data, DWORD* dsize,
65 LONG ReadValu
[all...]
H A Dregistry.cc42 LONG RegKey::Create(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
47 LONG RegKey::CreateWithDisposition(HKEY rootkey, const wchar_t* subkey,
53 LONG result = RegCreateKeyEx(rootkey, subkey, 0, NULL,
59 LONG RegKey::Open(HKEY rootkey, const wchar_t* subkey, REGSAM access) {
64 LONG result = RegOpenKeyEx(rootkey, subkey, 0, access, &key_);
68 LONG RegKey::CreateKey(const wchar_t* name, REGSAM access) {
73 LONG result = RegCreateKeyEx(key_, name, 0, NULL, REG_OPTION_NON_VOLATILE,
81 LONG RegKey::OpenKey(const wchar_t* name, REGSAM access) {
86 LONG result = RegOpenKeyEx(key_, name, 0, access, &subkey);
106 LONG resul
[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/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.12/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)));
/external/chromium/base/
H A Dfix_wp64.h20 // doing a (LONG) C-style cast that triggers invariably the warning C4312 when
24 reinterpret_cast<volatile LONG*>(target),
25 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
32 // SetWindowLongX(). The problem is that this function takes a LONG argument
35 return ::SetWindowLongA(window, index, static_cast<LONG>(new_long));
42 return ::SetWindowLongW(window, index, static_cast<LONG>(new_long));
63 return ::SetClassLongA(window, index, static_cast<LONG>(new_long));
70 return ::SetClassLongW(window, index, static_cast<LONG>(new_long));
H A Datomicops_internals_x86_msvc.h19 LONG result = InterlockedCompareExchange(
20 reinterpret_cast<volatile LONG*>(ptr),
21 static_cast<LONG>(new_value),
22 static_cast<LONG>(old_value));
28 LONG result = InterlockedExchange(
29 reinterpret_cast<volatile LONG*>(ptr),
30 static_cast<LONG>(new_value));
37 reinterpret_cast<volatile LONG*>(ptr),
38 static_cast<LONG>(increment)) + increment;
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_accessibility.h44 STDMETHODIMP get_accChildCount(LONG* child_count);
53 STDMETHODIMP accNavigate(LONG nav_dir, VARIANT start, VARIANT* end);
77 STDMETHODIMP accLocation(LONG* x_left, LONG* y_top, LONG* width, LONG* height,
81 STDMETHODIMP accHitTest(LONG x_left, LONG y_top, VARIANT* child);
93 STDMETHODIMP accSelect(LONG flags_sel, VARIANT var_id);
98 LONG* topic_i
[all...]
/external/kernel-headers/original/asm-mips/
H A Dsgiarcs.h188 LONG load; /* Load an executable image. */
189 LONG invoke; /* Invoke a standalong image. */
190 LONG exec; /* Load and begin execution of a
192 LONG halt; /* Halt the machine. */
193 LONG pdown; /* Power down the machine. */
194 LONG restart; /* XXX soft reset??? */
195 LONG reboot; /* Reboot the machine. */
196 LONG imode; /* Enter PROM interactive mode. */
197 LONG _unused1; /* Was ReturnFromMain(). */
200 LONG next_componen
[all...]
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
H A DSDL_dx5events_c.h29 extern LONG
/external/skia/src/ports/
H A DSkThread_win.cpp22 return _InterlockedIncrement(reinterpret_cast<LONG*>(addr)) - 1;
26 return _InterlockedDecrement(reinterpret_cast<LONG*>(addr)) + 1;
/external/aac/libSBRdec/src/
H A Dsbr_crc.h120 LONG NrCrcBits);
/external/v8/src/
H A Datomicops_internals_x86_msvc.h42 LONG result = InterlockedCompareExchange(
43 reinterpret_cast<volatile LONG*>(ptr),
44 static_cast<LONG>(new_value),
45 static_cast<LONG>(old_value));
51 LONG result = InterlockedExchange(
52 reinterpret_cast<volatile LONG*>(ptr),
53 static_cast<LONG>(new_value));
60 reinterpret_cast<volatile LONG*>(ptr),
61 static_cast<LONG>(increment)) + increment;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DWireFormat.java79 LONG(0L), enum constant in enum:WireFormat.JavaType
110 INT64 (JavaType.LONG , WIRETYPE_VARINT ),
111 UINT64 (JavaType.LONG , WIRETYPE_VARINT ),
113 FIXED64 (JavaType.LONG , WIRETYPE_FIXED64 ),
131 SFIXED64(JavaType.LONG , WIRETYPE_FIXED64 ),
133 SINT64 (JavaType.LONG , WIRETYPE_VARINT );

Completed in 583 milliseconds

1234567891011>>