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

  /external/chromium_org/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)
    [all...]
unzip.c 191 const unsigned long* pcrc_32_tab; member in struct:__anon16431
    [all...]
zip.c 160 const unsigned long* pcrc_32_tab; member in struct:__anon16432
    [all...]
  /external/zlib/src/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 z_crc_t* pcrc_32_tab)
48 static int update_keys(unsigned long* pkeys,const z_crc_t* pcrc_32_tab,int c)
65 static void init_keys(const char* passwd,unsigned long* pkeys,const z_crc_t* 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 z_crc_t* pcrc_32_tab; member in struct:__anon30816
    [all...]
zip.c 160 const z_crc_t* pcrc_32_tab; member in struct:__anon30817
    [all...]

Completed in 65 milliseconds