Lines Matching refs:get
205 // We already read the first four bytes of the info header to get the size
210 if (stream->read(iBuffer.get(), infoBytesRemaining) != infoBytesRemaining) {
241 width = get_int(iBuffer.get(), 0);
242 height = get_int(iBuffer.get(), 4);
243 bitsPerPixel = get_short(iBuffer.get(), 10);
248 compression = get_int(iBuffer.get(), 12);
250 numColors = get_int(iBuffer.get(), 28);
260 width = (int) get_short(iBuffer.get(), 0);
261 height = (int) get_short(iBuffer.get(), 2);
262 bitsPerPixel = get_short(iBuffer.get(), 6);
358 inputMasks.red = get_int(iBuffer.get(), 36);
359 inputMasks.green = get_int(iBuffer.get(), 40);
360 inputMasks.blue = get_int(iBuffer.get(), 44);
381 inputMasks.alpha = get_int(iBuffer.get(), 48);
493 return static_cast<SkBmpStandardCodec*>(codecOut->get())->didCreateSrcBuffer()
550 return static_cast<SkBmpMaskCodec*>(codecOut->get())->didCreateSrcBuffer()
599 *result = ReadHeader(stream.get(), inIco, &codec);