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

  /external/webkit/Tools/DumpRenderTree/
CyclicRedundancyCheck.cpp 36 static void makeCrcTable(unsigned crcTable[256])
46 crcTable[i] = c;
52 static unsigned crcTable[256];
55 makeCrcTable(crcTable);
61 crc = crcTable[(crc ^ buffer[i]) & 0xff] ^ ((crc >> 8) & 0x00ffffffL);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageTexture.cpp 58 static void makeCrcTable(unsigned crcTable[256])
68 crcTable[i] = c;
74 static unsigned crcTable[256];
77 makeCrcTable(crcTable);
83 crc = crcTable[(crc ^ buffer[i]) & 0xff] ^ ((crc >> 8) & 0x00ffffffL);
  /external/srec/portable/src/
pcrc.c 25 /* the CRC tables are computed by the crctable.c program which is part of this
36 static unsigned int crcTable[] =
80 static unsigned int crcTable[] =
137 remainder = crcTable[byte] ^(remainder << 8);
140 remainder = crcTable[byte] ^(remainder << 8);
142 remainder = crcTable[byte] ^(remainder << 8);

Completed in 57 milliseconds