HomeSort by relevance Sort by last modified time
    Searched refs:Exponent (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/DataHubRecords/
DataHubSubClass.h 48 INT16 Exponent;
53 UINT16 Exponent;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/
ProcessorConv.c 140 INT16 Exponent;
148 Exponent = Base10Data->Exponent;
150 Exponent += 1;
151 while (Exponent != 0) {
152 if (Exponent > 0) {
154 Exponent--;
157 Exponent++;
ConvLib.c 531 INT16 Exponent;
539 Exponent = Base10Data->Exponent;
541 Exponent -= 6;
542 while (Exponent != 0) {
543 if (Exponent > 0) {
545 Exponent--;
548 Exponent++;
583 UINT16 Exponent;
591 Exponent = Base2Data->Exponent;
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Dxe/SmbiosMiscDxe/
MiscBiosVendorFunction.c 25 This function returns the value & exponent to Base2 for a given
28 @param Value The hex value which is to be converted into value-exponent form
29 @param Exponent The exponent out of the conversion
31 @retval EFI_SUCCESS All parameters were valid and *Value & *Exponent have been set.
38 OUT UINTN *Exponent
41 if ((Value == NULL) || (Exponent == NULL)) {
47 (*Exponent)++;
69 UINT16 Exponent;
72 Exponent = Base2Data->Exponent;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/MiscSubClassPlatformDxe/
MiscBiosVendorFunction.c 20 This function returns the value & exponent to Base2 for a given
23 @param Value The hex value which is to be converted into value-exponent form
24 @param Exponent The exponent out of the conversion
26 @retval EFI_SUCCESS All parameters were valid and *Value & *Exponent have been set.
33 OUT UINTN *Exponent
36 if ((Value == NULL) || (Exponent == NULL)) {
42 (*Exponent)++;
64 UINT16 Exponent;
67 Exponent = Base2Data->Exponent;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/MiscSubClassPlatformDxe/
MiscBiosVendorFunction.c 20 This function returns the value & exponent to Base2 for a given
23 @param Value The hex value which is to be converted into value-exponent form
24 @param Exponent The exponent out of the conversion
26 @retval EFI_SUCCESS All parameters were valid and *Value & *Exponent have been set.
33 OUT UINTN *Exponent
36 if ((Value == NULL) || (Exponent == NULL)) {
42 (*Exponent)++;
64 UINT16 Exponent;
67 Exponent = Base2Data->Exponent;
    [all...]
  /external/gemmlowp/fixedpoint/
fixedpoint_msa.h 273 template <int Exponent>
274 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, v4i32, 1> {
276 static_assert(Exponent >= 0 && Exponent < 32, "");
277 if (Exponent < 5) {
278 for (int i = 0; i < Exponent; i++) {
283 // Saturate each signed 32-bit element to (32 - Exponent)
285 v4i32 res = __builtin_msa_sat_s_w(x, 31 - Exponent);
290 // will have Exponent trailing zero bits after the shift. Those
292 res = __builtin_msa_slli_w(res, Exponent);
    [all...]
fixedpoint_neon.h 270 inline int32x4_t RoundingDivideByPOT(int32x4_t x, int exponent) {
271 const int32x4_t shift_vec = vdupq_n_s32(-exponent);
278 inline int16x8_t RoundingDivideByPOT(int16x8_t x, int exponent) {
279 const int16x8_t shift_vec = vdupq_n_s16(-exponent);
285 template <int Exponent>
286 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, 1> {
287 static int32x4_t eval(int32x4_t x) { return vqshlq_n_s32(x, Exponent); }
290 template <int Exponent>
291 struct ImplSaturatingRoundingMultiplyByPOT<Exponent, int32x4_t, -1> {
295 return vrshrq_n_s32(fixed_up_x, -Exponent);
    [all...]
fixedpoint.h 335 inline IntegerType RoundingDivideByPOT(IntegerType x, int exponent) {
336 assert(exponent >= 0);
337 assert(exponent <= 31);
338 const IntegerType mask = Dup<IntegerType>((1ll << exponent) - 1);
344 return Add(ShiftRight(x, exponent),
349 // of two, with either a positive exponent (equivalent to an arithmetic
350 // left shift, saturating) or a negative exponent (equivalent to an arithmetic
352 template <int Exponent, typename IntegerType,
353 int ExponentSign = (Exponent > 0 ? 1 : Exponent < 0 ? -1 : 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
backtracking.rb 192 : ('0'..'9')+ '.' ('0'..'9')* Exponent? FloatTypeSuffix?
193 | '.' ('0'..'9')+ Exponent? FloatTypeSuffix?
194 | ('0'..'9')+ Exponent FloatTypeSuffix?
195 | ('0'..'9')+ Exponent? FloatTypeSuffix
199 Exponent : ('e'|'E') ('+'|'-')? ('0'..'9')+ ;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/
SetupFunctions.c 78 for (Index = 0; Index < (UINTN) Data->Exponent; Index++) {
93 for (Index = 0; Index < (UINTN) Data->Exponent; Index++) {
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/SmBiosMiscDxe/
MiscBiosVendorFunction.c 99 This function returns the value & exponent to Base2 for a given
102 @param Value The hex value which is to be converted into value-exponent form
103 @param Exponent The exponent out of the conversion
105 @retval EFI_SUCCESS All parameters were valid and *Value & *Exponent have been set.
112 OUT UINTN *Exponent
115 if ((Value == NULL) || (Exponent == NULL)) {
121 (*Exponent)++;
143 UINT16 Exponent;
146 Exponent = Base2Data->Exponent;
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 39 int Exponent() const { return static_cast<int>(((u_ & kExponentMask) >> kSignificandSize) - kExponentBias); }
47 int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandSize; }
  /external/v8/src/
double.h 39 return DiyFp(Significand(), Exponent());
46 int e = Exponent();
78 int Exponent() const {
125 return DiyFp(Significand() * 2 + 1, Exponent() - 1);
130 // exponent as m_plus.
144 // Note: denormals have the same exponent as the smallest normals.
181 int exponent = diy_fp.e(); local
184 exponent++;
186 if (exponent >= kMaxExponent) {
189 if (exponent < kDenormalExponent)
    [all...]
bignum-dtoa.cc 17 static int NormalizedExponent(uint64_t significand, int exponent) {
21 exponent = exponent - 1;
23 return exponent;
29 static int EstimatePower(int exponent);
73 int exponent = Double(v).Exponent(); local
74 int normalized_exponent = NormalizedExponent(significand, exponent);
244 // exponent (decimal_point), when rounding upwards.
332 // v = f * 2^exponent and 2^52 <= f < 2^53
430 int exponent = Double(v).Exponent(); local
482 int exponent = Double(v).Exponent(); local
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };

Completed in 939 milliseconds

1 2 3 4 5