Lines Matching refs:crc32
82 compute_crc32_u32 (uint32_t crc32, uint32_t v) in compute_crc32_u32() argument
92 return compute_crc32 (crc32, &v, sizeof (int32_t)); in compute_crc32_u32()
96 crc32_box32 (uint32_t crc32, pixman_box32_t *box) in crc32_box32() argument
98 crc32 = compute_crc32_u32 (crc32, box->x1); in crc32_box32()
99 crc32 = compute_crc32_u32 (crc32, box->y1); in crc32_box32()
100 crc32 = compute_crc32_u32 (crc32, box->x2); in crc32_box32()
101 crc32 = compute_crc32_u32 (crc32, box->y2); in crc32_box32()
103 return crc32; in crc32_box32()
112 uint32_t r, r1, r2, r3, r4, crc32; in test_region_contains_rectangle() local
137 crc32 = 0; in test_region_contains_rectangle()
140 crc32 = crc32_box32 (crc32, &rbox); in test_region_contains_rectangle()
142 crc32 = crc32_box32 (crc32, &rbox); in test_region_contains_rectangle()
144 crc32 = crc32_box32 (crc32, &rbox); in test_region_contains_rectangle()
146 crc32 = crc32_box32 (crc32, &rbox); in test_region_contains_rectangle()
151 crc32 = compute_crc32_u32 (crc32, r); in test_region_contains_rectangle()
158 return crc32; in test_region_contains_rectangle()