Home
last modified time | relevance | path

Searched refs:acc (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_nist.c374 NIST_INT64 acc; /* accumulator */ in BN_nist_mod_192() local
378 acc = rp[0]; in BN_nist_mod_192()
379 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
380 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
381 rp[0] = (unsigned int)acc; in BN_nist_mod_192()
382 acc >>= 32; in BN_nist_mod_192()
384 acc += rp[1]; in BN_nist_mod_192()
385 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
386 acc += bp[5 * 2 - 5]; in BN_nist_mod_192()
387 rp[1] = (unsigned int)acc; in BN_nist_mod_192()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_nist.c395 NIST_INT64 acc; /* accumulator */ in BN_nist_mod_192() local
399 acc = load_u32(&rp[0]); in BN_nist_mod_192()
400 acc += bp[3 * 2 - 6]; in BN_nist_mod_192()
401 acc += bp[5 * 2 - 6]; in BN_nist_mod_192()
402 store_lo32(&rp[0], acc); in BN_nist_mod_192()
403 acc >>= 32; in BN_nist_mod_192()
405 acc += load_u32(&rp[1]); in BN_nist_mod_192()
406 acc += bp[3 * 2 - 5]; in BN_nist_mod_192()
407 acc += bp[5 * 2 - 5]; in BN_nist_mod_192()
408 store_lo32(&rp[1], acc); in BN_nist_mod_192()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl100 my @acc=map("%l$_",(0..7));
205 srlx $t0,32,@acc[1] ! extract high parts
206 srlx $t1,32,@acc[2]
207 srlx $t2,32,@acc[3]
208 srlx $t3,32,@acc[4]
209 srlx $t4,32,@acc[5]
210 srlx $t5,32,@acc[6]
211 srlx $t6,32,@acc[7]
212 srlx $t7,32,@acc[0] ! "@acc[8]"
217 addcc @acc[1],$t1,@acc[1] ! accumulate high parts
[all …]
H A Decp_nistz256-armv4.pl554 my @acc=map("r$_",(3..11));
590 ldmia $a_ptr,{@acc[1]-@acc[8]}
592 umull @acc[0],$t3,@acc[1],$bj @ r[0]=a[0]*b[0]
593 stmdb sp!,{$acc[1]-@acc[8]} @ copy a[0-7] to stack, so
597 umull @acc[1],$t0,@acc[2],$bj @ r[1]=a[1]*b[0]
598 umull @acc[2],$t1,@acc[3],$bj
599 adds @acc[1],@acc[1],$t3 @ accumulate high part of mult
600 umull @acc[3],$t2,@acc[4],$bj
601 adcs @acc[2],@acc[2],$t0
602 umull @acc[4],$t3,@acc[5],$bj
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl98 my @acc=map("%l$_",(0..7));
203 srlx $t0,32,@acc[1] ! extract high parts
204 srlx $t1,32,@acc[2]
205 srlx $t2,32,@acc[3]
206 srlx $t3,32,@acc[4]
207 srlx $t4,32,@acc[5]
208 srlx $t5,32,@acc[6]
209 srlx $t6,32,@acc[7]
210 srlx $t7,32,@acc[0] ! "@acc[8]"
215 addcc @acc[1],$t1,@acc[1] ! accumulate high parts
[all …]
H A Decp_nistz256-armv4.pl550 my @acc=map("r$_",(3..11));
586 ldmia $a_ptr,{@acc[1]-@acc[8]}
588 umull @acc[0],$t3,@acc[1],$bj @ r[0]=a[0]*b[0]
589 stmdb sp!,{$acc[1]-@acc[8]} @ copy a[0-7] to stack, so
593 umull @acc[1],$t0,@acc[2],$bj @ r[1]=a[1]*b[0]
594 umull @acc[2],$t1,@acc[3],$bj
595 adds @acc[1],@acc[1],$t3 @ accumulate high part of mult
596 umull @acc[3],$t2,@acc[4],$bj
597 adcs @acc[2],@acc[2],$t0
598 umull @acc[4],$t3,@acc[5],$bj
[all …]
/netbsd-src/sys/dev/raidframe/
H A Drf_acctrace.c78 RF_AccTotals_t *acc = &raid->acc_totals; in rf_LogTraceRec() local
86 acc->num_log_ents++; in rf_LogTraceRec()
88 acc->recon_start_to_fetch_us += rec->specific.recon.recon_start_to_fetch_us; in rf_LogTraceRec()
89 acc->recon_fetch_to_return_us += rec->specific.recon.recon_fetch_to_return_us; in rf_LogTraceRec()
90 acc->recon_return_to_submit_us += rec->specific.recon.recon_return_to_submit_us; in rf_LogTraceRec()
91 acc->recon_num_phys_ios += rec->num_phys_ios; in rf_LogTraceRec()
92 acc->recon_phys_io_us += rec->phys_io_us; in rf_LogTraceRec()
93 acc->recon_diskwait_us += rec->diskwait_us; in rf_LogTraceRec()
94 acc->recon_reccount++; in rf_LogTraceRec()
96 RF_HIST_ADD(acc->tot_hist, rec->total_us); in rf_LogTraceRec()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm_cde.h37 #define __arm_cx1a(coproc, acc, imm) \ argument
38 __builtin_arm_cx1asi(coproc, acc, imm)
43 #define __arm_cx2a(coproc, acc, n, imm) \ argument
44 __builtin_arm_cx2asi(coproc, acc, n, imm)
49 #define __arm_cx3a(coproc, acc, n, m, imm) \ argument
50 __builtin_arm_cx3asi(coproc, acc, n, m, imm)
55 #define __arm_cx1da(coproc, acc, imm) \ argument
56 __builtin_arm_cx1adi(coproc, acc, imm)
61 #define __arm_cx2da(coproc, acc, n, imm) \ argument
62 __builtin_arm_cx2adi(coproc, acc, n, imm)
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm_cde.h37 #define __arm_cx1a(coproc, acc, imm) \ argument
38 __builtin_arm_cx1asi(coproc, acc, imm)
43 #define __arm_cx2a(coproc, acc, n, imm) \ argument
44 __builtin_arm_cx2asi(coproc, acc, n, imm)
49 #define __arm_cx3a(coproc, acc, n, m, imm) \ argument
50 __builtin_arm_cx3asi(coproc, acc, n, m, imm)
55 #define __arm_cx1da(coproc, acc, imm) \ argument
56 __builtin_arm_cx1adi(coproc, acc, imm)
61 #define __arm_cx2da(coproc, acc, n, imm) \ argument
62 __builtin_arm_cx2adi(coproc, acc, n, imm)
[all …]
/netbsd-src/external/bsd/libbind/dist/irs/
H A Dgen.c124 struct irs_acc *acc; in irs_gen_acc() local
127 if (!(acc = memget(sizeof *acc))) { in irs_gen_acc()
131 memset(acc, 0x5e, sizeof *acc); in irs_gen_acc()
134 memput(acc, sizeof *acc); in irs_gen_acc()
144 acc->private = irs; in irs_gen_acc()
146 acc->gr_map = irs_gen_gr; in irs_gen_acc()
148 acc->gr_map = NULL; in irs_gen_acc()
151 acc->pw_map = irs_gen_pw; in irs_gen_acc()
153 acc->pw_map = NULL; in irs_gen_acc()
155 acc->sv_map = irs_gen_sv; in irs_gen_acc()
[all …]
H A Ddns.c62 struct irs_acc *acc; in irs_dns_acc() local
67 if (!(acc = memget(sizeof *acc))) { in irs_dns_acc()
71 memset(acc, 0x5e, sizeof *acc); in irs_dns_acc()
74 memput(acc, sizeof *acc); in irs_dns_acc()
88 acc->private = dns; in irs_dns_acc()
90 acc->gr_map = irs_dns_gr; in irs_dns_acc()
92 acc->gr_map = NULL; in irs_dns_acc()
95 acc->pw_map = irs_dns_pw; in irs_dns_acc()
97 acc->pw_map = NULL; in irs_dns_acc()
99 acc->sv_map = irs_dns_sv; in irs_dns_acc()
[all …]
H A Dlcl.c57 struct irs_acc *acc; in irs_lcl_acc() local
62 if (!(acc = memget(sizeof *acc))) { in irs_lcl_acc()
66 memset(acc, 0x5e, sizeof *acc); in irs_lcl_acc()
69 free(acc); in irs_lcl_acc()
75 acc->private = lcl; in irs_lcl_acc()
77 acc->gr_map = irs_lcl_gr; in irs_lcl_acc()
79 acc->gr_map = NULL; in irs_lcl_acc()
82 acc->pw_map = irs_lcl_pw; in irs_lcl_acc()
84 acc->pw_map = NULL; in irs_lcl_acc()
86 acc->sv_map = irs_lcl_sv; in irs_lcl_acc()
[all …]
H A Dnis.c68 struct irs_acc *acc; in irs_nis_acc() local
80 if (!(acc = memget(sizeof *acc))) { in irs_nis_acc()
85 memset(acc, 0x5e, sizeof *acc); in irs_nis_acc()
86 acc->private = nis; in irs_nis_acc()
89 acc->gr_map = irs_nis_gr; in irs_nis_acc()
91 acc->gr_map = NULL; in irs_nis_acc()
94 acc->pw_map = irs_nis_pw; in irs_nis_acc()
96 acc->pw_map = NULL; in irs_nis_acc()
98 acc->sv_map = irs_nis_sv; in irs_nis_acc()
99 acc->pr_map = irs_nis_pr; in irs_nis_acc()
[all …]
/netbsd-src/external/mit/isl/dist/
H A Disl_flow.c218 struct isl_access_info *acc; in isl_access_info_alloc() local
226 acc = isl_calloc(ctx, struct isl_access_info, in isl_access_info_alloc()
229 if (!acc) in isl_access_info_alloc()
232 acc->sink.map = sink; in isl_access_info_alloc()
233 acc->sink.data = sink_user; in isl_access_info_alloc()
234 acc->level_before = fn; in isl_access_info_alloc()
235 acc->max_source = max_source; in isl_access_info_alloc()
236 acc->n_must = 0; in isl_access_info_alloc()
237 acc->n_may = 0; in isl_access_info_alloc()
239 return acc; in isl_access_info_alloc()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgenextract.cc92 class accum_extract *acc) in push_pathstr_operand() argument
95 acc->pathstr.safe_push (operand + UPPER_OFFSET); in push_pathstr_operand()
97 acc->pathstr.safe_push (operand + 'a'); in push_pathstr_operand()
99 acc->pathstr.safe_push (operand + '0'); in push_pathstr_operand()
109 class accum_extract acc; in gen_insn() local
116 walk_rtx (info, XVECEXP (insn, 1, 0), &acc); in gen_insn()
120 push_pathstr_operand (i, true, &acc); in gen_insn()
121 walk_rtx (info, XVECEXP (insn, 1, i), &acc); in gen_insn()
122 acc.pathstr.pop (); in gen_insn()
130 op_count = acc.oplocs.length (); in gen_insn()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgenextract.c92 class accum_extract *acc) in push_pathstr_operand() argument
95 acc->pathstr.safe_push (operand + UPPER_OFFSET); in push_pathstr_operand()
97 acc->pathstr.safe_push (operand + 'a'); in push_pathstr_operand()
99 acc->pathstr.safe_push (operand + '0'); in push_pathstr_operand()
109 class accum_extract acc; in gen_insn() local
116 walk_rtx (info, XVECEXP (insn, 1, 0), &acc); in gen_insn()
120 push_pathstr_operand (i, true, &acc); in gen_insn()
121 walk_rtx (info, XVECEXP (insn, 1, i), &acc); in gen_insn()
122 acc.pathstr.pop (); in gen_insn()
130 op_count = acc.oplocs.length (); in gen_insn()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rc4/asm/
H A Drc4-s390x.pl55 $acc="%r0";
99 llgc $acc,2($TY,$key)
102 sllg $acc,$acc,8
103 ic $acc,2($TY,$key)
122 sllg $acc,$acc,8
124 ic $acc,2($TY,$key)
125 xgr $acc,$TX[1]
126 stg $acc,0($out)
131 lghi $acc,7
132 ngr $len,$acc
[all …]
H A Drc4-parisc.pl89 $acc="%r1";
110 `sprintf("%sdep %$dat1,%d,8,%$acc",$i==1?"z":"",8*($i-1)+7) if ($i>0)`
134 $LDX $TY($key),$acc
137 xor $dat1,$acc,$acc
139 stb $acc,-1($out)
187 and,<> $inp,$dat0,$acc ; is $inp aligned?
189 sub $inp,$acc,$rem ; align $inp
191 sh3addl $acc,%r0,$acc
192 subi 32,$acc,$acc
193 mtctl $acc,%cr11 ; load %sar with vshd align factor
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rc4/asm/
H A Drc4-s390x.pl57 $acc="%r0";
101 llgc $acc,2($TY,$key)
104 sllg $acc,$acc,8
105 ic $acc,2($TY,$key)
124 sllg $acc,$acc,8
126 ic $acc,2($TY,$key)
127 xgr $acc,$TX[1]
128 stg $acc,0($out)
133 lghi $acc,7
134 ngr $len,$acc
[all …]
H A Drc4-parisc.pl92 $acc="%r1";
113 `sprintf("%sdep %$dat1,%d,8,%$acc",$i==1?"z":"",8*($i-1)+7) if ($i>0)`
137 $LDX $TY($key),$acc
140 xor $dat1,$acc,$acc
142 stb $acc,-1($out)
190 and,<> $inp,$dat0,$acc ; is $inp aligned?
192 sub $inp,$acc,$rem ; align $inp
194 sh3addl $acc,%r0,$acc
195 subi 32,$acc,$acc
196 mtctl $acc,%cr11 ; load %sar with vshd align factor
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/bfin/
H A Dacc-rot.s6 .macro atest_setup acc:req, val_x:req, val_w:req, cc:req, shift:req
11 \acc\().W = R0;
12 \acc\().X = R1;
16 .macro atest_check acc:req, exp_x:req, exp_w:req, expcc:req
20 R2 = \acc\().W;
23 R6 = \acc\().X;
28 .macro _atest acc:req, val_x:req, val_w:req, cc:req, shift:req, exp_x:req, exp_w:req, expcc:req
29 atest_setup \acc, \val_x, \val_w, \cc, \shift
30 _DBG \acc;
31 \acc = ROT \acc BY \shift;
[all …]
/netbsd-src/lib/libc/locale/
H A D_wcstol.h57 __INT acc, cutoff; in INT_FUNCNAME() local
66 (void)&acc; (void)&cutoff; in INT_FUNCNAME()
114 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { in INT_FUNCNAME()
123 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in INT_FUNCNAME()
125 acc = __INT_MIN; in INT_FUNCNAME()
129 acc *= base; in INT_FUNCNAME()
130 acc -= i; in INT_FUNCNAME()
133 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in INT_FUNCNAME()
135 acc = __INT_MAX; in INT_FUNCNAME()
139 acc *= base; in INT_FUNCNAME()
[all …]
/netbsd-src/external/bsd/nvi/dist/clib/
H A Dstrtoul.c62 register unsigned long acc; in strtoul() local
88 for (acc = 0, any = 0;; c = *s++) { in strtoul()
97 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) in strtoul()
101 acc *= base; in strtoul()
102 acc += c; in strtoul()
106 acc = ULONG_MAX; in strtoul()
109 acc = -acc; in strtoul()
112 return (acc); in strtoul()
/netbsd-src/external/gpl3/gdb.old/dist/libiberty/
H A Dstrtoul.c64 register unsigned long acc; in strtoul() local
90 for (acc = 0, any = 0;; c = *s++) { in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
103 acc *= base; in strtoul()
104 acc += c; in strtoul()
108 acc = ULONG_MAX; in strtoul()
111 acc = -acc; in strtoul()
114 return (acc); in strtoul()
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dstrtoul.c64 register unsigned long acc; in strtoul() local
90 for (acc = 0, any = 0;; c = *s++) { in strtoul()
99 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in strtoul()
103 acc *= base; in strtoul()
104 acc += c; in strtoul()
108 acc = ULONG_MAX; in strtoul()
111 acc = -acc; in strtoul()
114 return (acc); in strtoul()

12345678910>>...18