Searched refs:v0 (Results 1 - 25 of 89) sorted by relevance

1234

/freebsd-10.0-release/sys/mips/sibyte/
H A Dsb_asm.S46 mfc0 v0, MIPS_COP_0_PRID
47 srl v0, v0, 25
49 and v0, v0, 7
/freebsd-10.0-release/lib/libc/mips/net/
H A Dhtons.S38 move v0, a0
40 srl v0, a0, 8
41 and v0, v0, 0xff
44 or v0, v0, v1
H A Dntohs.S37 move v0, a0
39 srl v0, a0, 8
40 and v0, v0, 0xff
43 or v0, v0, v1
H A Dhtonl.S38 move v0, a0
41 sll v0, a0, 24 # v0 = 0x44000000
42 or v0, v0, v1
45 or v0, v0, v1
48 or v0, v0, v1
H A Dntohl.S38 move v0, a0
41 sll v0, a0, 24 # v0 = 0x44000000
42 or v0, v0, v1
45 or v0, v0, v1
48 or v0, v0, v1
/freebsd-10.0-release/crypto/openssl/crypto/des/
H A Dcfb64enc.c70 register DES_LONG v0,v1; local
83 c2l(iv,v0); ti[0]=v0;
87 v0=ti[0]; l2c(v0,iv);
88 v0=ti[1]; l2c(v0,iv);
103 c2l(iv,v0); ti[0]=v0;
107 v0
[all...]
H A Dofb_enc.c71 register DES_LONG d0,d1,vv0,vv1,v0,v1,n=(numbits+7)/8; local
97 c2l(iv,v0);
99 ti[0]=v0;
103 ti[0]=v0;
116 { v0=v1; v1=vv0; }
118 { v0=vv0; v1=vv1; }
121 v0=((v1>>(num-32))|(vv0<<(64-num)))&0xffffffffL;
126 v0=((v0>>num)|(v1<<(32-num)))&0xffffffffL;
131 l2c(v0,i
[all...]
H A Dofb64ede.c71 register DES_LONG v0,v1; local
81 c2l(iv,v0);
83 ti[0]=v0;
86 l2c(v0,dp);
92 /* ti[0]=v0; */
95 v0=ti[0];
99 l2c(v0,dp);
108 /* v0=ti[0];
111 l2c(v0,iv);
114 v0
[all...]
H A Dcfb_enc.c75 register DES_LONG d0,d1,v0,v1; local
94 c2l(iv,v0);
101 ti[0]=v0;
113 { v0=v1; v1=d0; }
115 { v0=d0; v1=d1; }
120 l2c(v0,iv);
125 sh[0]=v0, sh[1]=v1, sh[2]=d0, sh[3]=d1;
134 v0=sh[0], v1=sh[1];
137 c2l(iv,v0);
148 ti[0]=v0;
[all...]
H A Dofb64enc.c69 register DES_LONG v0,v1,t; local
79 c2l(iv,v0);
81 ti[0]=v0;
84 l2c(v0,dp);
101 v0=ti[0];
104 l2c(v0,iv);
107 t=v0=v1=ti[0]=ti[1]=0;
H A Dcfb64ede.c72 register DES_LONG v0,v1; local
85 c2l(iv,v0);
88 ti[0]=v0;
91 v0=ti[0];
95 l2c(v0,iv);
111 c2l(iv,v0);
114 ti[0]=v0;
117 v0=ti[0];
121 l2c(v0,iv);
132 v0
154 register DES_LONG d0,d1,v0,v1; local
[all...]
/freebsd-10.0-release/lib/libc/mips/sys/
H A Dbrk.S57 PTR_LA v0, _C_LABEL(minbrk)
58 PTR_L v0, 0(v0)
59 bgeu a0, v0, 1f
60 move a0, v0 # dont allow break < minbrk
62 li v0, SYS_break
67 move v0, zero
/freebsd-10.0-release/lib/libc/mips/string/
H A Dffs.S50 move v0, zero
54 addu v0, v0, 1
H A Dbcmp.S59 xor v0, a0, a1 # compare low two bits of addresses
60 and v0, v0, 3
62 bne v0, zero, unaligned # not possible to align addresses
67 move v0, v1 # init v0,v1 so unmodified bytes match
68 LWHI v0, 0(a0) # read 1, 2, or 3 bytes
71 bne v0, v1, nomatch
78 lw v0, 0(a0) # compare words
81 bne v0, v
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bf/
H A Dbf_ofb64.c69 register BF_LONG v0,v1,t; local
79 n2l(iv,v0);
81 ti[0]=v0;
84 l2n(v0,dp);
101 v0=ti[0];
104 l2n(v0,iv);
107 t=v0=v1=ti[0]=ti[1]=0;
H A Dbf_cfb64.c70 register BF_LONG v0,v1,t; local
83 n2l(iv,v0); ti[0]=v0;
103 n2l(iv,v0); ti[0]=v0;
118 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/freebsd-10.0-release/crypto/openssl/crypto/cast/
H A Dc_ofb64.c70 register CAST_LONG v0,v1,t; local
80 n2l(iv,v0);
82 ti[0]=v0;
85 l2n(v0,dp);
102 v0=ti[0];
105 l2n(v0,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
H A Dc_cfb64.c71 register CAST_LONG v0,v1,t; local
84 n2l(iv,v0); ti[0]=v0;
104 n2l(iv,v0); ti[0]=v0;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/freebsd-10.0-release/crypto/openssl/crypto/idea/
H A Di_ofb64.c70 register unsigned long v0,v1,t; local
80 n2l(iv,v0);
82 ti[0]=v0;
85 l2n(v0,dp);
102 v0=ti[0];
105 l2n(v0,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
H A Di_cfb64.c71 register unsigned long v0,v1,t; local
84 n2l(iv,v0); ti[0]=v0;
104 n2l(iv,v0); ti[0]=v0;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/freebsd-10.0-release/crypto/openssl/crypto/rc2/
H A Drc2ofb64.c70 register unsigned long v0,v1,t; local
80 c2l(iv,v0);
82 ti[0]=v0;
85 l2c(v0,dp);
102 v0=ti[0];
105 l2c(v0,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
H A Drc2cfb64.c71 register unsigned long v0,v1,t; local
84 c2l(iv,v0); ti[0]=v0;
104 c2l(iv,v0); ti[0]=v0;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/freebsd-10.0-release/crypto/openssl/crypto/rc5/
H A Drc5ofb64.c70 register unsigned long v0,v1,t; local
80 c2l(iv,v0);
82 ti[0]=v0;
85 l2c(v0,dp);
102 v0=ti[0];
105 l2c(v0,iv);
108 t=v0=v1=ti[0]=ti[1]=0;
H A Drc5cfb64.c71 register unsigned long v0,v1,t; local
84 c2l(iv,v0); ti[0]=v0;
104 c2l(iv,v0); ti[0]=v0;
119 v0=v1=ti[0]=ti[1]=t=c=cc=0;
/freebsd-10.0-release/sys/mips/sentry5/
H A Ds5reg.h21 int v0; \
22 __asm __volatile ("mfc0 %[v0], $22, "__XSTRING(r)" ;" \
23 : [v0] "=&r"(v0)); \
25 return (v0); \

Completed in 102 milliseconds

1234