Home
last modified time | relevance | path

Searched refs:round (Results 1 – 25 of 383) sorted by relevance

12345678910>>...16

/OK3568_Linux_fs/kernel/arch/x86/crypto/
H A Dcast5-avx-x86_64-asm_64.S145 #define round(l, r, n, f) \ macro
249 round(RL, RR, 0, 1);
250 round(RR, RL, 1, 2);
251 round(RL, RR, 2, 3);
252 round(RR, RL, 3, 1);
253 round(RL, RR, 4, 2);
254 round(RR, RL, 5, 3);
255 round(RL, RR, 6, 1);
256 round(RR, RL, 7, 2);
257 round(RL, RR, 8, 3);
[all …]
H A Dtwofish-x86_64-asm_64.S66 #define encrypt_round(a,b,c,d,round)\ argument
88 add k+round(%r11), %r9d;\
91 add k+4+round(%r11),%r8d;\
102 #define encrypt_last_round(a,b,c,d,round)\ argument
126 add k+round(%r11), %r9d;\
129 add k+4+round(%r11),%r8d;\
139 #define decrypt_round(a,b,c,d,round)\ argument
161 add k+round(%r11), %r9d;\
163 add k+4+round(%r11),%r8d;\
175 #define decrypt_last_round(a,b,c,d,round)\ argument
[all …]
H A Dtwofish-i586-asm_32.S67 #define encrypt_round(a,b,c,d,round)\ argument
91 add k+round(%ebp), %esi;\
94 add k+4+round(%ebp),d ## D;\
105 #define encrypt_last_round(a,b,c,d,round)\ argument
129 add k+round(%ebp), %esi;\
132 add k+4+round(%ebp),d ## D;\
142 #define decrypt_round(a,b,c,d,round)\ argument
166 add k+round(%ebp), c ## D;\
168 add k+4+round(%ebp),%esi;\
180 #define decrypt_last_round(a,b,c,d,round)\ argument
[all …]
/OK3568_Linux_fs/kernel/arch/mips/math-emu/
H A Dsp_rint.c19 int round; in ieee754sp_rint() local
42 round = 0; in ieee754sp_rint()
48 round = (residue >> 31) != 0; in ieee754sp_rint()
57 if (round && (sticky || odd)) in ieee754sp_rint()
63 if ((round || sticky) && !xs) in ieee754sp_rint()
67 if ((round || sticky) && xs) in ieee754sp_rint()
72 if (round || sticky) in ieee754sp_rint()
H A Ddp_rint.c19 int round; in ieee754dp_rint() local
42 round = 0; in ieee754dp_rint()
47 round = (residue >> 63) != 0; in ieee754dp_rint()
56 if (round && (sticky || odd)) in ieee754dp_rint()
62 if ((round || sticky) && !xs) in ieee754dp_rint()
66 if ((round || sticky) && xs) in ieee754dp_rint()
71 if (round || sticky) in ieee754dp_rint()
H A Dsp_tint.c15 int round; in ieee754sp_tint() local
58 round = 0; in ieee754sp_tint()
67 round = (residue >> 31) != 0; in ieee754sp_tint()
74 if (round && (sticky || odd)) in ieee754sp_tint()
80 if ((round || sticky) && !xs) in ieee754sp_tint()
84 if ((round || sticky) && xs) in ieee754sp_tint()
93 if (round || sticky) in ieee754sp_tint()
H A Ddp_tlong.c15 int round; in ieee754dp_tlong() local
58 round = 0; in ieee754dp_tlong()
67 round = (residue >> 63) != 0; in ieee754dp_tlong()
74 if (round && (sticky || odd)) in ieee754dp_tlong()
80 if ((round || sticky) && !xs) in ieee754dp_tlong()
84 if ((round || sticky) && xs) in ieee754dp_tlong()
93 if (round || sticky) in ieee754dp_tlong()
H A Dsp_tlong.c15 int round; in ieee754sp_tlong() local
58 round = 0; in ieee754sp_tlong()
63 round = (residue >> 31) != 0; in ieee754sp_tlong()
70 if (round && (sticky || odd)) in ieee754sp_tlong()
76 if ((round || sticky) && !xs) in ieee754sp_tlong()
80 if ((round || sticky) && xs) in ieee754sp_tlong()
89 if (round || sticky) in ieee754sp_tlong()
H A Ddp_tint.c15 int round; in ieee754dp_tint() local
55 round = 0; in ieee754dp_tint()
60 round = (residue >> 63) != 0; in ieee754dp_tint()
69 if (round && (sticky || odd)) in ieee754dp_tint()
75 if ((round || sticky) && !xs) in ieee754dp_tint()
79 if ((round || sticky) && xs) in ieee754dp_tint()
89 if (round || sticky) in ieee754dp_tint()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/
H A Dhelper.js56 return Math.round(number * multiple) / multiple;
64 value = (value > 1) ? Math.round(value) : 0
67 value = (value > 1) ? Math.round(value) : 0
76 var dist = Math.round(meters)
79 dist = Math.round(dist / 1000)
82 dist = Math.round(dist / 100)
/OK3568_Linux_fs/kernel/tools/power/cpupower/bench/
H A Dsystem.c130 unsigned int round; in prepare_user() local
132 for (round = 0; round < config->rounds; round++) { in prepare_user()
134 (config->sleep + config->sleep_step * round); in prepare_user()
136 (config->load + config->load_step * round) + in prepare_user()
137 (config->load + config->load_step * round * 4); in prepare_user()
/OK3568_Linux_fs/buildroot/package/cache-calibrator/
H A D0001-Fix-conflicting-round-function.patch4 Subject: [PATCH] Fix conflicting round() function
6 calibrator.c defines a local round() function that conflicts
24 -lng round(dbl x)
33 - if (!delay) fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(cache->latency1[l] - delay)), NSperIt(c…
34 - else fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(cache->latency2[l] - delay)), NSperIt(cache->…
43 - if (!delay) z = (dbl)round(CYperIt(cache->latency1[l] - delay)) * 1000.0 / (dbl)MHz;
44 - else z = (dbl)round(CYperIt(cache->latency2[l] - delay)) * 1000.0 / (dbl)MHz;
54 - if (!delay) fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(TLB->latency1[l] - delay)), NSperIt(TLB…
55 - else fprintf(fp, "%s'(%ld)' %f", s, round(CYperIt(TLB->latency2[l] - delay)), NSperIt(TLB->late…
64 - if (!delay) z = (dbl)round(CYperIt(TLB->latency1[l] - delay)) * 1000.0 / (dbl)MHz;
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/
H A Dclip_lines.cpp26 …p0 = { x1, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x1 - p0.x) / (p1.x - p0.x)… in clipLines()
28 …p1 = { x1, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x1 - p0.x) / (p1.x - p0.x)… in clipLines()
34 …p0 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y1 - p0.y) / (p1.y - p0.y)))),… in clipLines()
36 …p1 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y1 - p0.y) / (p1.y - p0.y)))),… in clipLines()
42 …p0 = { x2, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x2 - p0.x) / (p1.x - p0.x)… in clipLines()
44 …p1 = { x2, static_cast<int16_t>(::round(p0.y + (p1.y - p0.y) * ((float)(x2 - p0.x) / (p1.x - p0.x)… in clipLines()
50 …p0 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y2 - p0.y) / (p1.y - p0.y)))),… in clipLines()
52 …p1 = { static_cast<int16_t>(::round(p0.x + (p1.x - p0.x) * ((float)(y2 - p0.y) / (p1.y - p0.y)))),… in clipLines()
/OK3568_Linux_fs/kernel/Documentation/networking/
H A Dtls-offload-reorder-bad.svg1round" stroke-linecap="butt" d="m0 24.999102l99.02362 0l0 42.04725l-99.02362 0z" fill-rule="evenod…
H A Dtls-offload-reorder-good.svg1round" stroke-linecap="butt" d="m0 24.999102l99.02362 0l0 42.04725l-99.02362 0z" fill-rule="evenod…
/OK3568_Linux_fs/u-boot/test/rockchip/
H A Dtest-storage.c77 u32 blocks, round, sector; in do_test_storage() local
131 round = 4; in do_test_storage()
140 (blocks * dev_desc->blksz) >> 20, round); in do_test_storage()
174 for (i = 0; i < round; i++) { in do_test_storage()
182 for (i = 0; i < round; i++) { in do_test_storage()
194 label, blocks * round / 2048, ts, (blocks * round >> 1) / ts); in do_test_storage()
202 for (i = 0; i < round; i++) { in do_test_storage()
210 for (i = 0; i < round; i++) { in do_test_storage()
222 label, blocks * round / 2048, ts, (blocks * round >> 1) / ts); in do_test_storage()
/OK3568_Linux_fs/kernel/arch/arm64/crypto/
H A Dsha512-core.S_shipped41 // 10% (or by 1 cycle per round), but at the cost of 20% loss
42 // on Cortex-A53 (or by 4 cycles per round).
57 // all-round performance. For example it executes ~30% faster on X-Gene
106 eor x19,x20,x21 // a^b, b^c in next round
117 ldr x28,[x30],#8 // *K++, x19 in next round
131 eor x28,x27,x20 // a^b, b^c in next round
142 ldr x19,[x30],#8 // *K++, x28 in next round
155 eor x19,x26,x27 // a^b, b^c in next round
166 ldr x28,[x30],#8 // *K++, x19 in next round
180 eor x28,x25,x26 // a^b, b^c in next round
[all …]
H A Daes-cipher-core.S84 .macro do_crypt, round, ttab, ltab, bsz
104 0: \round w8, w9, w10, w11, w4, w5, w6, w7
105 \round w4, w5, w6, w7, w8, w9, w10, w11
108 \round w8, w9, w10, w11, w4, w5, w6, w7
110 2: \round w4, w5, w6, w7, w8, w9, w10, w11
113 \round w4, w5, w6, w7, w8, w9, w10, w11, \bsz, b
/OK3568_Linux_fs/u-boot/lib/
H A Daes.c549 u32 round; in aes_encrypt() local
554 for (round = 1; round < AES_ROUNDS + 1; round++) { in aes_encrypt()
555 if (round < AES_ROUNDS) in aes_encrypt()
561 (u32 *)expkey + round * AES_STATECOLS); in aes_encrypt()
570 int round; in aes_decrypt() local
578 for (round = AES_ROUNDS; round--; ) { in aes_decrypt()
580 (u32 *)expkey + round * AES_STATECOLS); in aes_decrypt()
581 if (round) in aes_decrypt()
/OK3568_Linux_fs/kernel/lib/crypto/
H A Daes.c271 int round; in aes_encrypt() local
296 for (round = 0;; round += 2, rkp += 8) { in aes_encrypt()
302 if (round == rounds - 2) in aes_encrypt()
329 int round; in aes_decrypt() local
354 for (round = 0;; round += 2, rkp += 8) { in aes_decrypt()
360 if (round == rounds - 2) in aes_decrypt()
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Dsinc.c26 sox_bool round; member
45 case 'r': p->round = sox_true; break; in create()
81 … * lpf(double Fn, double Fc, double tbw, int * num_taps, double att, double * beta, sox_bool round) in lpf() argument
93 if (round) in lpf()
114 h[0] = lpf(Fn, p->Fc0, p->tbw0, &p->num_taps[0], p->att, &p->beta,p->round); in start()
115 h[1] = lpf(Fn, p->Fc1, p->tbw1, &p->num_taps[1], p->att, &p->beta,p->round); in start()
/OK3568_Linux_fs/kernel/arch/m68k/fpsp040/
H A Dround.S2 | round.sa 3.4 7/29/91
21 | round --- round result according to precision/mode
44 .global round symbol
45 round: label
46 | If g=r=s=0 then result is exact and round is done, else set
55 swap %d1 |set up d1.w for round prec.
81 swap %d1 |set up d1 for round prec.
106 swap %d1 |set up d1 for round prec.
113 | Note that this will round to even in case of a tie.
116 swap %d1 |set up d1 for round prec.
[all …]
H A Dres_func.S36 |xref round
111 | The routine round is used to correctly round the input for the
474 | If bit 2 is set, round is forced to double. If it is clear,
475 | and bit 6 is set, round is forced to single. If both are clear,
476 | the round precision is found in the fpcr. If the rounding precision
496 | The move is fdmove or round precision is double. Result is zero.
511 | The move is fsmove or round precision is single. Result is zero.
787 | ;round precision/mode. This
827 | precision. We can then call round with no sticky and the result
890 orl %d0,%d1 |set up for round call
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/
H A Dline_program.hpp57 …static LayoutVertex layoutVertex(Point<int16_t> p, Point<double> e, bool round, bool up, int8_t di… in layoutVertex() argument
62 static_cast<int16_t>(round ? 1 : 0), in layoutVertex()
67 static_cast<uint8_t>(::round(extrudeScale * e.x) + 128), in layoutVertex()
68 static_cast<uint8_t>(::round(extrudeScale * e.y) + 128), in layoutVertex()
/OK3568_Linux_fs/kernel/arch/arm/crypto/
H A Daes-cipher-core.S124 .macro do_crypt, round, ttab, ltab, bsz
171 0: \round r8, r9, r10, r11, r4, r5, r6, r7
172 \round r4, r5, r6, r7, r8, r9, r10, r11
175 \round r8, r9, r10, r11, r4, r5, r6, r7
177 \round r4, r5, r6, r7, r8, r9, r10, r11
194 \round r4, r5, r6, r7, r8, r9, r10, r11, \bsz, b, rounds

12345678910>>...16