Lines Matching refs:value
86 void overwriteTAt(size_t offset, const T& value) {
89 *(T*)(fData + offset) = value;
92 bool writeBool(bool value) {
93 this->write32(value);
94 return value;
97 void writeInt(int32_t value) {
98 this->write32(value);
101 void write8(int32_t value) {
102 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFF;
105 void write16(int32_t value) {
106 *(int32_t*)this->reserve(sizeof(value)) = value & 0xFFFF;
109 void write32(int32_t value) {
110 *(int32_t*)this->reserve(sizeof(value)) = value;
113 void writeScalar(SkScalar value) {
114 *(SkScalar*)this->reserve(sizeof(value)) = value;