HomeSort by relevance Sort by last modified time
    Searched refs:pcrc_32_tab (Results 1 - 6 of 6) sorted by null

  /external/chromium/third_party/zlib/contrib/minizip/
crypt.h 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
35 static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab)
48 static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c)
65 static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab)
71 update_keys(pkeys,pcrc_32_tab,(int)*passwd);
76 #define zdecode(pkeys,pcrc_32_tab,c) \
77 (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab)))
79 #define zencode(pkeys,pcrc_32_tab,c,t) \
80 (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c)
95 const unsigned long* pcrc_32_tab; variable
    [all...]
unzip.c 154 const unsigned long* pcrc_32_tab; member in struct:__anon3279
    [all...]
zip.c 137 const unsigned long* pcrc_32_tab; member in struct:__anon3280
887 zi->ci.pcrc_32_tab = get_crc_table();
888 /*init_keys(password,zi->ci.keys,zi->ci.pcrc_32_tab);*/
890 sizeHead=crypthead(password,bufHead,RAND_HEAD_LEN,zi->ci.keys,zi->ci.pcrc_32_tab,crcForCrypting);
959 zi->ci.buffered_data[i] = zencode(zi->ci.keys, zi->ci.pcrc_32_tab,
    [all...]
  /external/zlib/contrib/minizip/
crypt.h 30 #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
35 static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab)
48 static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c)
65 static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab)
71 update_keys(pkeys,pcrc_32_tab,(int)*passwd);
76 #define zdecode(pkeys,pcrc_32_tab,c) \
77 (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab)))
79 #define zencode(pkeys,pcrc_32_tab,c,t) \
80 (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c)
    [all...]
unzip.c 191 const unsigned long* pcrc_32_tab; member in struct:__anon8775
    [all...]
zip.c 160 const unsigned long* pcrc_32_tab; member in struct:__anon8776
    [all...]

Completed in 51 milliseconds