Home
last modified time | relevance | path

Searched refs:tmp64 (Results 1 – 25 of 43) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
H A Dbid128_to_uint32.c38 UINT64 tmp64; variable
147 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
149 if (tmp64 > 0x05ull) {
162 tmp64 = 0x05ull;
164 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
166 __mul_128x64_to_128 (C, tmp64, ten2k128[q - 31]);
183 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
185 if (tmp64 >= 0x9fffffffbull) {
198 tmp64 = 0x9fffffffbull;
200 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
[all …]
H A Dbid64_to_int32.c47 UINT64 tmp64; local
132 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
134 if (tmp64 > 0x500000005ull) {
148 tmp64 = 0x500000005ull * ten2k64[q - 11];
149 if (C1 > tmp64) {
166 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
168 if (tmp64 >= 0x4fffffffbull) {
182 tmp64 = 0x4fffffffbull * ten2k64[q - 11];
183 if (C1 >= tmp64) {
306 UINT64 tmp64; local
[all …]
H A Dbid128_to_int32.c37 UINT64 tmp64; variable
146 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
148 if (tmp64 > 0x500000005ull) {
161 tmp64 = 0x500000005ull;
163 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
165 __mul_128x64_to_128 (C, tmp64, ten2k128[q - 31]);
182 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
184 if (tmp64 >= 0x4fffffffbull) {
197 tmp64 = 0x4fffffffbull;
199 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
[all …]
H A Dbid_round.c124 UINT64 tmp64; in round64_2_18() local
179 tmp64 = fstar.w[1] - half64[ind]; in round64_2_18()
180 if (tmp64 || fstar.w[0] > ten2mxtrunc64[ind]) { // f* - 1/2 > 10^(-x) in round64_2_18()
227 UINT64 tmp64; in round128_19_38() local
258 tmp64 = C.w[0]; in round128_19_38()
260 if (C.w[0] < tmp64) in round128_19_38()
263 tmp64 = C.w[0]; in round128_19_38()
265 if (C.w[0] < tmp64) { in round128_19_38()
315 tmp64 = fstar.w[2] - half128[ind]; in round128_19_38()
316 …if (tmp64 || fstar.w[1] > ten2mxtrunc128[ind].w[1] || (fstar.w[1] == ten2mxtrunc128[ind].w[1] && f… in round128_19_38()
[all …]
H A Dbid64_to_uint32.c47 UINT64 tmp64; local
138 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
140 if (tmp64 >= 0x9fffffffbull) {
154 tmp64 = 0x9fffffffbull * ten2k64[q - 11];
155 if (C1 >= tmp64) {
284 UINT64 tmp64; local
375 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
377 if (tmp64 >= 0x9fffffffbull) {
391 tmp64 = 0x9fffffffbull * ten2k64[q - 11];
392 if (C1 >= tmp64) {
[all …]
H A Dbid128_round_integral.c40 UINT64 tmp64; variable
230 tmp64 = C1.w[0];
237 if (C1.w[0] < tmp64)
282 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
283 if (tmp64 > ten2mk128[ind - 1].w[1] ||
284 (tmp64 == ten2mk128[ind - 1].w[1] &&
318 tmp64 = fstar.w[2] - onehalf128[ind - 1];
319 if (tmp64 || fstar.w[1] > ten2mk128[ind - 1].w[1] ||
355 tmp64 = fstar.w[3] - onehalf128[ind - 1];
356 if (tmp64 || fstar.w[2] || fstar.w[1] > ten2mk128[ind - 1].w[1]
[all …]
H A Dbid128_to_int64.c38 UINT64 tmp64; variable
233 tmp64 = C1.w[0];
240 if (C1.w[0] < tmp64)
337 UINT64 tmp64, tmp64A;
536 tmp64 = C1.w[0];
543 if (C1.w[0] < tmp64)
600 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
601 if (tmp64 > ten2mk128trunc[ind - 1].w[1]
602 || (tmp64 == ten2mk128trunc[ind - 1].w[1]
618 tmp64 = fstar.w[2] - onehalf128[ind - 1];
[all …]
H A Dbid128_to_uint64.c38 UINT64 tmp64; variable
299 tmp64 = C1.w[0];
306 if (C1.w[0] < tmp64)
395 UINT64 tmp64, tmp64A;
662 tmp64 = C1.w[0];
669 if (C1.w[0] < tmp64)
726 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
727 if (tmp64 > ten2mk128trunc[ind - 1].w[1]
728 || (tmp64 == ten2mk128trunc[ind - 1].w[1]
744 tmp64 = fstar.w[2] - onehalf128[ind - 1];
[all …]
H A Dbid64_to_uint64.c282 UINT64 tmp64; local
482 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
483 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
498 tmp64 = fstar.w[1] - onehalf128[ind - 1];
499 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
2032 UINT64 tmp64; local
2232 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
2233 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
2248 tmp64 = fstar.w[1] - onehalf128[ind - 1];
2249 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
H A Dbid64_to_int64.c279 UINT64 tmp64; local
465 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
466 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
481 tmp64 = fstar.w[1] - onehalf128[ind - 1];
482 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
2091 UINT64 tmp64; local
2277 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
2278 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
2293 tmp64 = fstar.w[1] - onehalf128[ind - 1];
2294 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/libbid/
H A Dbid128_to_uint32.c38 UINT64 tmp64; variable
147 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
149 if (tmp64 > 0x05ull) {
162 tmp64 = 0x05ull;
164 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
166 __mul_128x64_to_128 (C, tmp64, ten2k128[q - 31]);
183 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
185 if (tmp64 >= 0x9fffffffbull) {
198 tmp64 = 0x9fffffffbull;
200 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
[all …]
H A Dbid64_to_int32.c47 UINT64 tmp64; local
132 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
134 if (tmp64 > 0x500000005ull) {
148 tmp64 = 0x500000005ull * ten2k64[q - 11];
149 if (C1 > tmp64) {
166 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
168 if (tmp64 >= 0x4fffffffbull) {
182 tmp64 = 0x4fffffffbull * ten2k64[q - 11];
183 if (C1 >= tmp64) {
306 UINT64 tmp64; local
[all …]
H A Dbid128_to_int32.c37 UINT64 tmp64; variable
146 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
148 if (tmp64 > 0x500000005ull) {
161 tmp64 = 0x500000005ull;
163 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
165 __mul_128x64_to_128 (C, tmp64, ten2k128[q - 31]);
182 tmp64 = C1.w[0] * ten2k64[11 - q]; // C scaled up to 11-digit int
184 if (tmp64 >= 0x4fffffffbull) {
197 tmp64 = 0x4fffffffbull;
199 __mul_64x64_to_128MACH (C, tmp64, ten2k64[q - 11]);
[all …]
H A Dbid_round.c124 UINT64 tmp64; in round64_2_18() local
179 tmp64 = fstar.w[1] - half64[ind]; in round64_2_18()
180 if (tmp64 || fstar.w[0] > ten2mxtrunc64[ind]) { // f* - 1/2 > 10^(-x) in round64_2_18()
227 UINT64 tmp64; in round128_19_38() local
258 tmp64 = C.w[0]; in round128_19_38()
260 if (C.w[0] < tmp64) in round128_19_38()
263 tmp64 = C.w[0]; in round128_19_38()
265 if (C.w[0] < tmp64) { in round128_19_38()
315 tmp64 = fstar.w[2] - half128[ind]; in round128_19_38()
316 …if (tmp64 || fstar.w[1] > ten2mxtrunc128[ind].w[1] || (fstar.w[1] == ten2mxtrunc128[ind].w[1] && f… in round128_19_38()
[all …]
H A Dbid64_to_uint32.c47 UINT64 tmp64; local
138 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
140 if (tmp64 >= 0x9fffffffbull) {
154 tmp64 = 0x9fffffffbull * ten2k64[q - 11];
155 if (C1 >= tmp64) {
284 UINT64 tmp64; local
375 tmp64 = C1 * ten2k64[11 - q]; // C scaled up to 11-digit int
377 if (tmp64 >= 0x9fffffffbull) {
391 tmp64 = 0x9fffffffbull * ten2k64[q - 11];
392 if (C1 >= tmp64) {
[all …]
H A Dbid128_round_integral.c40 UINT64 tmp64; variable
230 tmp64 = C1.w[0];
237 if (C1.w[0] < tmp64)
282 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
283 if (tmp64 > ten2mk128[ind - 1].w[1] ||
284 (tmp64 == ten2mk128[ind - 1].w[1] &&
318 tmp64 = fstar.w[2] - onehalf128[ind - 1];
319 if (tmp64 || fstar.w[1] > ten2mk128[ind - 1].w[1] ||
355 tmp64 = fstar.w[3] - onehalf128[ind - 1];
356 if (tmp64 || fstar.w[2] || fstar.w[1] > ten2mk128[ind - 1].w[1]
[all …]
H A Dbid128_to_int64.c38 UINT64 tmp64; variable
233 tmp64 = C1.w[0];
240 if (C1.w[0] < tmp64)
337 UINT64 tmp64, tmp64A;
536 tmp64 = C1.w[0];
543 if (C1.w[0] < tmp64)
600 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
601 if (tmp64 > ten2mk128trunc[ind - 1].w[1]
602 || (tmp64 == ten2mk128trunc[ind - 1].w[1]
618 tmp64 = fstar.w[2] - onehalf128[ind - 1];
[all …]
H A Dbid128_to_uint64.c38 UINT64 tmp64; variable
299 tmp64 = C1.w[0];
306 if (C1.w[0] < tmp64)
395 UINT64 tmp64, tmp64A;
662 tmp64 = C1.w[0];
669 if (C1.w[0] < tmp64)
726 tmp64 = fstar.w[1] - 0x8000000000000000ull; // f* - 1/2
727 if (tmp64 > ten2mk128trunc[ind - 1].w[1]
728 || (tmp64 == ten2mk128trunc[ind - 1].w[1]
744 tmp64 = fstar.w[2] - onehalf128[ind - 1];
[all …]
H A Dbid64_to_uint64.c282 UINT64 tmp64; local
482 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
483 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
498 tmp64 = fstar.w[1] - onehalf128[ind - 1];
499 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
2032 UINT64 tmp64; local
2232 tmp64 = fstar.w[0] - 0x8000000000000000ull; // f* - 1/2
2233 if ((tmp64 > ten2mk128trunc[ind - 1].w[1])) {
2248 tmp64 = fstar.w[1] - onehalf128[ind - 1];
2249 if (tmp64 || fstar.w[0] > ten2mk128trunc[ind - 1].w[1]) {
/netbsd-src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c173 SHA512_Pad(crypto_hash_sha512_state *state, uint64_t tmp64[80 + 8]) in SHA512_Pad()
187 SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]); in SHA512_Pad()
191 SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]); in SHA512_Pad()
213 uint64_t tmp64[80 + 8]; in crypto_hash_sha512_update() local
240 SHA512_Transform(state->state, state->buf, &tmp64[0], &tmp64[80]); in crypto_hash_sha512_update()
245 SHA512_Transform(state->state, in, &tmp64[0], &tmp64[80]); in crypto_hash_sha512_update()
253 sodium_memzero((void *) tmp64, sizeof tmp64); in crypto_hash_sha512_update()
261 uint64_t tmp64[80 + 8]; in crypto_hash_sha512_final() local
263 SHA512_Pad(state, tmp64); in crypto_hash_sha512_final()
265 sodium_memzero((void *) tmp64, sizeof tmp64); in crypto_hash_sha512_final()
/netbsd-src/libexec/ld.elf_so/arch/x86_64/
H A Dmdreloc.c143 Elf64_Addr tmp64; in _rtld_relocate_nonplt_objects() local
191 tmp64 = (Elf64_Addr)(defobj->relocbase + def->st_value + in _rtld_relocate_nonplt_objects()
194 if (*where64 != tmp64) in _rtld_relocate_nonplt_objects()
195 *where64 = tmp64; in _rtld_relocate_nonplt_objects()
212 tmp64 = (Elf64_Addr)(defobj->relocbase + def->st_value); in _rtld_relocate_nonplt_objects()
214 if (*where64 != tmp64) in _rtld_relocate_nonplt_objects()
215 *where64 = tmp64; in _rtld_relocate_nonplt_objects()
221 tmp64 = (Elf64_Addr)(obj->relocbase + rela->r_addend); in _rtld_relocate_nonplt_objects()
222 if (*where64 != tmp64) in _rtld_relocate_nonplt_objects()
223 *where64 = tmp64; in _rtld_relocate_nonplt_objects()
[all...]
/netbsd-src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
H A Damdgpu_smu7_thermal.c64 uint64_t tmp64; in smu7_fan_ctrl_get_fan_speed_percent() local
78 tmp64 = (uint64_t)duty * 100; in smu7_fan_ctrl_get_fan_speed_percent()
79 do_div(tmp64, duty100); in smu7_fan_ctrl_get_fan_speed_percent()
80 *speed = (uint32_t)tmp64; in smu7_fan_ctrl_get_fan_speed_percent()
205 uint64_t tmp64; in smu7_fan_ctrl_set_fan_speed_percent() local
222 tmp64 = (uint64_t)speed * duty100; in smu7_fan_ctrl_set_fan_speed_percent()
223 do_div(tmp64, 100); in smu7_fan_ctrl_set_fan_speed_percent()
224 duty = (uint32_t)tmp64; in smu7_fan_ctrl_set_fan_speed_percent()
H A Damdgpu_vega20_thermal.c147 uint64_t tmp64; in vega20_fan_ctrl_set_fan_speed_percent() local
161 tmp64 = (uint64_t)speed * duty100; in vega20_fan_ctrl_set_fan_speed_percent()
162 do_div(tmp64, 100); in vega20_fan_ctrl_set_fan_speed_percent()
163 duty = (uint32_t)tmp64; in vega20_fan_ctrl_set_fan_speed_percent()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/sha/asm/
H A Dsha1-sparcv9.pl39 $tmp64="%g3";
326 ldx [$tmp0+64],$tmp64
336 srlx $tmp64,$tmp2,$tmp64
337 or $tmp64,@X[7],@X[7]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/sha/asm/
H A Dsha1-sparcv9.pl40 $tmp64="%g3";
324 ldx [$tmp0+64],$tmp64
334 srlx $tmp64,$tmp2,$tmp64
335 or $tmp64,@X[7],@X[7]

12