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

  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_test_crc32.h 67 CrcUint32 crc32_table[256]; /* CRC table */ member in struct:__anon60955
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_test_crc32.h 67 CrcUint32 crc32_table[256]; /* CRC table */ member in struct:__anon61064
  /prebuilts/misc/windows/sdl2/include/
SDL_test_crc32.h 67 CrcUint32 crc32_table[256]; /* CRC table */ member in struct:__anon61141
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_test_crc32.h 67 CrcUint32 crc32_table[256]; /* CRC table */ member in struct:__anon61237
  /external/elfutils/lib/
crc32.c 33 static const uint32_t crc32_table[256] = variable
96 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
  /toolchain/binutils/binutils-2.25/libiberty/
crc32.c 55 printf ("static const unsigned int crc32_table[] =\n{\n");
71 static const unsigned int crc32_table[] = variable
177 crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ *buf) & 255];
  /toolchain/binutils/binutils-2.25/gas/config/
obj-evax.c 362 static unsigned int crc32_table[256] = {0, 0}; variable
373 if (! crc32_table[1])
383 crc32_table[i] = c;
392 crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *buf];
  /external/valgrind/auxprogs/
valgrind-di-server.c 594 static const UInt crc32_table[256] = local
671 crc = crc32_table[(crc ^ buf[i]) & 0xff] ^ (crc >> 8);
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
opncls.c 1089 static const unsigned long crc32_table[256] =
1148 crc = crc32_table[(crc ^ *buf) & 0xff] ^ (crc >> 8);
1088 static const unsigned long crc32_table[256] = local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
image.c 1199 static const UInt crc32_table[256] = local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1426 static const uint32 crc32_table[256] = variable
    [all...]

Completed in 858 milliseconds