Home
last modified time | relevance | path

Searched refs:crc32_le (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/common/
Dandroid_ab.c21 return crc32(0, (void *)abc, offsetof(typeof(*abc), crc32_le)); in android_boot_control_compute_crc()
48 abc->crc32_le = android_boot_control_compute_crc(abc); in android_boot_control_default()
154 u32 crc32_le; in android_ab_select() local
169 crc32_le = android_boot_control_compute_crc(abc); in android_ab_select()
170 if (abc->crc32_le != crc32_le) { in android_ab_select()
173 crc32_le, abc->crc32_le); in android_ab_select()
258 abc->crc32_le = android_boot_control_compute_crc(abc); in android_ab_select()
/external/u-boot/drivers/mtd/ubi/
Dcrc32.c61 u32 crc32_le(u32 crc, unsigned char const *p, size_t len);
69 u32 crc32_le(u32 crc, unsigned char const *p, size_t len) in crc32_le() function
81 u32 crc32_le(u32 crc, unsigned char const *p, size_t len) in crc32_le() function
247 EXPORT_SYMBOL(crc32_le);
459 crc1 = crc32_le(init, buf, len); in test_step()
463 crc2 = crc32_le(init, buf, len + 4); in test_step()
469 crc2 = crc32_le(init, buf, i); in test_step()
470 crc2 = crc32_le(crc2, buf + i, len + 4 - i); in test_step()
/external/u-boot/include/linux/
Dcrc32.h11 extern u32 crc32_le(u32 crc, unsigned char const *p, size_t len);
14 #define crc32(seed, data, length) crc32_le(seed, (unsigned char const *)data, length)
/external/xz-embedded/linux/lib/xz/
Dxz_stream.h17 (~crc32_le(~(uint32_t)(crc), buf, size))
/external/u-boot/include/
Dandroid_bootloader_message.h147 uint32_t crc32_le; member