Home
last modified time | relevance | path

Searched refs:UShort (Results 1 – 7 of 7) sorted by relevance

/dragonfly/contrib/gdtoa/
H A Dstrtorx.c58 ULtox(L, bits, exp, k) UShort *L; ULong *bits; Long exp; int k; in ULtox()
60 ULtox(UShort *L, ULong *bits, Long exp, int k)
76 L[_4] = (UShort)bits[0];
77 L[_3] = (UShort)(bits[0] >> 16);
78 L[_2] = (UShort)bits[1];
79 L[_1] = (UShort)(bits[1] >> 16);
84 L[_4] = (UShort)bits[0];
85 L[_3] = (UShort)(bits[0] >> 16);
86 L[_2] = (UShort)bits[1];
87 L[_1] = (UShort)((bits[1] >> 16) | (3 << 14));
[all …]
H A Dgdtoa.h44 #ifndef UShort
45 typedef unsigned short UShort; typedef
H A Dgdtoaimp.h603 extern void ULtox ANSI((UShort*, ULong*, Long, int));
H A DREADME107 are viewed as arrays of ULong (or, for the "x" functions, UShort)
/dragonfly/contrib/ncurses/ncurses/tinfo/
H A Dread_entry.c404 ptr->num_Booleans = UShort(BOOLCOUNT + ext_bool_count); in _nc_read_termtype()
405 ptr->num_Numbers = UShort(NUMCOUNT + ext_num_count); in _nc_read_termtype()
406 ptr->num_Strings = UShort(STRCOUNT + ext_str_count); in _nc_read_termtype()
424 if ((ptr->ext_Booleans = UShort(ext_bool_count)) != 0) { in _nc_read_termtype()
434 if ((ptr->ext_Numbers = UShort(ext_num_count)) != 0) { in _nc_read_termtype()
465 if ((ptr->ext_Strings = UShort(ext_str_count)) != 0) { in _nc_read_termtype()
H A Dalloc_ttype.c140 to->ext_Booleans = UShort(ext_Booleans); in realign_data()
158 to->ext_Numbers = UShort(ext_Numbers); in realign_data()
176 to->ext_Strings = UShort(ext_Strings); in realign_data()
/dragonfly/contrib/ncurses/ncurses/
H A Dcurses.priv.h1507 #define UShort(c) ((unsigned short)(c)) macro