Commit 968467e304499c4bfb932051dd359fce2752b4b8
1 parent
36bae8dd
Add "const"
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5541 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
8 additions
and
8 deletions
d3des.c
... | ... | @@ -184,7 +184,7 @@ register unsigned char *into; |
184 | 184 | return; |
185 | 185 | } |
186 | 186 | |
187 | -static unsigned long SP1[64] = { | |
187 | +static const unsigned long SP1[64] = { | |
188 | 188 | 0x01010400L, 0x00000000L, 0x00010000L, 0x01010404L, |
189 | 189 | 0x01010004L, 0x00010404L, 0x00000004L, 0x00010000L, |
190 | 190 | 0x00000400L, 0x01010400L, 0x01010404L, 0x00000400L, |
... | ... | @@ -202,7 +202,7 @@ static unsigned long SP1[64] = { |
202 | 202 | 0x00000404L, 0x01000400L, 0x01000400L, 0x00000000L, |
203 | 203 | 0x00010004L, 0x00010400L, 0x00000000L, 0x01010004L }; |
204 | 204 | |
205 | -static unsigned long SP2[64] = { | |
205 | +static const unsigned long SP2[64] = { | |
206 | 206 | 0x80108020L, 0x80008000L, 0x00008000L, 0x00108020L, |
207 | 207 | 0x00100000L, 0x00000020L, 0x80100020L, 0x80008020L, |
208 | 208 | 0x80000020L, 0x80108020L, 0x80108000L, 0x80000000L, |
... | ... | @@ -220,7 +220,7 @@ static unsigned long SP2[64] = { |
220 | 220 | 0x00108000L, 0x00000000L, 0x80008000L, 0x00008020L, |
221 | 221 | 0x80000000L, 0x80100020L, 0x80108020L, 0x00108000L }; |
222 | 222 | |
223 | -static unsigned long SP3[64] = { | |
223 | +static const unsigned long SP3[64] = { | |
224 | 224 | 0x00000208L, 0x08020200L, 0x00000000L, 0x08020008L, |
225 | 225 | 0x08000200L, 0x00000000L, 0x00020208L, 0x08000200L, |
226 | 226 | 0x00020008L, 0x08000008L, 0x08000008L, 0x00020000L, |
... | ... | @@ -238,7 +238,7 @@ static unsigned long SP3[64] = { |
238 | 238 | 0x08020000L, 0x08000208L, 0x00000208L, 0x08020000L, |
239 | 239 | 0x00020208L, 0x00000008L, 0x08020008L, 0x00020200L }; |
240 | 240 | |
241 | -static unsigned long SP4[64] = { | |
241 | +static const unsigned long SP4[64] = { | |
242 | 242 | 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L, |
243 | 243 | 0x00802080L, 0x00800081L, 0x00800001L, 0x00002001L, |
244 | 244 | 0x00000000L, 0x00802000L, 0x00802000L, 0x00802081L, |
... | ... | @@ -256,7 +256,7 @@ static unsigned long SP4[64] = { |
256 | 256 | 0x00002001L, 0x00002080L, 0x00800000L, 0x00802001L, |
257 | 257 | 0x00000080L, 0x00800000L, 0x00002000L, 0x00802080L }; |
258 | 258 | |
259 | -static unsigned long SP5[64] = { | |
259 | +static const unsigned long SP5[64] = { | |
260 | 260 | 0x00000100L, 0x02080100L, 0x02080000L, 0x42000100L, |
261 | 261 | 0x00080000L, 0x00000100L, 0x40000000L, 0x02080000L, |
262 | 262 | 0x40080100L, 0x00080000L, 0x02000100L, 0x40080100L, |
... | ... | @@ -274,7 +274,7 @@ static unsigned long SP5[64] = { |
274 | 274 | 0x00080100L, 0x02000100L, 0x40000100L, 0x00080000L, |
275 | 275 | 0x00000000L, 0x40080000L, 0x02080100L, 0x40000100L }; |
276 | 276 | |
277 | -static unsigned long SP6[64] = { | |
277 | +static const unsigned long SP6[64] = { | |
278 | 278 | 0x20000010L, 0x20400000L, 0x00004000L, 0x20404010L, |
279 | 279 | 0x20400000L, 0x00000010L, 0x20404010L, 0x00400000L, |
280 | 280 | 0x20004000L, 0x00404010L, 0x00400000L, 0x20000010L, |
... | ... | @@ -292,7 +292,7 @@ static unsigned long SP6[64] = { |
292 | 292 | 0x00004000L, 0x00400010L, 0x20004010L, 0x00000000L, |
293 | 293 | 0x20404000L, 0x20000000L, 0x00400010L, 0x20004010L }; |
294 | 294 | |
295 | -static unsigned long SP7[64] = { | |
295 | +static const unsigned long SP7[64] = { | |
296 | 296 | 0x00200000L, 0x04200002L, 0x04000802L, 0x00000000L, |
297 | 297 | 0x00000800L, 0x04000802L, 0x00200802L, 0x04200800L, |
298 | 298 | 0x04200802L, 0x00200000L, 0x00000000L, 0x04000002L, |
... | ... | @@ -310,7 +310,7 @@ static unsigned long SP7[64] = { |
310 | 310 | 0x00000000L, 0x00200802L, 0x04200000L, 0x00000800L, |
311 | 311 | 0x04000002L, 0x04000800L, 0x00000800L, 0x00200002L }; |
312 | 312 | |
313 | -static unsigned long SP8[64] = { | |
313 | +static const unsigned long SP8[64] = { | |
314 | 314 | 0x10001040L, 0x00001000L, 0x00040000L, 0x10041040L, |
315 | 315 | 0x10000000L, 0x10001040L, 0x00000040L, 0x10000000L, |
316 | 316 | 0x00040040L, 0x10040000L, 0x10041040L, 0x00041000L, | ... | ... |