VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/ulp.c@ 58466

Last change on this file since 58466 was 48674, checked in by vboxsync, 11 years ago

EFI: Export newly imported tinaocore UEFI sources to OSE.

  • Property svn:eol-style set to native
File size: 2.0 KB
Line 
1/* $NetBSD: ulp.c,v 1.2 2006/01/25 15:27:42 kleink Exp $ */
2
3/****************************************************************
4
5The author of this software is David M. Gay.
6
7Copyright (C) 1998, 1999 by Lucent Technologies
8All Rights Reserved
9
10Permission to use, copy, modify, and distribute this software and
11its documentation for any purpose and without fee is hereby
12granted, provided that the above copyright notice appear in all
13copies and that both that the copyright notice and this
14permission notice and warranty disclaimer appear in supporting
15documentation, and that the name of Lucent or any of its entities
16not be used in advertising or publicity pertaining to
17distribution of the software without specific, written prior
18permission.
19
20LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
21INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
22IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
23SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
25IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27THIS SOFTWARE.
28
29****************************************************************/
30
31/* Please send bug reports to David M. Gay (dmg at acm dot org,
32 * with " at " changed at "@" and " dot " changed to "."). */
33#include <LibConfig.h>
34
35#include "gdtoaimp.h"
36
37 double
38ulp
39#ifdef KR_headers
40 (x) double x;
41#else
42 (double x)
43#endif
44{
45 Long L;
46 double a;
47
48 L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
49#ifndef Sudden_Underflow
50 if (L > 0) {
51#endif
52#ifdef IBM
53 L |= Exp_msk1 >> 4;
54#endif
55 word0(a) = (UINT32)L;
56 word1(a) = 0;
57#ifndef Sudden_Underflow
58 }
59 else {
60 L = (unsigned int)-L >> Exp_shift;
61 if (L < Exp_shift) {
62 word0(a) = 0x80000 >> L;
63 word1(a) = 0;
64 }
65 else {
66 word0(a) = 0;
67 L -= Exp_shift;
68 word1(a) = L >= 31 ? 1 : 1 << (31 - L);
69 }
70 }
71#endif
72 return a;
73 }
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette