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

1 2 3

  /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/EdkCompatibilityPkg/Foundation/Framework/Guid/DataHubRecords/
DataHubSubClass.h 48 INT16 Exponent;
53 UINT16 Exponent;
  /external/pdfium/third_party/lcms/src/
cmshalf.c 394 static cmsUInt32Number Exponent[64] = {
    [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 };
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
NativeFormatting.h 19 enum class FloatStyle { Exponent, ExponentUpper, Fixed, Percent };
  /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...]
  /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...]
  /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; }
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
fixcid.py 206 Exponent = '[eE][-+]?[0-9]+'
207 Pointfloat = '\([0-9]+\.[0-9]*\|\.[0-9]+\)\(' + Exponent + '\)?'
208 Expfloat = '[0-9]+' + Exponent
  /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...]

Completed in 836 milliseconds

1 2 3