Changeset 1114
- Timestamp:
- Dec 22, 2011, 8:34:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/half.cpp
r926 r1114 47 47 { 48 48 #define S1(i) (((i) < 103) ? 0x0000 : \ 49 ((i) < 113) ? 0x0400 >> ( 113 - (i)) : \49 ((i) < 113) ? 0x0400 >> (0x1f & (113 - (i))) : \ 50 50 ((i) < 143) ? ((i) - 112) << 10 : 0x7c00) 51 51 S256(0), 52 52 #undef S1 53 #define S1(i) (0x8000 | (((i) < 103) ? 0x0000 : \ 54 ((i) < 113) ? 0x0400 >> (113 - (i)) : \ 55 ((i) < 143) ? ((i) - 112) << 10 : 0x7c00)) 53 #define S1(i) (0x8000 | basetable[i]) 56 54 S256(0), 57 55 #undef S1
Note: See TracChangeset
for help on using the changeset viewer.