/external/chromium_org/rlz/lib/ |
crc8.h | 5 // Crc8 utility functions. 12 class Crc8 {
|
crc8_unittest.cc | 11 #include "rlz/lib/crc8.h" 41 rlz_lib::Crc8::Generate(bytes, length, &crc); 43 rlz_lib::Crc8::Verify(bytes, length, crc, &matches); 48 rlz_lib::Crc8::Verify(bytes, length, crc, &matches);
|
machine_id.cc | 9 #include "rlz/lib/crc8.h" 74 rlz_lib::Crc8::Generate(id_binary.c_str(),
|
machine_id.h | 23 // the Crc8 of that, and return a hex-encoded string of that data.
|
crc8.cc | 5 #include "rlz/lib/crc8.h" 51 bool Crc8::Generate(const unsigned char *data, int length, 72 bool Crc8::Verify(const unsigned char* data, int length,
|
/external/llvm/test/CodeGen/XCore/ |
misc-intrinsics.ll | 6 declare %0 @llvm.xcore.crc8(i32, i32, i32) 26 define %0 @crc8(i32 %crc, i32 %data, i32 %poly) { 27 ; CHECK-LABEL: crc8: 28 ; CHECK: crc8 r0, r1, r1, r2 29 %result = call %0 @llvm.xcore.crc8(i32 %crc, i32 %data, i32 %poly)
|
/external/kernel-headers/original/linux/can/ |
gw.h | 41 CGW_CS_CRC8, /* set data[] CRC8 checksum into data[index] */ 95 /* CRC8 profiles (compute CRC for additional data elements - see below) */ 138 * Set a CRC8 value into data[result-idx] using a given 256 byte CRC8 table, 142 * The CRC8 checksum is calculated like this:
|
/external/chromium_org/rlz/ |
rlz.gyp | 41 'lib/crc8.h', 42 'lib/crc8.cc',
|
/external/llvm/lib/Target/XCore/ |
XCoreISelLowering.h | 66 // Corresponds to CRC8 instruction 67 CRC8,
|
XCoreISelDAGToDAG.cpp | 168 case XCoreISD::CRC8: {
|
XCoreISelLowering.cpp | 59 case XCoreISD::CRC8 : return "XCoreISD::CRC8"; 828 DAG.getNode(XCoreISD::CRC8, DL, DAG.getVTList(VT, VT), [all...] |
XCoreInstrInfo.td | 483 "crc8 $b, $a, $c, $d", []>; [all...] |
/external/aac/libSBRdec/src/ |
sbr_crc.h | 100 crc8: x^8+x^2+x+x+1
|
/external/llvm/test/MC/Disassembler/XCore/ |
xcore.txt | 699 # CHECK: crc8 r6, r3, r4, r11
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmutils.h | 703 #define CRC8_INIT_VALUE 0xff /* Initial CRC8 checksum value */ 704 #define CRC8_GOOD_VALUE 0x9f /* Good final CRC8 checksum value */
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/ |
bcmutils.c | 1282 * crc8 1284 * Computes a crc8 over the input data using the polynomial: [all...] |
/external/flac/libFLAC/ |
stream_decoder.c | 2151 FLAC__byte crc8, raw_header[16]; \/* MAGIC NUMBER based on the maximum frame header size, including CRC *\/ local [all...] |