Lines Matching refs:wStream
73 inline void AppendColorComponent(uint8_t value, SkWStream* wStream) { in AppendColorComponent() argument
76 wStream->write(buffer, len); in AppendColorComponent()
78 inline void AppendColorComponentF(float value, SkWStream* wStream) { in AppendColorComponentF() argument
81 wStream->write(buffer, len); in AppendColorComponentF()
91 inline void WriteUInt16BE(SkDynamicMemoryWStream* wStream, uint16_t value) { in WriteUInt16BE() argument
96 wStream->write(result, 4); in WriteUInt16BE()
99 inline void WriteUInt8(SkDynamicMemoryWStream* wStream, uint8_t value) { in WriteUInt8() argument
102 wStream->write(result, 2); in WriteUInt8()
105 inline void WriteUTF16beHex(SkDynamicMemoryWStream* wStream, SkUnichar utf32) { in WriteUTF16beHex() argument
109 SkPDFUtils::WriteUInt16BE(wStream, utf16[0]); in WriteUTF16beHex()
111 SkPDFUtils::WriteUInt16BE(wStream, utf16[1]); in WriteUTF16beHex()