Home
last modified time | relevance | path

Searched refs:comb (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/libdecnumber/dpd/
H A Ddecimal32.c89 uInt comb, exp; /* .. */ in decimal32FromNumber() local
136 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal32FromNumber()
164 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01); in decimal32FromNumber()
165 else comb=((exp>>3) & 0x18) | msd; in decimal32FromNumber()
167 targ|=comb<<26; /* add combination field .. */ in decimal32FromNumber()
191 uInt comb; /* combination field */ in decimal32ToNumber() local
199 comb=(sour>>26)&0x1f; /* combination field */ in decimal32ToNumber()
204 msd=COMBMSD[comb]; /* decode the combination field */ in decimal32ToNumber()
205 exp=COMBEXP[comb]; /* .. */ in decimal32ToNumber()
260 uInt comb; /* combination field */ in decimal32ToString() local
[all …]
H A Ddecimal128.c89 uInt comb, exp; /* .. */ in decimal128FromNumber() local
140 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal128FromNumber()
161 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01); in decimal128FromNumber()
162 else comb=((exp>>9) & 0x18) | msd; in decimal128FromNumber()
164 targhi|=comb<<26; /* add combination field .. */ in decimal128FromNumber()
199 uInt comb; /* combination field */ in decimal128ToNumber() local
223 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal128ToNumber()
228 msd=COMBMSD[comb]; /* decode the combination field */ in decimal128ToNumber()
229 exp=COMBEXP[comb]; /* .. */ in decimal128ToNumber()
287 uInt comb; /* combination field */ in decimal128ToString() local
[all …]
H A Ddecimal64.c95 uInt comb, exp; /* .. */ in decimal64FromNumber() local
144 comb=(exp>>5) & 0x18; /* msd=0, exp top 2 bits .. */ in decimal64FromNumber()
182 if (msd>=8) comb=0x18 | ((exp>>7) & 0x06) | (msd & 0x01); in decimal64FromNumber()
183 else comb=((exp>>5) & 0x18) | msd; in decimal64FromNumber()
185 targhi|=comb<<26; /* add combination field .. */ in decimal64FromNumber()
216 uInt comb; /* combination field */ in decimal64ToNumber() local
234 comb=(sourhi>>26)&0x1f; /* combination field */ in decimal64ToNumber()
239 msd=COMBMSD[comb]; /* decode the combination field */ in decimal64ToNumber()
240 exp=COMBEXP[comb]; /* .. */ in decimal64ToNumber()
303 uInt comb; /* combination field */ in decimal64ToString() local
[all …]
/openbmc/qemu/tests/tcg/xtensa/
H A Dtest_mac16.S29 .macro test_mulxx mulop, comb, s, t, a, b
30 init_reg \comb & 2, \s, \a
31 init_reg \comb & 1, \t, \b
70 .macro test_mulxxx mulop, comb, s, t, a, b, iv, op
71 init_reg \comb & 2, \s, \a
72 init_reg \comb & 1, \t, \b
166 .macro test_mulxxx_ld mulop, ldop, comb, w, x, s, t, a, b, iv, op
167 init_reg \comb & 2, \s, \a
168 init_reg \comb & 1, \t, \b