Searched refs:round (Results 1 - 25 of 92) sorted by relevance

1234

/freebsd-13-stable/lib/msun/src/
H A Ds_llround.c5 #define roundit round
H A Ds_round.c38 round(double x) function
61 __weak_reference(round, roundl);
H A Ds_lround.c37 #define roundit round
/freebsd-13-stable/sys/crypto/aesni/
H A Daeskeys_amd64.S128 aeskeygenassist $0x1,%xmm2,%xmm1 # round 1
132 aeskeygenassist $0x2,%xmm2,%xmm1 # round 2
136 aeskeygenassist $0x4,%xmm2,%xmm1 # round 3
140 aeskeygenassist $0x8,%xmm2,%xmm1 # round 4
144 aeskeygenassist $0x10,%xmm2,%xmm1 # round 5
148 aeskeygenassist $0x20,%xmm2,%xmm1 # round 6
152 aeskeygenassist $0x40,%xmm2,%xmm1 # round 7
157 aeskeygenassist $0x1,%xmm2,%xmm1 # round 1
159 aeskeygenassist $0x2,%xmm2,%xmm1 # round 2
161 aeskeygenassist $0x4,%xmm2,%xmm1 # round
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatsisf.c10 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
46 rep_t round = (rep_t)a << (typeWidth - shift); local
47 if (round > signBit)
49 if (round == signBit)
H A Dfloatunsisf.c10 // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
39 rep_t round = (rep_t)a << (typeWidth - shift); local
40 if (round > signBit)
42 if (round == signBit)
H A Ddivsf3.c160 const bool round = (residual << 1) > bSignificand; local
164 absResult += round;
171 // code to round them correctly.
176 const bool round = (residual << 1) > bSignificand; local
182 absResult += round;
H A Ddivdf3.c175 const bool round = (residual << 1) > bSignificand; local
179 absResult += round;
186 // code to round them correctly.
191 const bool round = (residual << 1) > bSignificand; local
197 absResult += round;
H A Ddivtf3.c194 const bool round = (residual << 1) > bSignificand; local
198 absResult += round;
205 // code to round them correctly.
208 const bool round = (residual << 1) >= bSignificand; local
214 absResult += round;
/freebsd-13-stable/sys/contrib/ck/src/
H A Dck_barrier_tournament.c35 * assigned roles to perform for each round of the barrier. Winners
36 * move on to the next round, while losers spin in their current rounds
37 * on their own flags. During the last round, the champion of the tournament
113 int round = 1; local
118 for (;; ++round) {
119 switch (rounds[state->vpid][round].role) {
127 while (ck_pr_load_uint(&rounds[state->vpid][round].flag) != state->sense)
130 ck_pr_store_uint(rounds[state->vpid][round].opponent, state->sense);
140 ck_pr_store_uint(rounds[state->vpid][round].opponent, state->sense);
141 while (ck_pr_load_uint(&rounds[state->vpid][round]
[all...]
/freebsd-13-stable/libexec/rtld-elf/aarch64/
H A Drtld_machdep.h73 #define round(size, align) \ macro
76 round(16, align)
78 round(prev_offset + prev_size, align)
81 round(TLS_TCB_SIZE, align) - TLS_TCB_SIZE
/freebsd-13-stable/libexec/rtld-elf/arm/
H A Drtld_machdep.h65 #define round(size, align) \ macro
68 round(8, align)
70 round(prev_offset + prev_size, align)
73 round(TLS_TCB_SIZE, align) - TLS_TCB_SIZE
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A Dxxhash.cpp57 static uint64_t round(uint64_t Acc, uint64_t Input) { function
65 Val = round(0, Val);
86 V1 = round(V1, endian::read64le(P));
88 V2 = round(V2, endian::read64le(P));
90 V3 = round(V3, endian::read64le(P));
92 V4 = round(V4, endian::read64le(P));
109 uint64_t const K1 = round(0, endian::read64le(P));
/freebsd-13-stable/usr.bin/truncate/
H A Dtruncate.c52 off_t oflow, rsize, sz, tsize, round; local
157 round = sb.st_size / sz;
158 if (round != sz && rsize < 0)
159 round--;
161 round++;
162 tsize = (round < 0 ? 0 : round) * sz;
/freebsd-13-stable/crypto/openssl/crypto/aes/asm/
H A Dvpaes-x86.pl69 my ($round, $base, $magic, $key, $const, $inp, $out)=
194 &mov ($round,&DWP(240,$key));
212 # middle of middle round
235 &sub ($round,1); # nr--
239 # top of round
262 # middle of last round
281 &mov ($round,&DWP(240,$key));
285 &mov ($magic,$round);
335 &add ($key,16); # next round key
338 &sub ($round,
[all...]
H A Daesfx-sparcv9.pl54 ldd [$key + 0], %f6 ! round[0]
73 ldd [$key + 16], %f10 ! round[1]
76 fxor %f0, %f6, %f0 ! ^=round[0]
78 ldd [$key + 32], %f6 ! round[2]
144 ldd [$key + 0], %f6 ! round[0]
163 ldd [$key + 16], %f10 ! round[1]
166 fxor %f0, %f6, %f0 ! ^=round[0]
168 ldd [$key + 32], %f6 ! round[2]
421 ldd [$key + 0], $r0hi ! round[0]
426 ldd [$end + 0], $rlhi ! round[las
[all...]
/freebsd-13-stable/libexec/rtld-elf/mips/
H A Drtld_machdep.h65 #define round(size, align) \ macro
70 round(prev_offset + prev_size, align)
/freebsd-13-stable/libexec/rtld-elf/powerpc/
H A Drtld_machdep.h80 #define round(size, align) \ macro
85 round(prev_offset + prev_size, align)
/freebsd-13-stable/libexec/rtld-elf/powerpc64/
H A Drtld_machdep.h72 #define round(size, align) \ macro
77 round(prev_offset + prev_size, align)
/freebsd-13-stable/libexec/rtld-elf/riscv/
H A Drtld_machdep.h89 #define round(size, align) \ macro
94 round(prev_offset + prev_size, align)
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/gen/
H A Dt_sleep.c269 int64_t delta1, delta2, delta3, round; local
275 round = 1;
278 round = 1000000000;
279 delta3 = round;
311 delta3 /= round;
312 delta3 *= round;
325 delta3 /= round;
326 delta3 *= round;
/freebsd-13-stable/lib/msun/arm/
H A Dfenv.c129 __softfp_round_to_vfp(int round) argument
132 switch (round) {
146 __softfp_round_from_vfp(int round) argument
149 switch (round) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DHeatUtils.cpp74 unsigned colorId = unsigned(round(percent * (heatSize - 1.0)));
/freebsd-13-stable/contrib/netbsd-tests/lib/libm/
H A Dt_round.c67 b = round(a);
75 c = round(-a);
/freebsd-13-stable/secure/lib/libcrypt/
H A Dcrypt-des.c372 int shifts, round; local
417 for (round = 0; round < 16; round++) {
420 shifts += key_shifts[round];
425 de_keysl[15 - round] =
426 en_keysl[round] = comp_maskl[0][(t0 >> 21) & 0x7f]
435 de_keysr[15 - round] =
436 en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f]
456 int round; local
[all...]

Completed in 308 milliseconds

1234