Home
last modified time | relevance | path

Searched refs:targar (Results 1 – 2 of 2) sorted by relevance

/qemu/libdecnumber/dpd/
H A Ddecimal128.c91 uInt targar[4]={0,0,0,0}; /* target 128-bit */ in decimal128FromNumber() local
92 #define targhi targar[3] /* name the word with the sign */ in decimal128FromNumber()
93 #define targmh targar[2] /* name the words */ in decimal128FromNumber()
94 #define targml targar[1] /* .. */ in decimal128FromNumber()
95 #define targlo targar[0] /* .. */ in decimal128FromNumber()
120 decDigitsToDPD(dn, targar, 0); in decimal128FromNumber()
156 decDigitsToDPD(dn, targar, pad); in decimal128FromNumber()
H A Ddecimal64.c97 uInt targar[2]={0, 0}; /* target 64-bit */ in decimal64FromNumber() local
98 #define targhi targar[1] /* name the word with the sign */ in decimal64FromNumber()
99 #define targlo targar[0] /* and the other */ in decimal64FromNumber()
124 decDigitsToDPD(dn, targar, 0); in decimal64FromNumber()
176 decDigitsToDPD(dn, targar, pad); in decimal64FromNumber()
195 pu[0]=targar[0]; /* directly store the low int */ in decimal64FromNumber()
196 pu[1]=targar[1]; /* then the high int */ in decimal64FromNumber()
199 pu[0]=targar[1]; /* directly store the high int */ in decimal64FromNumber()
200 pu[1]=targar[0]; /* then the low int */ in decimal64FromNumber()