├── .gitignore ├── .gitmodules ├── Applications ├── AcpiDump │ ├── AcpiDump.c │ ├── AcpiDump.inf │ └── README.md ├── AcpiLoader │ ├── AcpiLoader.c │ ├── AcpiLoader.inf │ ├── AcpiSupport.c │ ├── AcpiSupport.h │ └── README.md ├── FdtDump │ ├── FdtDump.c │ ├── FdtDump.inf │ └── README.md ├── GdbSyms │ ├── GdbSyms.c │ └── GdbSyms.inf ├── GopTool │ ├── GopTool.c │ ├── GopTool.inf │ └── README.md ├── MemResv │ ├── MemResv.c │ ├── MemResv.inf │ └── README.md ├── PciRom │ ├── PciRom.c │ ├── PciRom.inf │ └── README.md ├── RangeIsMapped │ ├── README.md │ ├── RangeIsMapped.c │ └── RangeIsMapped.inf ├── SetCon │ ├── README.md │ ├── SetCon.c │ └── SetCon.inf ├── ShellErrVars │ ├── README.md │ ├── ShellErrVars.c │ └── ShellErrVars.inf ├── ShellMapVar │ ├── README.md │ ├── ShellMapVar.c │ └── ShellMapVar.inf ├── ShellPlatVars │ ├── README.md │ ├── ShellPlatVars.c │ └── ShellPlatVars.inf ├── cat │ ├── README.md │ ├── cat.c │ └── cat.inf ├── dd │ ├── README.md │ ├── args.c │ ├── conv.c │ ├── conv_tab.c │ ├── dd.c │ ├── dd.h │ ├── dd.inf │ ├── extern.h │ ├── misc.c │ └── position.c ├── grep │ ├── README.md │ ├── fastgrep.c │ ├── file.c │ ├── grep.c │ ├── grep.h │ ├── grep.inf │ ├── queue.c │ ├── queue.h │ └── util.c ├── ls │ ├── README.md │ ├── cmp.c │ ├── extern.h │ ├── ls.c │ ├── ls.h │ ├── ls.inf │ └── print.c └── stat │ ├── README.md │ ├── stat.c │ └── stat.inf ├── Drivers └── QemuVideoDxe │ ├── ComponentName.c │ ├── Driver.c │ ├── DriverSupportedEfiVersion.c │ ├── Gop.c │ ├── Initialize.c │ ├── Qemu.h │ ├── QemuVideoDxe.inf │ ├── README.md │ ├── UnalignedIoGcc.c │ ├── UnalignedIoIcc.c │ ├── UnalignedIoInternal.h │ ├── UnalignedIoMsc.c │ ├── UnalignedIoUnsupported.c │ ├── VbeShim.asm │ ├── VbeShim.c │ ├── VbeShim.h │ └── VbeShim.sh ├── Include └── Library │ ├── FTSLib.h │ ├── RegexLib.h │ ├── SoftFloatLib.h │ ├── StdExtLib.h │ └── UtilsLib.h ├── Library ├── FTSLib │ ├── FTSLib.inf │ ├── README.md │ └── fts.c ├── RegexLib │ ├── COPYRIGHT │ ├── README.md │ ├── RegexLib.inf │ ├── cclass.h │ ├── cname.h │ ├── engine.c │ ├── regcomp.c │ ├── regerror.c │ ├── regex2.h │ ├── regexec.c │ ├── regfree.c │ ├── regsub.c │ └── utils.h ├── SoftFloatLib │ ├── AArch64 │ │ └── bindings.c │ ├── README.md │ ├── SoftFloat-3d │ │ ├── COPYING.txt │ │ ├── README.html │ │ ├── README.txt │ │ ├── build │ │ │ ├── Linux-386-GCC │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── Linux-386-SSE2-GCC │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── Linux-x86_64-GCC │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── Win32-MinGW │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── Win32-SSE2-MinGW │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── Win64-MinGW-w64 │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ ├── template-FAST_INT64 │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ │ └── template-not-FAST_INT64 │ │ │ │ ├── Makefile │ │ │ │ └── platform.h │ │ ├── doc │ │ │ ├── SoftFloat-history.html │ │ │ ├── SoftFloat-source.html │ │ │ └── SoftFloat.html │ │ └── source │ │ │ ├── 8086 │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── 8086-SSE │ │ │ ├── extF80M_isSignalingNaN.c │ │ │ ├── f128M_isSignalingNaN.c │ │ │ ├── s_commonNaNToExtF80M.c │ │ │ ├── s_commonNaNToExtF80UI.c │ │ │ ├── s_commonNaNToF128M.c │ │ │ ├── s_commonNaNToF128UI.c │ │ │ ├── s_commonNaNToF16UI.c │ │ │ ├── s_commonNaNToF32UI.c │ │ │ ├── s_commonNaNToF64UI.c │ │ │ ├── s_extF80MToCommonNaN.c │ │ │ ├── s_extF80UIToCommonNaN.c │ │ │ ├── s_f128MToCommonNaN.c │ │ │ ├── s_f128UIToCommonNaN.c │ │ │ ├── s_f16UIToCommonNaN.c │ │ │ ├── s_f32UIToCommonNaN.c │ │ │ ├── s_f64UIToCommonNaN.c │ │ │ ├── s_propagateNaNExtF80M.c │ │ │ ├── s_propagateNaNExtF80UI.c │ │ │ ├── s_propagateNaNF128M.c │ │ │ ├── s_propagateNaNF128UI.c │ │ │ ├── s_propagateNaNF16UI.c │ │ │ ├── s_propagateNaNF32UI.c │ │ │ ├── s_propagateNaNF64UI.c │ │ │ ├── softfloat_raiseFlags.c │ │ │ └── specialize.h │ │ │ ├── extF80M_add.c │ │ │ ├── extF80M_div.c │ │ │ ├── extF80M_eq.c │ │ │ ├── extF80M_eq_signaling.c │ │ │ ├── extF80M_le.c │ │ │ ├── extF80M_le_quiet.c │ │ │ ├── extF80M_lt.c │ │ │ ├── extF80M_lt_quiet.c │ │ │ ├── extF80M_mul.c │ │ │ ├── extF80M_rem.c │ │ │ ├── extF80M_roundToInt.c │ │ │ ├── extF80M_sqrt.c │ │ │ ├── extF80M_sub.c │ │ │ ├── extF80M_to_f128M.c │ │ │ ├── extF80M_to_f16.c │ │ │ ├── extF80M_to_f32.c │ │ │ ├── extF80M_to_f64.c │ │ │ ├── extF80M_to_i32.c │ │ │ ├── extF80M_to_i32_r_minMag.c │ │ │ ├── extF80M_to_i64.c │ │ │ ├── extF80M_to_i64_r_minMag.c │ │ │ ├── extF80M_to_ui32.c │ │ │ ├── extF80M_to_ui32_r_minMag.c │ │ │ ├── extF80M_to_ui64.c │ │ │ ├── extF80M_to_ui64_r_minMag.c │ │ │ ├── extF80_add.c │ │ │ ├── extF80_div.c │ │ │ ├── extF80_eq.c │ │ │ ├── extF80_eq_signaling.c │ │ │ ├── extF80_isSignalingNaN.c │ │ │ ├── extF80_le.c │ │ │ ├── extF80_le_quiet.c │ │ │ ├── extF80_lt.c │ │ │ ├── extF80_lt_quiet.c │ │ │ ├── extF80_mul.c │ │ │ ├── extF80_rem.c │ │ │ ├── extF80_roundToInt.c │ │ │ ├── extF80_sqrt.c │ │ │ ├── extF80_sub.c │ │ │ ├── extF80_to_f128.c │ │ │ ├── extF80_to_f16.c │ │ │ ├── extF80_to_f32.c │ │ │ ├── extF80_to_f64.c │ │ │ ├── extF80_to_i32.c │ │ │ ├── extF80_to_i32_r_minMag.c │ │ │ ├── extF80_to_i64.c │ │ │ ├── extF80_to_i64_r_minMag.c │ │ │ ├── extF80_to_ui32.c │ │ │ ├── extF80_to_ui32_r_minMag.c │ │ │ ├── extF80_to_ui64.c │ │ │ ├── extF80_to_ui64_r_minMag.c │ │ │ ├── f128M_add.c │ │ │ ├── f128M_div.c │ │ │ ├── f128M_eq.c │ │ │ ├── f128M_eq_signaling.c │ │ │ ├── f128M_le.c │ │ │ ├── f128M_le_quiet.c │ │ │ ├── f128M_lt.c │ │ │ ├── f128M_lt_quiet.c │ │ │ ├── f128M_mul.c │ │ │ ├── f128M_mulAdd.c │ │ │ ├── f128M_rem.c │ │ │ ├── f128M_roundToInt.c │ │ │ ├── f128M_sqrt.c │ │ │ ├── f128M_sub.c │ │ │ ├── f128M_to_extF80M.c │ │ │ ├── f128M_to_f16.c │ │ │ ├── f128M_to_f32.c │ │ │ ├── f128M_to_f64.c │ │ │ ├── f128M_to_i32.c │ │ │ ├── f128M_to_i32_r_minMag.c │ │ │ ├── f128M_to_i64.c │ │ │ ├── f128M_to_i64_r_minMag.c │ │ │ ├── f128M_to_ui32.c │ │ │ ├── f128M_to_ui32_r_minMag.c │ │ │ ├── f128M_to_ui64.c │ │ │ ├── f128M_to_ui64_r_minMag.c │ │ │ ├── f128_add.c │ │ │ ├── f128_div.c │ │ │ ├── f128_eq.c │ │ │ ├── f128_eq_signaling.c │ │ │ ├── f128_isSignalingNaN.c │ │ │ ├── f128_le.c │ │ │ ├── f128_le_quiet.c │ │ │ ├── f128_lt.c │ │ │ ├── f128_lt_quiet.c │ │ │ ├── f128_mul.c │ │ │ ├── f128_mulAdd.c │ │ │ ├── f128_rem.c │ │ │ ├── f128_roundToInt.c │ │ │ ├── f128_sqrt.c │ │ │ ├── f128_sub.c │ │ │ ├── f128_to_extF80.c │ │ │ ├── f128_to_f16.c │ │ │ ├── f128_to_f32.c │ │ │ ├── f128_to_f64.c │ │ │ ├── f128_to_i32.c │ │ │ ├── f128_to_i32_r_minMag.c │ │ │ ├── f128_to_i64.c │ │ │ ├── f128_to_i64_r_minMag.c │ │ │ ├── f128_to_ui32.c │ │ │ ├── f128_to_ui32_r_minMag.c │ │ │ ├── f128_to_ui64.c │ │ │ ├── f128_to_ui64_r_minMag.c │ │ │ ├── f16_add.c │ │ │ ├── f16_div.c │ │ │ ├── f16_eq.c │ │ │ ├── f16_eq_signaling.c │ │ │ ├── f16_isSignalingNaN.c │ │ │ ├── f16_le.c │ │ │ ├── f16_le_quiet.c │ │ │ ├── f16_lt.c │ │ │ ├── f16_lt_quiet.c │ │ │ ├── f16_mul.c │ │ │ ├── f16_mulAdd.c │ │ │ ├── f16_rem.c │ │ │ ├── f16_roundToInt.c │ │ │ ├── f16_sqrt.c │ │ │ ├── f16_sub.c │ │ │ ├── f16_to_extF80.c │ │ │ ├── f16_to_extF80M.c │ │ │ ├── f16_to_f128.c │ │ │ ├── f16_to_f128M.c │ │ │ ├── f16_to_f32.c │ │ │ ├── f16_to_f64.c │ │ │ ├── f16_to_i32.c │ │ │ ├── f16_to_i32_r_minMag.c │ │ │ ├── f16_to_i64.c │ │ │ ├── f16_to_i64_r_minMag.c │ │ │ ├── f16_to_ui32.c │ │ │ ├── f16_to_ui32_r_minMag.c │ │ │ ├── f16_to_ui64.c │ │ │ ├── f16_to_ui64_r_minMag.c │ │ │ ├── f32_add.c │ │ │ ├── f32_div.c │ │ │ ├── f32_eq.c │ │ │ ├── f32_eq_signaling.c │ │ │ ├── f32_isSignalingNaN.c │ │ │ ├── f32_le.c │ │ │ ├── f32_le_quiet.c │ │ │ ├── f32_lt.c │ │ │ ├── f32_lt_quiet.c │ │ │ ├── f32_mul.c │ │ │ ├── f32_mulAdd.c │ │ │ ├── f32_rem.c │ │ │ ├── f32_roundToInt.c │ │ │ ├── f32_sqrt.c │ │ │ ├── f32_sub.c │ │ │ ├── f32_to_extF80.c │ │ │ ├── f32_to_extF80M.c │ │ │ ├── f32_to_f128.c │ │ │ ├── f32_to_f128M.c │ │ │ ├── f32_to_f16.c │ │ │ ├── f32_to_f64.c │ │ │ ├── f32_to_i32.c │ │ │ ├── f32_to_i32_r_minMag.c │ │ │ ├── f32_to_i64.c │ │ │ ├── f32_to_i64_r_minMag.c │ │ │ ├── f32_to_ui32.c │ │ │ ├── f32_to_ui32_r_minMag.c │ │ │ ├── f32_to_ui64.c │ │ │ ├── f32_to_ui64_r_minMag.c │ │ │ ├── f64_add.c │ │ │ ├── f64_div.c │ │ │ ├── f64_eq.c │ │ │ ├── f64_eq_signaling.c │ │ │ ├── f64_isSignalingNaN.c │ │ │ ├── f64_le.c │ │ │ ├── f64_le_quiet.c │ │ │ ├── f64_lt.c │ │ │ ├── f64_lt_quiet.c │ │ │ ├── f64_mul.c │ │ │ ├── f64_mulAdd.c │ │ │ ├── f64_rem.c │ │ │ ├── f64_roundToInt.c │ │ │ ├── f64_sqrt.c │ │ │ ├── f64_sub.c │ │ │ ├── f64_to_extF80.c │ │ │ ├── f64_to_extF80M.c │ │ │ ├── f64_to_f128.c │ │ │ ├── f64_to_f128M.c │ │ │ ├── f64_to_f16.c │ │ │ ├── f64_to_f32.c │ │ │ ├── f64_to_i32.c │ │ │ ├── f64_to_i32_r_minMag.c │ │ │ ├── f64_to_i64.c │ │ │ ├── f64_to_i64_r_minMag.c │ │ │ ├── f64_to_ui32.c │ │ │ ├── f64_to_ui32_r_minMag.c │ │ │ ├── f64_to_ui64.c │ │ │ ├── f64_to_ui64_r_minMag.c │ │ │ ├── i32_to_extF80.c │ │ │ ├── i32_to_extF80M.c │ │ │ ├── i32_to_f128.c │ │ │ ├── i32_to_f128M.c │ │ │ ├── i32_to_f16.c │ │ │ ├── i32_to_f32.c │ │ │ ├── i32_to_f64.c │ │ │ ├── i64_to_extF80.c │ │ │ ├── i64_to_extF80M.c │ │ │ ├── i64_to_f128.c │ │ │ ├── i64_to_f128M.c │ │ │ ├── i64_to_f16.c │ │ │ ├── i64_to_f32.c │ │ │ ├── i64_to_f64.c │ │ │ ├── include │ │ │ ├── internals.h │ │ │ ├── primitiveTypes.h │ │ │ ├── primitives.h │ │ │ ├── softfloat.h │ │ │ └── softfloat_types.h │ │ │ ├── s_add128.c │ │ │ ├── s_add256M.c │ │ │ ├── s_addCarryM.c │ │ │ ├── s_addComplCarryM.c │ │ │ ├── s_addExtF80M.c │ │ │ ├── s_addF128M.c │ │ │ ├── s_addM.c │ │ │ ├── s_addMagsExtF80.c │ │ │ ├── s_addMagsF128.c │ │ │ ├── s_addMagsF16.c │ │ │ ├── s_addMagsF32.c │ │ │ ├── s_addMagsF64.c │ │ │ ├── s_approxRecip32_1.c │ │ │ ├── s_approxRecipSqrt32_1.c │ │ │ ├── s_approxRecipSqrt_1Ks.c │ │ │ ├── s_approxRecip_1Ks.c │ │ │ ├── s_compare128M.c │ │ │ ├── s_compare96M.c │ │ │ ├── s_compareNonnormExtF80M.c │ │ │ ├── s_countLeadingZeros16.c │ │ │ ├── s_countLeadingZeros32.c │ │ │ ├── s_countLeadingZeros64.c │ │ │ ├── s_countLeadingZeros8.c │ │ │ ├── s_eq128.c │ │ │ ├── s_invalidExtF80M.c │ │ │ ├── s_invalidF128M.c │ │ │ ├── s_isNaNF128M.c │ │ │ ├── s_le128.c │ │ │ ├── s_lt128.c │ │ │ ├── s_mul128By32.c │ │ │ ├── s_mul128MTo256M.c │ │ │ ├── s_mul128To256M.c │ │ │ ├── s_mul64ByShifted32To128.c │ │ │ ├── s_mul64To128.c │ │ │ ├── s_mul64To128M.c │ │ │ ├── s_mulAddF128.c │ │ │ ├── s_mulAddF128M.c │ │ │ ├── s_mulAddF16.c │ │ │ ├── s_mulAddF32.c │ │ │ ├── s_mulAddF64.c │ │ │ ├── s_negXM.c │ │ │ ├── s_normExtF80SigM.c │ │ │ ├── s_normRoundPackMToExtF80M.c │ │ │ ├── s_normRoundPackMToF128M.c │ │ │ ├── s_normRoundPackToExtF80.c │ │ │ ├── s_normRoundPackToF128.c │ │ │ ├── s_normRoundPackToF16.c │ │ │ ├── s_normRoundPackToF32.c │ │ │ ├── s_normRoundPackToF64.c │ │ │ ├── s_normSubnormalExtF80Sig.c │ │ │ ├── s_normSubnormalF128Sig.c │ │ │ ├── s_normSubnormalF128SigM.c │ │ │ ├── s_normSubnormalF16Sig.c │ │ │ ├── s_normSubnormalF32Sig.c │ │ │ ├── s_normSubnormalF64Sig.c │ │ │ ├── s_remStepMBy32.c │ │ │ ├── s_roundMToI64.c │ │ │ ├── s_roundMToUI64.c │ │ │ ├── s_roundPackMToExtF80M.c │ │ │ ├── s_roundPackMToF128M.c │ │ │ ├── s_roundPackToExtF80.c │ │ │ ├── s_roundPackToF128.c │ │ │ ├── s_roundPackToF16.c │ │ │ ├── s_roundPackToF32.c │ │ │ ├── s_roundPackToF64.c │ │ │ ├── s_roundToI32.c │ │ │ ├── s_roundToI64.c │ │ │ ├── s_roundToUI32.c │ │ │ ├── s_roundToUI64.c │ │ │ ├── s_shiftLeftM.c │ │ │ ├── s_shiftNormSigF128M.c │ │ │ ├── s_shiftRightJam128.c │ │ │ ├── s_shiftRightJam128Extra.c │ │ │ ├── s_shiftRightJam256M.c │ │ │ ├── s_shiftRightJam32.c │ │ │ ├── s_shiftRightJam64.c │ │ │ ├── s_shiftRightJam64Extra.c │ │ │ ├── s_shiftRightJamM.c │ │ │ ├── s_shiftRightM.c │ │ │ ├── s_shortShiftLeft128.c │ │ │ ├── s_shortShiftLeft64To96M.c │ │ │ ├── s_shortShiftLeftM.c │ │ │ ├── s_shortShiftRight128.c │ │ │ ├── s_shortShiftRightExtendM.c │ │ │ ├── s_shortShiftRightJam128.c │ │ │ ├── s_shortShiftRightJam128Extra.c │ │ │ ├── s_shortShiftRightJam64.c │ │ │ ├── s_shortShiftRightJam64Extra.c │ │ │ ├── s_shortShiftRightJamM.c │ │ │ ├── s_shortShiftRightM.c │ │ │ ├── s_sub128.c │ │ │ ├── s_sub1XM.c │ │ │ ├── s_sub256M.c │ │ │ ├── s_subM.c │ │ │ ├── s_subMagsExtF80.c │ │ │ ├── s_subMagsF128.c │ │ │ ├── s_subMagsF16.c │ │ │ ├── s_subMagsF32.c │ │ │ ├── s_subMagsF64.c │ │ │ ├── s_tryPropagateNaNExtF80M.c │ │ │ ├── s_tryPropagateNaNF128M.c │ │ │ ├── softfloat_state.c │ │ │ ├── ui32_to_extF80.c │ │ │ ├── ui32_to_extF80M.c │ │ │ ├── ui32_to_f128.c │ │ │ ├── ui32_to_f128M.c │ │ │ ├── ui32_to_f16.c │ │ │ ├── ui32_to_f32.c │ │ │ ├── ui32_to_f64.c │ │ │ ├── ui64_to_extF80.c │ │ │ ├── ui64_to_extF80M.c │ │ │ ├── ui64_to_f128.c │ │ │ ├── ui64_to_f128M.c │ │ │ ├── ui64_to_f16.c │ │ │ ├── ui64_to_f32.c │ │ │ └── ui64_to_f64.c │ ├── SoftFloatLib.dec │ └── SoftFloatLib.inf ├── StdExtLib │ ├── README.md │ ├── StdExtLib.inf │ ├── fnmatch.c │ ├── getline.c │ ├── getopt_long.c │ ├── humanize.c │ ├── reallocarr.c │ ├── strmode.c │ ├── strsuftoll.c │ ├── swab.c │ └── toascii.c ├── StdLibDevConsole │ ├── README.md │ ├── daConsole.c │ └── daConsole.inf ├── StdLibInteractiveIO │ ├── CanonRead.c │ ├── IIO.c │ ├── IIO.inf │ ├── IIOecho.c │ ├── IIOechoCtrl.h │ ├── IIOutilities.c │ ├── IIOutilities.h │ ├── IIOwrite.c │ ├── NonCanonRead.c │ ├── README.md │ └── TerminalFunctions.c ├── StdLibUefi │ ├── README.md │ ├── StubFunctions.c │ ├── SysCalls.c │ ├── Uefi.inf │ ├── Xform.c │ ├── compat.c │ ├── select.c │ └── writev.c └── UtilsLib │ ├── RangeCheck.c │ ├── Utils.c │ └── UtilsLib.inf ├── OTHER.md ├── README.md ├── Scripts └── GdbUefi │ ├── README.md │ └── gdb_uefi.py ├── UefiToolsPkg.dec ├── UefiToolsPkg.dsc └── UefiToolsPkg2023.dsc /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/.gitmodules -------------------------------------------------------------------------------- /Applications/AcpiDump/AcpiDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiDump/AcpiDump.c -------------------------------------------------------------------------------- /Applications/AcpiDump/AcpiDump.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiDump/AcpiDump.inf -------------------------------------------------------------------------------- /Applications/AcpiDump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiDump/README.md -------------------------------------------------------------------------------- /Applications/AcpiLoader/AcpiLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiLoader/AcpiLoader.c -------------------------------------------------------------------------------- /Applications/AcpiLoader/AcpiLoader.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiLoader/AcpiLoader.inf -------------------------------------------------------------------------------- /Applications/AcpiLoader/AcpiSupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiLoader/AcpiSupport.c -------------------------------------------------------------------------------- /Applications/AcpiLoader/AcpiSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiLoader/AcpiSupport.h -------------------------------------------------------------------------------- /Applications/AcpiLoader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/AcpiLoader/README.md -------------------------------------------------------------------------------- /Applications/FdtDump/FdtDump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/FdtDump/FdtDump.c -------------------------------------------------------------------------------- /Applications/FdtDump/FdtDump.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/FdtDump/FdtDump.inf -------------------------------------------------------------------------------- /Applications/FdtDump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/FdtDump/README.md -------------------------------------------------------------------------------- /Applications/GdbSyms/GdbSyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/GdbSyms/GdbSyms.c -------------------------------------------------------------------------------- /Applications/GdbSyms/GdbSyms.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/GdbSyms/GdbSyms.inf -------------------------------------------------------------------------------- /Applications/GopTool/GopTool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/GopTool/GopTool.c -------------------------------------------------------------------------------- /Applications/GopTool/GopTool.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/GopTool/GopTool.inf -------------------------------------------------------------------------------- /Applications/GopTool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/GopTool/README.md -------------------------------------------------------------------------------- /Applications/MemResv/MemResv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/MemResv/MemResv.c -------------------------------------------------------------------------------- /Applications/MemResv/MemResv.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/MemResv/MemResv.inf -------------------------------------------------------------------------------- /Applications/MemResv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/MemResv/README.md -------------------------------------------------------------------------------- /Applications/PciRom/PciRom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/PciRom/PciRom.c -------------------------------------------------------------------------------- /Applications/PciRom/PciRom.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/PciRom/PciRom.inf -------------------------------------------------------------------------------- /Applications/PciRom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/PciRom/README.md -------------------------------------------------------------------------------- /Applications/RangeIsMapped/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/RangeIsMapped/README.md -------------------------------------------------------------------------------- /Applications/RangeIsMapped/RangeIsMapped.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/RangeIsMapped/RangeIsMapped.c -------------------------------------------------------------------------------- /Applications/RangeIsMapped/RangeIsMapped.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/RangeIsMapped/RangeIsMapped.inf -------------------------------------------------------------------------------- /Applications/SetCon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/SetCon/README.md -------------------------------------------------------------------------------- /Applications/SetCon/SetCon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/SetCon/SetCon.c -------------------------------------------------------------------------------- /Applications/SetCon/SetCon.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/SetCon/SetCon.inf -------------------------------------------------------------------------------- /Applications/ShellErrVars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellErrVars/README.md -------------------------------------------------------------------------------- /Applications/ShellErrVars/ShellErrVars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellErrVars/ShellErrVars.c -------------------------------------------------------------------------------- /Applications/ShellErrVars/ShellErrVars.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellErrVars/ShellErrVars.inf -------------------------------------------------------------------------------- /Applications/ShellMapVar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellMapVar/README.md -------------------------------------------------------------------------------- /Applications/ShellMapVar/ShellMapVar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellMapVar/ShellMapVar.c -------------------------------------------------------------------------------- /Applications/ShellMapVar/ShellMapVar.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellMapVar/ShellMapVar.inf -------------------------------------------------------------------------------- /Applications/ShellPlatVars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellPlatVars/README.md -------------------------------------------------------------------------------- /Applications/ShellPlatVars/ShellPlatVars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellPlatVars/ShellPlatVars.c -------------------------------------------------------------------------------- /Applications/ShellPlatVars/ShellPlatVars.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ShellPlatVars/ShellPlatVars.inf -------------------------------------------------------------------------------- /Applications/cat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/cat/README.md -------------------------------------------------------------------------------- /Applications/cat/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/cat/cat.c -------------------------------------------------------------------------------- /Applications/cat/cat.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/cat/cat.inf -------------------------------------------------------------------------------- /Applications/dd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/README.md -------------------------------------------------------------------------------- /Applications/dd/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/args.c -------------------------------------------------------------------------------- /Applications/dd/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/conv.c -------------------------------------------------------------------------------- /Applications/dd/conv_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/conv_tab.c -------------------------------------------------------------------------------- /Applications/dd/dd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/dd.c -------------------------------------------------------------------------------- /Applications/dd/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/dd.h -------------------------------------------------------------------------------- /Applications/dd/dd.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/dd.inf -------------------------------------------------------------------------------- /Applications/dd/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/extern.h -------------------------------------------------------------------------------- /Applications/dd/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/misc.c -------------------------------------------------------------------------------- /Applications/dd/position.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/dd/position.c -------------------------------------------------------------------------------- /Applications/grep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/README.md -------------------------------------------------------------------------------- /Applications/grep/fastgrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/fastgrep.c -------------------------------------------------------------------------------- /Applications/grep/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/file.c -------------------------------------------------------------------------------- /Applications/grep/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/grep.c -------------------------------------------------------------------------------- /Applications/grep/grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/grep.h -------------------------------------------------------------------------------- /Applications/grep/grep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/grep.inf -------------------------------------------------------------------------------- /Applications/grep/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/queue.c -------------------------------------------------------------------------------- /Applications/grep/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/queue.h -------------------------------------------------------------------------------- /Applications/grep/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/grep/util.c -------------------------------------------------------------------------------- /Applications/ls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/README.md -------------------------------------------------------------------------------- /Applications/ls/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/cmp.c -------------------------------------------------------------------------------- /Applications/ls/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/extern.h -------------------------------------------------------------------------------- /Applications/ls/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/ls.c -------------------------------------------------------------------------------- /Applications/ls/ls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/ls.h -------------------------------------------------------------------------------- /Applications/ls/ls.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/ls.inf -------------------------------------------------------------------------------- /Applications/ls/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/ls/print.c -------------------------------------------------------------------------------- /Applications/stat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/stat/README.md -------------------------------------------------------------------------------- /Applications/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/stat/stat.c -------------------------------------------------------------------------------- /Applications/stat/stat.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Applications/stat/stat.inf -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/ComponentName.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/ComponentName.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/Driver.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/DriverSupportedEfiVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/DriverSupportedEfiVersion.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/Gop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/Gop.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/Initialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/Initialize.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/Qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/Qemu.h -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/QemuVideoDxe.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/QemuVideoDxe.inf -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/README.md -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/UnalignedIoGcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/UnalignedIoGcc.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/UnalignedIoIcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/UnalignedIoIcc.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/UnalignedIoInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/UnalignedIoInternal.h -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/UnalignedIoMsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/UnalignedIoMsc.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/UnalignedIoUnsupported.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/UnalignedIoUnsupported.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/VbeShim.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/VbeShim.asm -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/VbeShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/VbeShim.c -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/VbeShim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/VbeShim.h -------------------------------------------------------------------------------- /Drivers/QemuVideoDxe/VbeShim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Drivers/QemuVideoDxe/VbeShim.sh -------------------------------------------------------------------------------- /Include/Library/FTSLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Include/Library/FTSLib.h -------------------------------------------------------------------------------- /Include/Library/RegexLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Include/Library/RegexLib.h -------------------------------------------------------------------------------- /Include/Library/SoftFloatLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Include/Library/SoftFloatLib.h -------------------------------------------------------------------------------- /Include/Library/StdExtLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Include/Library/StdExtLib.h -------------------------------------------------------------------------------- /Include/Library/UtilsLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Include/Library/UtilsLib.h -------------------------------------------------------------------------------- /Library/FTSLib/FTSLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/FTSLib/FTSLib.inf -------------------------------------------------------------------------------- /Library/FTSLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/FTSLib/README.md -------------------------------------------------------------------------------- /Library/FTSLib/fts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/FTSLib/fts.c -------------------------------------------------------------------------------- /Library/RegexLib/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/COPYRIGHT -------------------------------------------------------------------------------- /Library/RegexLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/README.md -------------------------------------------------------------------------------- /Library/RegexLib/RegexLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/RegexLib.inf -------------------------------------------------------------------------------- /Library/RegexLib/cclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/cclass.h -------------------------------------------------------------------------------- /Library/RegexLib/cname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/cname.h -------------------------------------------------------------------------------- /Library/RegexLib/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/engine.c -------------------------------------------------------------------------------- /Library/RegexLib/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regcomp.c -------------------------------------------------------------------------------- /Library/RegexLib/regerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regerror.c -------------------------------------------------------------------------------- /Library/RegexLib/regex2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regex2.h -------------------------------------------------------------------------------- /Library/RegexLib/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regexec.c -------------------------------------------------------------------------------- /Library/RegexLib/regfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regfree.c -------------------------------------------------------------------------------- /Library/RegexLib/regsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/regsub.c -------------------------------------------------------------------------------- /Library/RegexLib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/RegexLib/utils.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/AArch64/bindings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/AArch64/bindings.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/README.md -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/COPYING.txt -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/README.html -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/README.txt -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-GCC/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-GCC/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-SSE2-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-SSE2-GCC/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-SSE2-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-386-SSE2-GCC/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-x86_64-GCC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-x86_64-GCC/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Linux-x86_64-GCC/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Linux-x86_64-GCC/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win32-MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win32-MinGW/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win32-MinGW/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win32-MinGW/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win32-SSE2-MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win32-SSE2-MinGW/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win32-SSE2-MinGW/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win32-SSE2-MinGW/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win64-MinGW-w64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win64-MinGW-w64/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/Win64-MinGW-w64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/Win64-MinGW-w64/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/template-FAST_INT64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/template-FAST_INT64/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/template-FAST_INT64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/template-FAST_INT64/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/template-not-FAST_INT64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/template-not-FAST_INT64/Makefile -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/build/template-not-FAST_INT64/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/build/template-not-FAST_INT64/platform.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat-history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat-history.html -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat-source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat-source.html -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/doc/SoftFloat.html -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086-SSE/specialize.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/extF80M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/extF80M_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/f128M_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/f128M_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToExtF80UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF128UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF16UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF32UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_commonNaNToF64UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_extF80MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_extF80MToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_extF80UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_extF80UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f128MToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f128MToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f128UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f128UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f16UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f16UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f32UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f32UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f64UIToCommonNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_f64UIToCommonNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNExtF80UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNExtF80UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF128UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF128UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF16UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF16UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF32UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF32UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF64UI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/s_propagateNaNF64UI.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/softfloat_raiseFlags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/softfloat_raiseFlags.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/8086/specialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/8086/specialize.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80M_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/extF80_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_mulAdd.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128M_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_mulAdd.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f128_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_mulAdd.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f16_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_mulAdd.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f32_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_add.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_div.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_eq.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_eq_signaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_eq_signaling.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_isSignalingNaN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_isSignalingNaN.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_le.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_le_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_le_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_lt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_lt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_lt_quiet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_lt_quiet.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_mul.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_mulAdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_mulAdd.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_rem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_rem.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_roundToInt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_roundToInt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_sqrt.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_sub.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_i64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui32_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui32_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui64_r_minMag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/f64_to_ui64_r_minMag.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i32_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/i64_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/include/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/include/internals.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/include/primitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/include/primitiveTypes.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/include/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/include/primitives.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/include/softfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/include/softfloat.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/include/softfloat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/include/softfloat_types.h -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_add128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_add128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_add256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_add256M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addCarryM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addCarryM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addComplCarryM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addComplCarryM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsExtF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_addMagsF64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecip32_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecip32_1.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecipSqrt32_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecipSqrt32_1.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecipSqrt_1Ks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecipSqrt_1Ks.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecip_1Ks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_approxRecip_1Ks.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_compare128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_compare128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_compare96M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_compare96M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_compareNonnormExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_compareNonnormExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_countLeadingZeros8.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_eq128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_eq128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_invalidExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_invalidExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_invalidF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_invalidF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_isNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_isNaNF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_le128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_le128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_lt128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_lt128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul128By32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul128By32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul128MTo256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul128MTo256M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul128To256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul128To256M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul64ByShifted32To128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul64ByShifted32To128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul64To128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul64To128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mul64To128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mul64To128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_mulAddF64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_negXM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_negXM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normExtF80SigM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normExtF80SigM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackMToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackMToExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackMToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackMToF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToExtF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normRoundPackToF64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalExtF80Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalExtF80Sig.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF128Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF128Sig.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF128SigM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF128SigM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF16Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF16Sig.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF32Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF32Sig.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF64Sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_normSubnormalF64Sig.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_remStepMBy32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_remStepMBy32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundMToI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundMToI64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundMToUI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundMToUI64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackMToExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackMToExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackMToF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackMToF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToExtF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundPackToF64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundToI32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundToI32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundToI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundToI64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundToUI32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundToUI32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_roundToUI64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_roundToUI64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftLeftM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftLeftM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftNormSigF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftNormSigF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam128Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam128Extra.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam256M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam64Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJam64Extra.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJamM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightJamM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shiftRightM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeft128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeft128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeft64To96M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeft64To96M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeftM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftLeftM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRight128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRight128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightExtendM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightExtendM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam128Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam128Extra.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam64Extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJam64Extra.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJamM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightJamM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_shortShiftRightM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_sub128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_sub128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_sub1XM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_sub1XM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_sub256M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_sub256M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subM.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsExtF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsExtF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_subMagsF64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_tryPropagateNaNExtF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_tryPropagateNaNExtF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/s_tryPropagateNaNF128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/s_tryPropagateNaNF128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/softfloat_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/softfloat_state.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui32_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_extF80.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_extF80.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_extF80M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_extF80M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f128.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f128M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f128M.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f16.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f32.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloat-3d/source/ui64_to_f64.c -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloatLib.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloatLib.dec -------------------------------------------------------------------------------- /Library/SoftFloatLib/SoftFloatLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/SoftFloatLib/SoftFloatLib.inf -------------------------------------------------------------------------------- /Library/StdExtLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/README.md -------------------------------------------------------------------------------- /Library/StdExtLib/StdExtLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/StdExtLib.inf -------------------------------------------------------------------------------- /Library/StdExtLib/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/fnmatch.c -------------------------------------------------------------------------------- /Library/StdExtLib/getline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/getline.c -------------------------------------------------------------------------------- /Library/StdExtLib/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/getopt_long.c -------------------------------------------------------------------------------- /Library/StdExtLib/humanize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/humanize.c -------------------------------------------------------------------------------- /Library/StdExtLib/reallocarr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/reallocarr.c -------------------------------------------------------------------------------- /Library/StdExtLib/strmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/strmode.c -------------------------------------------------------------------------------- /Library/StdExtLib/strsuftoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/strsuftoll.c -------------------------------------------------------------------------------- /Library/StdExtLib/swab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/swab.c -------------------------------------------------------------------------------- /Library/StdExtLib/toascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdExtLib/toascii.c -------------------------------------------------------------------------------- /Library/StdLibDevConsole/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibDevConsole/README.md -------------------------------------------------------------------------------- /Library/StdLibDevConsole/daConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibDevConsole/daConsole.c -------------------------------------------------------------------------------- /Library/StdLibDevConsole/daConsole.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibDevConsole/daConsole.inf -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/CanonRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/CanonRead.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIO.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIO.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIO.inf -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIOecho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIOecho.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIOechoCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIOechoCtrl.h -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIOutilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIOutilities.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIOutilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIOutilities.h -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/IIOwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/IIOwrite.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/NonCanonRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/NonCanonRead.c -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/README.md -------------------------------------------------------------------------------- /Library/StdLibInteractiveIO/TerminalFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibInteractiveIO/TerminalFunctions.c -------------------------------------------------------------------------------- /Library/StdLibUefi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/README.md -------------------------------------------------------------------------------- /Library/StdLibUefi/StubFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/StubFunctions.c -------------------------------------------------------------------------------- /Library/StdLibUefi/SysCalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/SysCalls.c -------------------------------------------------------------------------------- /Library/StdLibUefi/Uefi.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/Uefi.inf -------------------------------------------------------------------------------- /Library/StdLibUefi/Xform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/Xform.c -------------------------------------------------------------------------------- /Library/StdLibUefi/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/compat.c -------------------------------------------------------------------------------- /Library/StdLibUefi/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/select.c -------------------------------------------------------------------------------- /Library/StdLibUefi/writev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/StdLibUefi/writev.c -------------------------------------------------------------------------------- /Library/UtilsLib/RangeCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/UtilsLib/RangeCheck.c -------------------------------------------------------------------------------- /Library/UtilsLib/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/UtilsLib/Utils.c -------------------------------------------------------------------------------- /Library/UtilsLib/UtilsLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Library/UtilsLib/UtilsLib.inf -------------------------------------------------------------------------------- /OTHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/OTHER.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/GdbUefi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Scripts/GdbUefi/README.md -------------------------------------------------------------------------------- /Scripts/GdbUefi/gdb_uefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/Scripts/GdbUefi/gdb_uefi.py -------------------------------------------------------------------------------- /UefiToolsPkg.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/UefiToolsPkg.dec -------------------------------------------------------------------------------- /UefiToolsPkg.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/UefiToolsPkg.dsc -------------------------------------------------------------------------------- /UefiToolsPkg2023.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreiw/UefiToolsPkg/HEAD/UefiToolsPkg2023.dsc --------------------------------------------------------------------------------