| /external/zlib/src/contrib/minizip/ | 
| crypt.h | 79 #define zencode(pkeys,pcrc_32_tab,c,t) \  macro 118         header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t);
 124         buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t);
 126     buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 16) & 0xff, t);
 127     buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 24) & 0xff, t);
 
 | 
| zip.c | [all...] | 
| /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/ | 
| crypt.h | 79 #define zencode(pkeys,pcrc_32_tab,c,t) \  macro 118         header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t);
 124         buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t);
 126     buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 16) & 0xff, t);
 127     buf[n++] = (unsigned char)zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 24) & 0xff, t);
 
 | 
| zip.c | [all...] | 
| /external/lzma/CPP/7zip/Archive/7z/ | 
| 7zEncode.h | 1 // 7zEncode.h 
 | 
| 7zOut.h | 7 #include "7zEncode.h" 
 | 
| 7zEncode.cpp | 1 // 7zEncode.cpp 12 #include "7zEncode.h"
 
 | 
| 7zUpdate.cpp | 18 #include "7zEncode.h" [all...]
 | 
| /external/pdfium/testing/ | 
| test_support.cpp | 161   static char const zEncode[] = "0123456789abcdef"; 166     ret[j] = zEncode[(a >> 4) & 0xf];
 167     ret[j + 1] = zEncode[a & 0xf];
 
 | 
| /external/lzma/CPP/7zip/Bundles/Format7zR/ | 
| makefile | 60   $O\7zEncode.obj \ 
 | 
| /external/libchrome/base/ | 
| md5.cc | 273   static char const zEncode[] = "0123456789abcdef"; 280     ret[j] = zEncode[(a >> 4) & 0xf];
 281     ret[j + 1] = zEncode[a & 0xf];
 
 | 
| /external/lzma/CPP/7zip/Bundles/Alone7z/ | 
| makefile | 82   $O\7zEncode.obj \ 
 | 
| Alone.dsp | 832 SOURCE=..\..\Archive\7z\7zEncode.cpp 836 SOURCE=..\..\Archive\7z\7zEncode.h
 [all...]
 |