Lines Matching defs:map
173 void* data = buffer->map();
175 ERRORF(reporter, "Could not map buffer");
253 data = buffer->map();
386 const auto* map = reinterpret_cast<const char*>(buffer->map());
387 REPORTER_ASSERT(reporter, map);
388 if (!map) {
389 ERRORF(reporter, "Failed to map transfer buffer.");
393 memcpy(transferData.get(), map, fullBufferRowBytes * kTexDims.fHeight);
432 map = reinterpret_cast<const char*>(buffer->map());
433 REPORTER_ASSERT(reporter, map);
434 if (!map) {
435 ERRORF(reporter, "Failed to map transfer buffer.");
438 const char* bufferStart = reinterpret_cast<const char*>(map) + partialReadOffset;