Home
last modified time | relevance | path

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

1234

/minix/minix/lib/liblwip/dist/src/core/
H A Dinet_chksum.c106 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum()
108 acc = (acc >> 16) + (acc & 0x0000ffffUL); in lwip_standard_chksum()
290 acc = FOLD_U32T(acc); in inet_cksum_pseudo_base()
291 acc = FOLD_U32T(acc); in inet_cksum_pseudo_base()
323 acc = FOLD_U32T(acc); in inet_chksum_pseudo()
324 acc = FOLD_U32T(acc); in inet_chksum_pseudo()
359 acc = FOLD_U32T(acc); in ip6_chksum_pseudo()
360 acc = FOLD_U32T(acc); in ip6_chksum_pseudo()
436 acc = FOLD_U32T(acc); in inet_cksum_pseudo_partial_base()
437 acc = FOLD_U32T(acc); in inet_cksum_pseudo_partial_base()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_nist.c420 acc >>= 32; in BN_nist_mod_192()
426 acc >>= 32; in BN_nist_mod_192()
433 acc >>= 32; in BN_nist_mod_192()
440 acc >>= 32; in BN_nist_mod_192()
446 acc >>= 32; in BN_nist_mod_192()
575 acc >>= 32; in BN_nist_mod_224()
581 acc >>= 32; in BN_nist_mod_224()
587 acc >>= 32; in BN_nist_mod_224()
594 acc >>= 32; in BN_nist_mod_224()
601 acc >>= 32; in BN_nist_mod_224()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/aes/asm/
H A Daes-586.pl509 &lea ($acc,&DWP(-2,$acc,$acc));
510 &lea ($acc,&DWP(0,$key,$acc,8));
698 &lea ($acc,&DWP(-2,$acc,$acc));
699 &lea ($acc,&DWP(0,$key,$acc,8));
857 &lea ($acc,&DWP(-2,$acc,$acc));
1336 &lea ($acc,&DWP(-2,$acc,$acc));
1337 &lea ($acc,&DWP(0,$key,$acc,8));
1483 &lea ($acc,&DWP(-2,$acc,$acc));
1484 &lea ($acc,&DWP(0,$key,$acc,8));
1673 &lea ($acc,&DWP(-2,$acc,$acc));
[all …]
/minix/external/bsd/llvm/dist/clang/test/CodeGen/
H A Darm64_vshift.c251 return vrsra_n_s8(acc, in, 1); in test_vrsra_n_s8()
258 return vrsra_n_s16(acc, in, 1); in test_vrsra_n_s16()
265 return vrsra_n_s32(acc, in, 1); in test_vrsra_n_s32()
272 return vrsra_n_s64(acc, in, 1); in test_vrsra_n_s64()
279 return vrsraq_n_s8(acc, in, 1); in test_vrsraq_n_s8()
286 return vrsraq_n_s16(acc, in, 1); in test_vrsraq_n_s16()
307 return vrsra_n_u8(acc, in, 1); in test_vrsra_n_u8()
314 return vrsra_n_u16(acc, in, 1); in test_vrsra_n_u16()
321 return vrsra_n_u32(acc, in, 1); in test_vrsra_n_u32()
328 return vrsra_n_u64(acc, in, 1); in test_vrsra_n_u64()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/rc4/asm/
H A Drc4-s390x.pl48 $acc="%r0";
95 sllg $acc,$acc,8
115 sllg $acc,$acc,8
118 xgr $acc,$TX[1]
119 stg $acc,0($out)
124 lghi $acc,7
125 ngr $len,$acc
140 llgc $acc,0($inp)
144 xr $acc,$TY
145 stc $acc,0($out)
[all …]
H A Drc4-parisc.pl82 $acc="%r1";
130 xor $dat1,$acc,$acc
132 stb $acc,-1($out)
184 sh3addl $acc,%r0,$acc
185 subi 32,$acc,$acc
196 or $ix,$acc,$acc ; last piece, no need to dep
199 xor $iy,$acc,$acc
200 stw $acc,0($out)
216 or $ix,$acc,$acc ; last piece, no need to dep
217 xor $dat0,$acc,$acc
[all …]
/minix/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()
H A Dstrtol.c62 register unsigned long acc; in strtol() local
109 for (acc = 0, any = 0;; c = *s++) { in strtol()
118 if (any < 0 || acc > cutoff || acc == cutoff && c > cutlim) in strtol()
122 acc *= base; in strtol()
123 acc += c; in strtol()
127 acc = neg ? LONG_MIN : LONG_MAX; in strtol()
130 acc = -acc; in strtol()
133 return (acc); in strtol()
/minix/lib/libc/locale/
H A D_wcstol.h57 __INT acc, cutoff; in INT_FUNCNAME() local
66 (void)&acc; (void)&cutoff; 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()
140 acc += i; in INT_FUNCNAME()
[all …]
H A D_wcstoul.h56 __UINT acc, cutoff; in INT_FUNCNAME() local
100 for (acc = 0, any = 0;; wc = (wchar_t) *s++) { in INT_FUNCNAME()
108 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in INT_FUNCNAME()
110 acc = __UINT_MAX; in INT_FUNCNAME()
114 acc *= (__UINT)base; in INT_FUNCNAME()
115 acc += i; in INT_FUNCNAME()
119 acc = -acc; in INT_FUNCNAME()
122 return (acc); in INT_FUNCNAME()
/minix/external/bsd/bind/dist/lib/isc/
H A Dstrtoul.c74 unsigned long acc; in isc_strtoul() local
100 for (acc = 0, any = 0;; c = *s++) { in isc_strtoul()
111 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in isc_strtoul()
115 acc *= base; in isc_strtoul()
116 acc += c; in isc_strtoul()
120 acc = ULONG_MAX; in isc_strtoul()
123 acc = -acc; in isc_strtoul()
126 return (acc); in isc_strtoul()
H A Dsafe.c34 isc_uint8_t acc = 0; in isc_safe_memcmp() local
40 acc |= *p1++ ^ *p2++; in isc_safe_memcmp()
43 return (ISC_TF(acc == 0)); in isc_safe_memcmp()
/minix/common/lib/libc/stdlib/
H A D_strtol.h59 __INT acc, cutoff; in _FUNCNAME() local
139 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME()
153 if (acc < cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
154 acc = __INT_MIN; in _FUNCNAME()
164 acc *= base; in _FUNCNAME()
165 acc -= i; in _FUNCNAME()
168 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
169 acc = __INT_MAX; in _FUNCNAME()
179 acc *= base; in _FUNCNAME()
180 acc += i; in _FUNCNAME()
[all …]
H A D_strtoul.h59 __UINT acc, cutoff; in _FUNCNAME() local
114 for (acc = 0, any = 0;; c = *s++) { in _FUNCNAME()
127 if (acc > cutoff || (acc == cutoff && i > cutlim)) { in _FUNCNAME()
128 acc = __UINT_MAX; in _FUNCNAME()
138 acc *= (__UINT)base; in _FUNCNAME()
139 acc += i; in _FUNCNAME()
143 acc = -acc; in _FUNCNAME()
147 return(acc); in _FUNCNAME()
/minix/external/bsd/bind/dist/lib/lwres/
H A Dcompat.c79 unsigned long acc; in lwres_strtoul() local
105 for (acc = 0, any = 0;; c = *s++) { in lwres_strtoul()
116 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim)) in lwres_strtoul()
120 acc *= base; in lwres_strtoul()
121 acc += c; in lwres_strtoul()
125 acc = ULONG_MAX; in lwres_strtoul()
129 acc = -acc; in lwres_strtoul()
132 return (acc); in lwres_strtoul()
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/SystemZ/
H A Dfp-mul-06.ll5 define float @f1(float %f1, float %f2, float %acc) {
10 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
14 define float @f2(float %f1, float *%ptr, float %acc) {
20 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
24 define float @f3(float %f1, float *%base, float %acc) {
31 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
35 define float @f4(float %f1, float *%base, float %acc) {
46 %res = call float @llvm.fma.f32 (float %f1, float %f2, float %acc)
50 define float @f5(float %f1, float *%base, float %acc) {
65 define float @f6(float %f1, float *%base, i64 %index, float %acc) {
[all …]
H A Dfp-mul-07.ll5 define double @f1(double %f1, double %f2, double %acc) {
10 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
14 define double @f2(double %f1, double *%ptr, double %acc) {
20 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
24 define double @f3(double %f1, double *%base, double %acc) {
31 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
35 define double @f4(double %f1, double *%base, double %acc) {
46 %res = call double @llvm.fma.f64 (double %f1, double %f2, double %acc)
50 define double @f5(double %f1, double *%base, double %acc) {
65 define double @f6(double %f1, double *%base, i64 %index, double %acc) {
[all …]
H A Dfp-mul-08.ll5 define float @f1(float %f1, float %f2, float %acc) {
10 %negacc = fsub float -0.0, %acc
15 define float @f2(float %f1, float *%ptr, float %acc) {
21 %negacc = fsub float -0.0, %acc
26 define float @f3(float %f1, float *%base, float %acc) {
33 %negacc = fsub float -0.0, %acc
49 %negacc = fsub float -0.0, %acc
65 %negacc = fsub float -0.0, %acc
78 %negacc = fsub float -0.0, %acc
92 %negacc = fsub float -0.0, %acc
[all …]
H A Dfp-mul-09.ll5 define double @f1(double %f1, double %f2, double %acc) {
10 %negacc = fsub double -0.0, %acc
15 define double @f2(double %f1, double *%ptr, double %acc) {
21 %negacc = fsub double -0.0, %acc
26 define double @f3(double %f1, double *%base, double %acc) {
33 %negacc = fsub double -0.0, %acc
49 %negacc = fsub double -0.0, %acc
65 %negacc = fsub double -0.0, %acc
78 %negacc = fsub double -0.0, %acc
92 %negacc = fsub double -0.0, %acc
[all …]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/Hexagon/
H A Ddouble.ll5 define void @foo(double* %acc, double %num, double %num2) nounwind {
7 %acc.addr = alloca double*, align 4
10 store double* %acc, double** %acc.addr, align 4
13 %0 = load double** %acc.addr, align 4
19 %4 = load double** %acc.addr, align 4
H A Dfloat.ll5 define void @foo(float* %acc, float %num, float %num2) nounwind {
7 %acc.addr = alloca float*, align 4
10 store float* %acc, float** %acc.addr, align 4
13 %0 = load float** %acc.addr, align 4
19 %4 = load float** %acc.addr, align 4
H A Dfloatconvert-ieee-rnd-near.ll5 define void @foo(float* %acc, float %num, float %num2) nounwind {
7 %acc.addr = alloca float*, align 4
10 store float* %acc, float** %acc.addr, align 4
13 %0 = load float** %acc.addr, align 4
19 %4 = load float** %acc.addr, align 4
H A Dmpy.ll4 define void @foo(i32 %acc, i32 %num, i32 %num2) nounwind {
6 %acc.addr = alloca i32, align 4
9 store i32 %acc, i32* %acc.addr, align 4
13 %1 = load i32* %acc.addr, align 4
/minix/sys/ufs/lfs/
H A Dlfs_itimes.c57 lfs_itimes(struct inode *ip, const struct timespec *acc, in lfs_itimes() argument
71 if (acc == NULL) in lfs_itimes()
72 acc = &now; in lfs_itimes()
74 lfs_dino_setatime(fs, ip->i_din, acc->tv_sec); in lfs_itimes()
75 lfs_dino_setatimensec(fs, ip->i_din, acc->tv_nsec); in lfs_itimes()
81 lfs_if_setatime_sec(fs, ifp, acc->tv_sec); in lfs_itimes()
82 lfs_if_setatime_nsec(fs, ifp, acc->tv_nsec); in lfs_itimes()
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/ARM/
H A Dfnmscs.ll19 define float @t1(float %acc, float %a, float %b) nounwind {
36 %2 = fsub float %1, %acc
40 define float @t2(float %acc, float %a, float %b) nounwind {
57 %2 = fsub float %1, %acc
61 define double @t3(double %acc, double %a, double %b) nounwind {
78 %2 = fsub double %1, %acc
82 define double @t4(double %acc, double %a, double %b) nounwind {
99 %2 = fsub double %1, %acc

1234