_fpmath.h (7d4b968b0fa6afc6bca132c27e2041c979ee6101) _fpmath.h (c6c72ab9afa42f71f9b7b18c302bb3569b7e0de1)
1/*-
2 * Copyright (c) 2002, 2003 David Schultz <das@FreeBSD.ORG>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 41 unchanged lines hidden (view full) ---

50 unsigned int exp :11;
51 unsigned int manh :20;
52 unsigned int manl :32;
53#endif
54 } bits;
55};
56
57#define LDBL_NBIT 0
1/*-
2 * Copyright (c) 2002, 2003 David Schultz <das@FreeBSD.ORG>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 41 unchanged lines hidden (view full) ---

50 unsigned int exp :11;
51 unsigned int manh :20;
52 unsigned int manl :32;
53#endif
54 } bits;
55};
56
57#define LDBL_NBIT 0
58#define LDBL_IMPLICIT_NBIT
58#define mask_nbit_l(u) ((void)0)
59
59#define mask_nbit_l(u) ((void)0)
60
60#define LDBL_MANH_SIZE 32
61#define LDBL_MANH_SIZE 20
61#define LDBL_MANL_SIZE 32
62
63#define LDBL_TO_ARRAY32(u, a) do { \
64 (a)[0] = (uint32_t)(u).bits.manl; \
65 (a)[1] = (uint32_t)(u).bits.manh; \
66} while(0)
62#define LDBL_MANL_SIZE 32
63
64#define LDBL_TO_ARRAY32(u, a) do { \
65 (a)[0] = (uint32_t)(u).bits.manl; \
66 (a)[1] = (uint32_t)(u).bits.manh; \
67} while(0)