不断认识自己的无知是人类获得智慧的表现 |
|
||
2011年6月16日
摘要:
The following tips and tricks put some of the techniques described above into practice.Initializing Data:- Set a register to zero:movd eax, 0Faster:xor eax, eaxpxor mm0, mm0pxor xmm0, xmm0- Set all bits of MM0 to 1s:C declaration: unsigned temp[4] = {0xFFFFFFFF, 0xFFFFFFFF,0xFFFFFFFF, 0xFFFFFFFF};as 阅读全文
|
Copyright © 2024 loleng
Powered by .NET 9.0 on Kubernetes |