HomeSort by relevance Sort by last modified time
    Searched defs:badData (Results 1 - 2 of 2) sorted by null

  /external/skia/tests/
GifTest.cpp 158 unsigned char badData[sizeof(gGIFData)];
160 memcpy(badData, gGIFData, sizeof(gGIFData));
161 badData[6] = 0x01; // image too wide
162 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
165 memcpy(badData, gGIFData, sizeof(gGIFData));
166 badData[8] = 0x01; // image too tall
167 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
170 memcpy(badData, gGIFData, sizeof(gGIFData));
171 badData[62] = 0x01; // image shifted right
172 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 4, 3)
    [all...]
  /external/skqp/tests/
GifTest.cpp 158 unsigned char badData[sizeof(gGIFData)];
160 memcpy(badData, gGIFData, sizeof(gGIFData));
161 badData[6] = 0x01; // image too wide
162 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
165 memcpy(badData, gGIFData, sizeof(gGIFData));
166 badData[8] = 0x01; // image too tall
167 test_gif_data(reporter, static_cast<void *>(badData), sizeof(gGIFData));
170 memcpy(badData, gGIFData, sizeof(gGIFData));
171 badData[62] = 0x01; // image shifted right
172 test_gif_data_dims(reporter, static_cast<void *>(badData), sizeof(gGIFData), 4, 3)
    [all...]

Completed in 50 milliseconds