Home
last modified time | relevance | path

Searched refs:LONG (Results 1 – 25 of 821) sorted by relevance

12345678910>>...33

/external/aac/libFDK/include/
Dfixmul.h122 inline LONG fixmuldiv2_DD (const LONG a, const LONG b) in fixmuldiv2_DD()
124 return (LONG) ((((INT64)a) * b) >> 32) ; in fixmuldiv2_DD()
135 inline LONG fixmuldiv2BitExact_DD (const LONG a, const LONG b) in fixmuldiv2BitExact_DD()
137 return (LONG) ((((INT64)a) * b) >> 32) ; in fixmuldiv2BitExact_DD()
143 inline LONG fixmul_DD (const LONG a, const LONG b) in fixmul_DD()
154 inline LONG fixmulBitExact_DD (const LONG a, const LONG b) in fixmulBitExact_DD()
156 return ( (LONG) ((((INT64)a) * b) >> 32) ) << 1; in fixmulBitExact_DD()
162 inline LONG fixmuldiv2_SS (const SHORT a, const SHORT b) in fixmuldiv2_SS()
163 { return ((LONG)a*b); } in fixmuldiv2_SS()
168 inline LONG fixmul_SS (const SHORT a, const SHORT b) in fixmul_SS()
[all …]
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)(((1U)<<((dBits)-1))-1) …
213 … : ((LONG)(src) < ~((LONG)(((1U)<<((dBits)-1))-1)>>(scale))) ? ~((LONG)(((1U)<<((dBits)-1))-1)) \
214 : ((LONG)(src) << (scale)) )
230 …( ((LONG)(src) > ((LONG)(((1U)<<((dBits)-1))-1)>>(scale))) ? (LONG)(((1U)<<((dBits)-1))-1) …
231 … : ((LONG)(src) < ~((LONG)(((1U)<<((dBits)-1))-2)>>(scale))) ? ~((LONG)(((1U)<<((dBits)-1))-2)) \
232 : ((LONG)(src) << (scale)) )
237 …( (((LONG)(src)>>(scale)) > (LONG)(((1U)<<((dBits)-1))-1)) ? (LONG)(((1U)<<((dBits)-1))-1) …
[all …]
Dcommon_fix.h141 …(val) ( ( ((((val) >> (DFRACT_BITS-FRACT_BITS-1)) + 1) > (((LONG)1<<FRACT_BITS)-1)) && ((LONG)(val…
142 …(FIXP_SGL)(SHORT)(((LONG)1<<(FRACT_BITS-1))-1):(FIXP_SGL)(SHORT)((((val) >> (DFRACT_BITS-FRACT_BIT…
149 typedef LONG FIXP_DBL;
164 …(val) * (DFRACT_FIX_SCALE) + 0.5 ) >= (double)(MAXVAL_DBL) ) ? (LONG)(MAXVAL_DBL) : (LONG)( (doubl…
165 …DFRACT_FIX_SCALE) - 0.5) <= (double)(MINVAL_DBL_CONST) ) ? (LONG)(MINVAL_DBL_CONST) : (LONG)( (do…
170 #define FL2FX_DBL(val) ( (val)>0.0f ? (LONG)( (val)*(float)(DFRACT_FIX_SCALE)+0.5f ) : (LONG)( (val…
175 #define FX_SGL2FX_ACC(val) ((FIXP_ACC)((LONG)(val)<<(ACCU_BITS-FRACT_BITS)))
176 #define FX_SGL2FX_DBL(val) ((FIXP_DBL)((LONG)(val)<<(DFRACT_BITS-FRACT_BITS)))
190 FDK_INLINE LONG fMult(SHORT a, SHORT b) { return fixmul_SS(a, b); } in fMult()
191 FDK_INLINE LONG fMult(SHORT a, LONG b) { return fixmul_SD(a, b); } in fMult()
[all …]
DFDK_trigFcts.h98 #define Q(format) ((FIXP_DBL)(((LONG)1) << (format)))
153 s = ((LONG)residual) >> shift; in fixp_sin_cos_residual_inline()
177 LONG sl, cl; in fixp_sin_cos_residual_inline()
184 sl = (LONG)tmp.v.re; in fixp_sin_cos_residual_inline()
185 cl = (LONG)tmp.v.im; in fixp_sin_cos_residual_inline()
189 sl = (LONG)tmp.v.im; in fixp_sin_cos_residual_inline()
190 cl = (LONG)tmp.v.re; in fixp_sin_cos_residual_inline()
/external/lzma/CPP/Windows/
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 SetValue(LPCTSTR valueName, bool value) throw();
[all …]
DRegistry.cpp21 LONG CKey::Create(HKEY parentKey, LPCTSTR keyName, in Create()
28 LONG res = RegCreateKeyEx(parentKey, keyName, 0, keyClass, in Create()
40 LONG CKey::Open(HKEY parentKey, LPCTSTR keyName, REGSAM accessMask) throw() in Open()
44 LONG res = RegOpenKeyEx(parentKey, keyName, 0, accessMask, &key); in Open()
54 LONG CKey::Close() throw() in Close()
56 LONG res = ERROR_SUCCESS; in Close()
67 LONG CKey::DeleteSubKey(LPCTSTR subKeyName) throw() in DeleteSubKey()
73 LONG CKey::RecurseDeleteKey(LPCTSTR subKeyName) throw() in RecurseDeleteKey()
76 LONG res = key.Open(_object, subKeyName, KEY_READ | KEY_WRITE); in RecurseDeleteKey()
102 LONG CKey::DeleteValue(LPCTSTR name) throw() in DeleteValue()
[all …]
/external/curl/include/curl/
Dcurl.h868 #define LONG CURLOPTTYPE_LONG macro
890 CINIT(PORT, LONG, 3),
922 CINIT(TIMEOUT, LONG, 13),
933 CINIT(INFILESIZE, LONG, 14),
955 CINIT(LOW_SPEED_LIMIT, LONG, 19),
958 CINIT(LOW_SPEED_TIME, LONG, 20),
966 CINIT(RESUME_FROM, LONG, 21),
985 CINIT(CRLF, LONG, 27),
1000 CINIT(SSLVERSION, LONG, 32),
1003 CINIT(TIMECONDITION, LONG, 33),
[all …]
/external/google-breakpad/src/third_party/curl/
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, 33),
[all …]
/external/aac/libFDK/include/arm/
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)(src) >> (DFRACT_BITS-1)) ^ (LONG)(((1U)<<((dBits)-1))-1) \
151 : ((LONG)(src) << (scale))
Dcplx_mul.h110 LONG tmp1,tmp2; in cplxMultDiv2()
111 const LONG w = wpk.w; in cplxMultDiv2()
135 LONG tmp1, tmp2; in cplxMultDiv2()
159 LONG tmp1, tmp2; in cplxMultAddDiv2()
184 LONG tmp1, tmp2; in cplxMultDiv2()
197 LONG discard; in cplxMultDiv2()
/external/protobuf/src/google/protobuf/stubs/
Datomicops_internals_x86_msvc.cc55 LONG result = InterlockedCompareExchange( in NoBarrier_CompareAndSwap()
56 reinterpret_cast<volatile LONG*>(ptr), in NoBarrier_CompareAndSwap()
57 static_cast<LONG>(new_value), in NoBarrier_CompareAndSwap()
58 static_cast<LONG>(old_value)); in NoBarrier_CompareAndSwap()
64 LONG result = InterlockedExchange( in NoBarrier_AtomicExchange()
65 reinterpret_cast<volatile LONG*>(ptr), in NoBarrier_AtomicExchange()
66 static_cast<LONG>(new_value)); in NoBarrier_AtomicExchange()
73 reinterpret_cast<volatile LONG*>(ptr), in Barrier_AtomicIncrement()
74 static_cast<LONG>(increment)) + increment; in Barrier_AtomicIncrement()
/external/webrtc/webrtc/system_wrappers/source/
Datomic32_win.cc22 static_assert(sizeof(value_) == sizeof(LONG), in Atomic32()
32 reinterpret_cast<volatile LONG*>(&value_))); in operator ++()
37 reinterpret_cast<volatile LONG*>(&value_))); in operator --()
41 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), in operator +=()
46 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(&value_), in operator -=()
51 const LONG old_value = InterlockedCompareExchange( in CompareExchange()
52 reinterpret_cast<volatile LONG*>(&value_), in CompareExchange()
/external/llvm/test/CodeGen/ARM/
Dfast-isel-intrinsic.ll4 …ng-calls -verify-machineinstrs | FileCheck %s --check-prefix=ARM-LONG --check-prefix=ARM-LONG-MACHO
5 …long-calls -verify-machineinstrs | FileCheck %s --check-prefix=ARM-LONG --check-prefix=ARM-LONG-ELF
6 …thumbv7-apple-ios -mattr=+long-calls -verify-machineinstrs | FileCheck %s --check-prefix=THUMB-LONG
24 ; ARM-LONG-LABEL: t1:
26 ; ARM-LONG-MACHO: {{(movw r3, :lower16:L_memset\$non_lazy_ptr)|(ldr r3, .LCPI)}}
27 ; ARM-LONG-MACHO: {{(movt r3, :upper16:L_memset\$non_lazy_ptr)?}}
28 ; ARM-LONG-MACHO: ldr r3, [r3]
30 ; ARM-LONG-ELF: movw r3, :lower16:memset
31 ; ARM-LONG-ELF: movt r3, :upper16:memset
33 ; ARM-LONG: blx r3
[all …]
Dfast-isel-call.ll4 …7-apple-ios -mattr=+long-calls | FileCheck %s --check-prefix=ARM-LONG --check-prefix=ARM-LONG-MACHO
5 …linux-gnueabi -mattr=+long-calls | FileCheck %s --check-prefix=ARM-LONG --check-prefix=ARM-LONG-ELF
6 …namic-no-pic -mtriple=thumbv7-apple-ios -mattr=+long-calls | FileCheck %s --check-prefix=THUMB-LONG
113 ; ARM-LONG: @t10
115 ; ARM-LONG-MACHO: {{(movw)|(ldr)}} [[R:l?r[0-9]*]], {{(:lower16:L_bar\$non_lazy_ptr)|(.LCPI)}}
116 ; ARM-LONG-MACHO: {{(movt [[R]], :upper16:L_bar\$non_lazy_ptr)?}}
117 ; ARM-LONG-MACHO: ldr [[R]], {{\[}}[[R]]{{\]}}
119 ; ARM-LONG-ELF: movw [[R:l?r[0-9]*]], :lower16:bar
120 ; ARM-LONG-ELF: {{(movt [[R]], :upper16:L_bar\$non_lazy_ptr)?}}
122 ; ARM-LONG: blx [[R]]
[all …]
/external/v8/src/base/
Datomicops_internals_x86_msvc.h28 LONG result = InterlockedCompareExchange( in NoBarrier_CompareAndSwap()
29 reinterpret_cast<volatile LONG*>(ptr), static_cast<LONG>(new_value), in NoBarrier_CompareAndSwap()
30 static_cast<LONG>(old_value)); in NoBarrier_CompareAndSwap()
36 LONG result = InterlockedExchange(reinterpret_cast<volatile LONG*>(ptr), in NoBarrier_AtomicExchange()
37 static_cast<LONG>(new_value)); in NoBarrier_AtomicExchange()
43 return InterlockedExchangeAdd(reinterpret_cast<volatile LONG*>(ptr), in Barrier_AtomicIncrement()
44 static_cast<LONG>(increment)) + in Barrier_AtomicIncrement()
/external/aac/libAACenc/src/
Dchaosmeasure.cpp112 left = (FIXP_DBL)((LONG)paMDCTDataNM0[i]^((LONG)paMDCTDataNM0[i]>>(DFRACT_BITS-1))); in FDKaacEnc_FDKaacEnc_CalculateChaosMeasurePeakFast()
113 center = (FIXP_DBL)((LONG)paMDCTDataNM0[i+2]^((LONG)paMDCTDataNM0[i+2]>>(DFRACT_BITS-1))); in FDKaacEnc_FDKaacEnc_CalculateChaosMeasurePeakFast()
116 … FIXP_DBL right = (FIXP_DBL)((LONG)paMDCTDataNM0[j+2]^((LONG)paMDCTDataNM0[j+2]>>(DFRACT_BITS-1))); in FDKaacEnc_FDKaacEnc_CalculateChaosMeasurePeakFast()
/external/libchrome/base/
Datomicops_internals_x86_msvc.h32 LONG result = _InterlockedCompareExchange( in NoBarrier_CompareAndSwap()
33 reinterpret_cast<volatile LONG*>(ptr), in NoBarrier_CompareAndSwap()
34 static_cast<LONG>(new_value), in NoBarrier_CompareAndSwap()
35 static_cast<LONG>(old_value)); in NoBarrier_CompareAndSwap()
41 LONG result = _InterlockedExchange( in NoBarrier_AtomicExchange()
42 reinterpret_cast<volatile LONG*>(ptr), in NoBarrier_AtomicExchange()
43 static_cast<LONG>(new_value)); in NoBarrier_AtomicExchange()
50 reinterpret_cast<volatile LONG*>(ptr), in Barrier_AtomicIncrement()
51 static_cast<LONG>(increment)) + increment; in Barrier_AtomicIncrement()
/external/bison/lib/
Dstrtol.c47 # define INT LONG int
49 # define INT unsigned LONG int
116 # define LONG long long macro
167 # define LONG long macro
242 register unsigned LONG int cutoff; in INTERNAL()
244 register unsigned LONG int i; in INTERNAL()
345 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base; in INTERNAL()
346 cutlim = STRTOL_ULONG_MAX % (unsigned LONG int) base; in INTERNAL()
367 i *= (unsigned LONG int) base; in INTERNAL()
386 ? -((unsigned LONG int) (STRTOL_LONG_MIN + 1)) + 1 in INTERNAL()
[all …]
/external/icu/icu4c/source/common/
Dwintz.c98 LONG result; in detectWindowsType()
122 static LONG openTZRegKey(HKEY *hkey, const char *winid) in openTZRegKey()
126 LONG result; in openTZRegKey()
153 static LONG getTZI(const char *winid, TZI *tzi) in getTZI()
156 LONG result; in getTZI()
176 static LONG getSTDName(const char *winid, char *regStdName, int32_t length) { in getSTDName()
178 LONG result; in getSTDName()
198 static LONG getTZKeyName(char* tzKeyName, int32_t length) { in getTZKeyName()
200 LONG result = FALSE; in getTZKeyName()
288 LONG result; in uprv_detectWindowsTimeZone()
/external/javassist/src/main/javassist/bytecode/analysis/
DExecutor.java89 frame.push(Type.LONG); in execute()
117 evalLoad(Type.LONG, iter.byteAt(pos + 1), frame, subroutine); in execute()
138 evalLoad(Type.LONG, opcode - LLOAD_0, frame, subroutine); in execute()
162 evalArrayLoad(Type.LONG, frame); in execute()
182 evalStore(Type.LONG, iter.byteAt(pos + 1), frame, subroutine); in execute()
203 evalStore(Type.LONG, opcode - LSTORE_0, frame, subroutine); in execute()
227 evalArrayStore(Type.LONG, frame); in execute()
310 evalBinaryMath(Type.LONG, frame); in execute()
322 evalBinaryMath(Type.LONG, frame); in execute()
334 evalBinaryMath(Type.LONG, frame); in execute()
[all …]
/external/compiler-rt/lib/profile/
DInstrProfilingPort.h67 (InterlockedCompareExchange((LONG volatile *)Ptr, (LONG)NewV, (LONG)OldV) == \
68 (LONG)OldV)
70 (DomType *)InterlockedExchangeAdd((LONG volatile *)&PtrVar, \
71 (LONG)sizeof(DomType) * PtrIncr)
/external/aac/libFDK/include/x86/
Dclz_x86.h96 inline INT fixnormz_D(LONG value) in fixnormz_D()
108 inline INT fixnorm_D(LONG value) in fixnorm_D()
129 inline INT fixnormz_D(LONG value) in fixnormz_D()
141 inline INT fixnorm_D(LONG value) in fixnorm_D()
/external/skia/include/views/
DSkOSWindow_Win.h105 LONG fStyle;
106 LONG fExStyle;
108 LONG fScreenWidth;
109 LONG fScreenHeight;
110 LONG fScreenBits;
/external/aac/libFDK/src/
Dfixpoint_math.cpp213 #define ACCU_R (LONG) 0x00008000
219 LONG v = (LONG)(op1); in mul_dbl_sgl_rnd()
222 LONG low = u*(v&SGL_MASK); in mul_dbl_sgl_rnd()
224 LONG high = u * ((v>>FRACT_BITS)<<1); in mul_dbl_sgl_rnd()
226 prod = (LONG)(high+low); in mul_dbl_sgl_rnd()
291 FIXP_SGL frac = (FIXP_SGL)(LONG)(x & 0x3FF); in CalcInvLdData()
292 UINT index3 = (UINT)(LONG)(x >> 10) & 0x1F; in CalcInvLdData()
293 UINT index2 = (UINT)(LONG)(x >> 15) & 0x1F; in CalcInvLdData()
294 UINT index1 = (UINT)(LONG)(x >> 20) & 0x1F; in CalcInvLdData()
300 UINT lookup3f = lookup3 + (UINT)(LONG)fMultDiv2((FIXP_DBL)(0x0016302F),(FIXP_SGL)frac); in CalcInvLdData()
[all …]
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DNumericType.java15 LONG, enumConstant
20 if (this == NumericType.DOUBLE || this == NumericType.LONG) { in moveTypeFor()
36 case LONG: in dexTypeFor()
60 return NumericType.LONG; in fromDexType()

12345678910>>...33