| /xsrc/external/mit/pixman/dist/test/ |
| filter-reduction-test.c | 21 test_scale (const pixman_transform_t *xform, uint32_t crc) 48 crc = compute_crc32_for_image (crc, dest); 56 return crc; 72 uint32_t crc = 0; local 94 crc = test_scale (&xform, crc); 102 if (crc != CHECKSUM) 104 printf ("filter-reduction-test failed! (checksum=0x%08X, expected 0x%08X)\n", crc, CHECKSUM); 109 printf ("filter-reduction-test passed (checksum=0x%08X)\n", crc); [all...] |
| rotate-test.c | 94 uint32_t crc; local 106 crc = compute_crc32_for_image (0, dest); 111 return crc;
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| crc32.c | 118 uint32_t crc = 0xffffffff; local 131 crc = util_crc32_table[(crc ^ *p++) & 0xff] ^ (crc >> 8); 133 return crc;
|
| fossilize_db.h | 64 uint32_t crc; member in struct:foz_payload_header
|
| fossilize_db.c | 411 if (entry->header.crc != 0) { 412 if (util_hash_crc32(data, data_sz) != entry->header.crc) 472 header.crc = util_hash_crc32(blob, blob_size); 504 header.crc = 0;
|
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| crc32.c | 118 uint32_t crc = 0xffffffff; local 131 crc = util_crc32_table[(crc ^ *p++) & 0xff] ^ (crc >> 8); 133 return crc;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/jitter/ |
| jit_api.h | 59 uint32_t crc; member in struct:JIT_COMPILE_INPUT
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/jitter/ |
| jit_api.h | 59 uint32_t crc; member in struct:JIT_COMPILE_INPUT
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/ |
| pan_texture.h | 77 } crc; member in struct:pan_image_slice_layout 101 /* crc_size != 0 only if crc_mode == OOB otherwise CRC words are 113 struct pan_image_mem crc; member in struct:pan_image
|
| pan_texture.c | 92 * Checksumming is believed to be a CRC variant (CRC64 based on the size?). 108 slice->crc.stride = tile_count_x * CHECKSUM_BYTES_PER_TILE; 110 return slice->crc.stride * tile_count_y; 150 * 2D image, and in-band CRC can't be used. 278 slice->crc.size = 282 slice->crc.offset = offset; 283 offset += slice->crc.size; 284 slice->size += slice->crc.size; 286 slice->crc.offset = oob_crc_offset; 287 oob_crc_offset += slice->crc.size [all...] |
| pan_cs.c | 247 (rt->image->crc.bo->ptr.gpu + rt->image->crc.offset)) + 248 slice->crc.offset; 249 ext->crc_row_stride = slice->crc.stride; 681 /* If the data is currently invalid, still write CRC 806 cfg.crc_buffer.row_stride = slice->crc.stride; 810 slice->crc.offset; 812 cfg.crc_buffer.base = rt->image->crc.bo->ptr.gpu + 813 rt->image->crc.offset + 814 slice->crc.offset [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/core/core/ |
| utils.h | 109 // general CRC compute 111 uint32_t ComputeCRC(uint32_t crc, const void* pData, uint32_t size) 119 crc = (uint32_t)_mm_crc32_u64(crc, *pDataWords++); 127 crc = _mm_crc32_u32(crc, *pDataWords++); 134 crc = _mm_crc32_u8(crc, *pRemainderBytes++); 137 return crc;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/ |
| pan_resource.h | 73 bool crc; member in struct:panfrost_resource::__anon1445
|
| pan_job.c | 328 if (rsrc->image.crc.bo) 329 panfrost_batch_add_bo_old(batch, rsrc->image.crc.bo, access); 347 if (rsrc->image.crc.bo) 348 panfrost_batch_add_bo_old(batch, rsrc->image.crc.bo, access); 469 fb->rts[i].crc_valid = &prsrc->valid.crc;
|
| pan_resource.c | 114 rsc->image.crc.bo = panfrost_bo_create(dev, rsc->image.layout.crc_size, 0, "CRC data"); 730 if (rsrc->image.crc.bo) 731 panfrost_bo_unreference(rsrc->image.crc.bo); 1071 if (rsrc->image.crc.bo) 1072 panfrost_bo_unreference(rsrc->image.crc.bo); 1154 prsrc->valid.crc = false; 1166 if (prsrc->image.crc.bo) 1167 panfrost_bo_unreference(prsrc->image.crc.bo);
|
| /xsrc/external/mit/xf86-video-geode/dist/src/cim/ |
| cim_vop.c | 532 * This routine returns a CRC of the current VOP data 538 unsigned long crc; local 545 /* RESET CRC */ 560 crc = READ_VOP32(VOP_SIGNATURE); 562 return crc; 568 * This routine returns a CRC of the current VBI data 575 unsigned long crc; local 595 /* WAIT FOR THE CRC TO BE COMPLETED */ 599 /* READ THE COMPLETED CRC */ 601 crc = READ_REG32(DC3_PAL_DATA) [all...] |
| cim_df.c | 1619 * This routine reads the CRC of the combination of graphics/video data. This 1620 * CRC checks data immediately before the CRT DACs. 1627 unsigned long crc; local 1641 /* RESET THE CRC */ 1652 /* to kick off a CRC. */ 1662 /* field and vice versa. This is because the CRC will not begin */ 1678 /* ENABLE THE CRC */ 1682 /* WAIT FOR THE CRC TO BE COMPLETED */ 1686 crc = READ_VID32(DF_VID_CRC32); 1688 return crc; 1706 unsigned long crc = 0; local [all...] |
| cim_vg.c | 2875 * This routine reads the Cyclic Redundancy Check (CRC) value for the graphics 2883 unsigned long crc, vbi_even; local 2924 /* field and vice versa. This is because the CRC will not begin */ 2945 /* WAIT FOR THE CRC TO BE COMPLETED */ 2949 /* READ THE COMPLETED CRC */ 2951 crc = READ_REG32(DC3_PAL_DATA); 2959 return crc; 2965 * This routine reads the Cyclic Redundancy Check (CRC) value for a sub- 2974 unsigned long crc = 0; local 3000 /* we will insert a special state machine to CRC just the first * [all...] |
| /xsrc/external/mit/xf86-video-geode/dist/src/gfx/ |
| gfx_vid.c | 1943 unsigned long crc = 0; local 1947 crc = cs5530_read_crc(); 1951 crc = sc1200_read_crc(); 1955 crc = redcloud_read_crc(); 1957 return (crc); 1967 unsigned long crc = 0; local 1971 crc = redcloud_read_crc32(); 1973 return (crc); 1984 unsigned long crc = 0; local 1988 crc = redcloud_read_window_crc(source, x, y, width, height, crc32) [all...] |
| vid_rdcl.c | 2306 * This routine returns the hardware CRC value, which is used for automated 2320 unsigned long crc = 0xFFFFFFFF; local 2335 /* RESET CRC DURING ACTIVE DISPLAY */ 2347 crc = READ_VID32(RCDF_VID_CRC) >> 8; 2349 return (crc); 2355 * This routine returns the 32-bit hardware CRC value, which is used for 2369 unsigned long crc = 0xFFFFFFFF; local 2384 /* RESET CRC DURING ACTIVE DISPLAY */ 2396 crc = READ_VID32(RCDF_VID_CRC32); 2398 return (crc); 2419 unsigned long xpos, ypos, crc = 0; local [all...] |
| vid_5530.c | 1317 * This routine returns the hardware CRC value, which is used for automated 1330 unsigned long crc = 0xFFFFFFFF; local 1337 /* RESET CRC DURING ACTIVE DISPLAY */ 1348 crc = READ_VID32(CS5530_CRCSIG_TFT_TV) >> 8; 1350 return (crc);
|
| /xsrc/external/mit/xf86-video-nsc/dist/src/gfx/ |
| gfx_vid.c | 1966 unsigned long crc = 0; local 1970 crc = cs5530_read_crc(); 1974 crc = sc1200_read_crc(); 1978 crc = redcloud_read_crc(); 1980 return (crc); 1990 unsigned long crc = 0; local 1994 crc = redcloud_read_crc32(); 1996 return (crc); 2007 unsigned long crc = 0; local 2011 crc = redcloud_read_window_crc(source, x, y, width, height, crc32) [all...] |
| vid_1400.c | 886 * This routine returns the hardware CRC value, which is used for automated 899 unsigned long crc = 0xFFFFFFFF; local 906 // RESET CRC DURING ACTIVE DISPLAY 917 crc = READ_VID32(SC1400_VID_CRC) >> 8; 919 return (crc);
|
| vid_rdcl.c | 2322 * This routine returns the hardware CRC value, which is used for automated 2336 unsigned long crc = 0xFFFFFFFF; local 2350 /* RESET CRC DURING ACTIVE DISPLAY */ 2362 crc = READ_VID32(RCDF_VID_CRC) >> 8; 2364 return (crc); 2370 * This routine returns the 32-bit hardware CRC value, which is used for automated 2384 unsigned long crc = 0xFFFFFFFF; local 2398 /* RESET CRC DURING ACTIVE DISPLAY */ 2410 crc = READ_VID32(RCDF_VID_CRC32); 2412 return (crc); 2434 unsigned long xpos, ypos, crc = 0; local [all...] |
| vid_5530.c | 1408 * This routine returns the hardware CRC value, which is used for automated 1421 unsigned long crc = 0xFFFFFFFF; local 1428 /* RESET CRC DURING ACTIVE DISPLAY */ 1439 crc = READ_VID32(CS5530_CRCSIG_TFT_TV) >> 8; 1441 return (crc);
|