Searched refs:dstMap (Results 1 – 6 of 6) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | texstore.c | 1063 GLubyte *dstMap; in store_texsubimage() local 1069 mapMode, &dstMap, &dstRowStride); in store_texsubimage() 1070 if (dstMap) { in store_texsubimage() 1078 &dstMap, in store_texsubimage() 1145 clear_image_to_zero(GLubyte *dstMap, GLint dstRowStride, in clear_image_to_zero() argument 1152 memset(dstMap, 0, clearValueSize * width); in clear_image_to_zero() 1153 dstMap += dstRowStride; in clear_image_to_zero() 1158 clear_image_to_value(GLubyte *dstMap, GLint dstRowStride, in clear_image_to_value() argument 1167 memcpy(dstMap, clearValue, clearValueSize); in clear_image_to_value() 1168 dstMap += clearValueSize; in clear_image_to_value() [all …]
|
/external/fonttools/Tests/ufoLib/ |
D | glifLib_test.py | 73 dstMap = dst.getReverseContents() 74 self.assertEqual(dstMap, {}) 79 self.assertNotEqual(dstMap, {}) 81 self.assertEqual(dstMap, srcMap) 84 self.assertEqual(dstMap, srcMap)
|
/external/mesa3d/src/mesa/swrast/ |
D | s_blit.c | 140 GLubyte *srcMap, *dstMap; in blit_nearest() local 262 dstMap = map + dstYpos * rowStride + dstXpos * formatSize; in blit_nearest() 268 dstMap += rowStride * (readRb->Height - 1); in blit_nearest() 290 GL_MAP_WRITE_BIT, &dstMap, &dstRowStride); in blit_nearest() 291 if (!dstMap) { in blit_nearest() 300 GLubyte *dstRowStart = dstMap + dstRowStride * dstRow; in blit_nearest() 545 GLubyte *srcMap, *dstMap; in blit_linear() local 602 dstMap = srcMap; in blit_linear() 618 GL_MAP_WRITE_BIT, &dstMap, &dstRowStride); in blit_linear() 619 if (!dstMap) { in blit_linear() [all …]
|
D | s_copypix.c | 442 GLubyte *srcMap, *dstMap; in swrast_fast_copy_pixels() local 513 dstMap = map + dstY * rowStride + dstX * pixelBytes; in swrast_fast_copy_pixels() 519 dstMap += rowStride * (height - 1); in swrast_fast_copy_pixels() 540 GL_MAP_WRITE_BIT, &dstMap, &dstRowStride); in swrast_fast_copy_pixels() 541 if (!dstMap) { in swrast_fast_copy_pixels() 550 memmove(dstMap, srcMap, widthInBytes); in swrast_fast_copy_pixels() 551 dstMap += dstRowStride; in swrast_fast_copy_pixels()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_tex_image.c | 808 GLubyte *dstMap; in flush_astc_denorms() local 813 &dstMap, &dstRowStride); in flush_astc_denorms() 814 if (!dstMap) in flush_astc_denorms() 829 } *blocks = (struct astc_void_extent*) dstMap; in flush_astc_denorms() 845 dstMap += dstRowStride; in flush_astc_denorms()
|
/external/icu/icu4c/source/test/cintltst/ |
D | cbiditst.c | 1426 static const int32_t dstMap[6] = {0,1,-1,-1,4,3}; in doMisc() local 1546 if (memcmp(dstMap, map, sizeof(dstMap))) { in doMisc()
|