Lines Matching refs:fid
51 uint32_t fid = context->fImageMap[id];
53 return SkData::MakeWithCopy(&fid, sizeof(fid));
67 uint32_t fid;
68 // If the data is an image fid, look up an already deserialized image from our map
69 if (length == sizeof(fid)) {
70 memcpy(&fid, data, sizeof(fid));
71 if (fid >= context->fImages.size()) {
72 SkDebugf("Cannot deserialize using id, We do not have the data for image %d.\n", fid);
75 return context->fImages[fid];
77 // Otherwise, the data is an image, deserialise it, store it in our map at its fid.