Searched refs:s0 (Results 1 - 25 of 132) sorted by relevance

123456

/freebsd-11.0-release/lib/libc/arm/aeabi/
H A Daeabi_vfp_float.S38 LOAD_SREGS(s0, s1, r0, r1)
39 vcmp.f32 s0, s1
46 LOAD_SREGS(s0, s1, r0, r1)
47 vcmpe.f32 s0, s1
54 LOAD_SREGS(s0, s1, r0, r1)
55 vcmpe.f32 s1, s0
62 LOAD_SREGS(s0, s1, r0, r1)
63 vcmp.f32 s0, s1
73 LOAD_SREGS(s0, s1, r0, r1)
74 vcmp.f32 s0, s
[all...]
/freebsd-11.0-release/contrib/gdtoa/
H A Dg__fmt.c46 char *be, *s0; local
56 if (!(s0 = decimalpoint_cache)) {
57 s0 = localeconv()->decimal_point;
58 dlen = strlen(s0);
59 if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
60 strcpy(decimalpoint_cache, s0);
61 s0 = decimalpoint_cache;
64 decimalpoint = s0;
69 s0 = s;
145 freedtoa(s0);
[all...]
H A Dgethex.c47 CONST unsigned char *decpt, *s0, *s, *s1; local
58 if (!(s0 = decimalpoint_cache)) {
59 s0 = (unsigned char*)localeconv()->decimal_point;
60 if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) {
61 strcpy(decimalpoint_cache, s0);
62 s0 = decimalpoint_cache;
65 decimalpoint = s0;
73 s0 = *(CONST unsigned char **)sp + 2;
74 while(s0[havedig] == '0')
76 s0
[all...]
/freebsd-11.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-log-arc.S84 sd s0, 0(sp) // Save register
85 LA s0, cvmx_log_buffer_end_ptr // Load the address of the end of the log buffer
89 ld s0, 0(s0) // Get value of the current log buffer end location
91 dsubu s0, s0, s2 // Subtract the end pointer and the write pointer
92 sltiu s0, s0, 16 // Check if there are at least 16 bytes
93 bne s0, $0, call_c_pc // Call the slow C function if we don't have room in the log
94 li s0,
[all...]
/freebsd-11.0-release/lib/libc/gdtoa/
H A D_hdtoa.c76 char *s, *s0; local
112 s0 = rv_alloc(bufsize);
126 *s0 = '1';
127 for (s = s0 + 1; s < s0 + bufsize; s++) {
135 for (ndigits = SIGFIGS; s0[ndigits - 1] == '0'; ndigits--)
139 s = s0 + ndigits;
143 return (s0);
H A D_hldtoa.c80 char *s, *s0; local
126 s0 = rv_alloc(bufsize);
147 *s0 = '1';
148 for (s = s0 + 1; s < s0 + bufsize; s++) {
156 for (ndigits = SIGFIGS; s0[ndigits - 1] == '0'; ndigits--)
160 s = s0 + ndigits;
164 return (s0);
/freebsd-11.0-release/lib/libc/mips/gen/
H A D_ctx_start.S36 move a0, s0
/freebsd-11.0-release/lib/libc/riscv/gen/
H A D_ctx_start.S39 jalr s0 /* Call func from makecontext */
/freebsd-11.0-release/crypto/openssl/crypto/camellia/
H A Dcamellia.c353 * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32).
365 register u32 s0, s1, s2, s3; local
367 k[0] = s0 = GETU32(rawKey);
373 k[8] = s0 = GETU32(rawKey + 16);
376 k[10] = s2 = ~s0;
382 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3];
386 Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0);
387 Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2);
389 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3];
390 Camellia_Feistel(s0, s
484 register u32 s0, s1, s2, s3; local
537 u32 s0, s1, s2, s3; local
[all...]
/freebsd-11.0-release/sys/mips/mips/
H A Dmpboot.S68 move s0, v0
75 sll t0, s0, PAGE_SHIFT + 1
85 move a0, s0
87 move a0, s0
/freebsd-11.0-release/lib/msun/src/
H A De_sqrt.c99 int32_t ix0,s0,q,m,t,i; local
138 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
142 t = s0+r;
144 s0 = t+r;
156 t = s0;
159 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
/freebsd-11.0-release/crypto/openssl/crypto/aes/asm/
H A Daes-armv4.pl38 $s0="r0";
194 ldrb $s0,[$rounds,#3] @ load input data in endian-neutral
198 orr $s0,$s0,$t1,lsl#8
200 orr $s0,$s0,$t2,lsl#16
202 orr $s0,$s0,$t3,lsl#24
223 ldr $s0,[$rounds,#0]
228 rev $s0,
[all...]
H A Daes-ppc.pl75 $s0="r8";
368 lwz $s0,0($inp)
378 rotlwi $s0,$t0,8
382 rlwimi $s0,$t0,24,0,7
386 rlwimi $s0,$t0,24,16,23
397 rotlwi $t0,$s0,8
401 rlwimi $t0,$s0,24,0,7
405 rlwimi $t0,$s0,24,16,23
415 stw $s0,0($out)
435 lbz $s0,
[all...]
H A Daes-s390x.pl108 $s0="%r8";
262 llgf $s0,0($inp)
271 st $s0,0($out)
284 x $s0,0($key)
294 sllg $t1,$s0,`0+3`
295 srlg $t2,$s0,`8-3`
296 srlg $t3,$s0,`16-3`
297 srl $s0,`24-3`
298 nr $s0,$mask
312 l $s0,
[all...]
H A Daes-586.pl198 $s0="eax";
209 $__s0=&DWP(4,"esp"); # s0 backing store
250 &mov ($v1,$s[0]); # copy s0
255 &mov ($s[0],&DWP(0,$te,$s[0],8)); # s0>>0
257 &mov ($s[3],&DWP(3,$te,$s[2],8)); # s0>>8
260 &mov ($s[2],&DWP(2,$te,$v1,8)); # s0>>16
262 &mov ($s[1],&DWP(1,$te,$s[1],8)); # s0>>24
305 &movz ($v0,&LB($s0)); # 3, 2, 1, 0*
312 &rotr ($s0,16); # 1, 0, 3, 2
323 &movz ($v0,&HB($s0)); #
[all...]
/freebsd-11.0-release/contrib/elftoolchain/elfcopy/
H A Dsegments.c103 struct section *s, *s0; local
234 s0 = s->seg->v_sec[i];
235 s0->vma -= dl;
238 s0->name, (uintmax_t) s0->vma);
240 if (s0 == s)
244 s0 = s->seg->v_sec[i];
245 s0->off += dl;
248 s0->name, (uintmax_t) s0
[all...]
/freebsd-11.0-release/libexec/rtld-elf/mips/
H A Drtld_start.S56 move s0, a0 /* save stack pointer from a0 */
68 move a0, s0 /* sp */
80 move a0, s0 /* stack pointer */
126 REG_S s0, XCALLFRAME_S0(sp)
127 move s0, sp
148 move sp, s0
150 REG_L s0, XCALLFRAME_S0(sp)
/freebsd-11.0-release/contrib/gcclibs/libgomp/
H A Diter.c66 unsigned long s0, e0; local
81 s0 = q * i;
82 e0 = s0 + q;
87 if (s0 >= e0)
94 s = (long)s0 * ws->incr + ws->next;
104 unsigned long n, s0, e0, i, c; local
117 s0 = (thr->ts.static_trip * nthreads + i) * c;
118 e0 = s0 + c;
121 if (s0 >= n)
127 s = (long)s0 * w
[all...]
/freebsd-11.0-release/sys/mips/include/
H A Dpcb.h79 li s0, TDF_ASTPENDING | TDF_NEEDRESCHED;\
80 and s2, s0 ;\
87 PTR_LA s0, _C_LABEL(ast) ;\
88 jalr s0 ;\
/freebsd-11.0-release/lib/libiconv_modules/DECHanyu/
H A Dcitrus_dechanyu.c171 char *s0; local
180 s0 = *s;
187 ch = *s0++ & 0xFF;
192 *s = s0;
223 ch = *s0++ & 0xFF;
230 ch = *s0++ & 0xFF;
239 ch = *s0++ & 0xFF;
252 ch = *s0++ & 0xFF;
258 *nresult = (size_t)(s0 - *s);
259 *s = s0;
[all...]
/freebsd-11.0-release/sys/riscv/riscv/
H A Dlocore.S67 li s0, (HTIF_RING_SIZE + 16)
68 mulw s0, a0, s0
69 add t0, t0, s0
91 add s0, t0, t2
92 sd t0, 0(s0) /* cursor */
93 sd t0, 8(s0) /* last */
202 li s0, ((MSTATUS_VM_SV39 << MSTATUS_VM_SHIFT) | \
206 csrw mstatus, s0
336 li s0, ((MSTATUS_VM_SV3
[all...]
/freebsd-11.0-release/crypto/openssh/
H A Drijndael.c765 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
774 s0 = GETU32(pt ) ^ rk[0];
780 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
781 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
782 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
783 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
785 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
790 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
791 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
792 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >>
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/aes/
H A Daes_core.c787 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
799 s0 = GETU32(in ) ^ rk[0];
805 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
806 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
807 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
808 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
810 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
815 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
816 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
817 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >>
979 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/freebsd-11.0-release/sys/crypto/rijndael/
H A Drijndael-alg-fst.c864 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
873 s0 = GETU32(pt ) ^ rk[0];
879 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
880 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
881 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
882 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
884 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
889 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
890 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
891 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >>
1045 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]
/freebsd-11.0-release/lib/libiconv_modules/JOHAB/
H A Dcitrus_johab.c151 char *s0; local
159 s0 = *s;
165 l = *s0++ & 0xFF;
170 *s = s0;
184 *s = s0;
187 t = *s0++ & 0xFF;
194 *nresult = s0 - *s;
195 *s = s0;

Completed in 612 milliseconds

123456