Lines Matching refs:buff

117     sal_uInt8* buff = buffer;  in writeString()  local
121 buff += writeUINT16(buff, (sal_uInt16) v[i]); in writeString()
124 return (buff - buffer); in writeString()
131 sal_uInt8* buff = (sal_uInt8*)buffer; in readString() local
137 buff += readUINT16(buff, aChar); in readString()
144 return (buff - ((sal_uInt8*)buffer)); in readString()
295 sal_uInt8* buff = buffer; in toBlop() local
297 buff += writeUINT32(buff, getBlopSize()); in toBlop()
298 buff += writeUINT16(buff, (sal_uInt16) m_tag); in toBlop()
303 buff += writeBYTE(buff, (sal_uInt8) m_value.aConst.aBool); in toBlop()
306 buff += writeBYTE(buff, m_value.aConst.aByte); in toBlop()
309 buff += writeINT16(buff, m_value.aConst.aShort); in toBlop()
312 buff += writeINT16(buff, m_value.aConst.aUShort); in toBlop()
315 buff += writeINT32(buff, m_value.aConst.aLong); in toBlop()
318 buff += writeUINT32(buff, m_value.aConst.aULong); in toBlop()
321 buff += writeUINT64(buff, m_value.aConst.aHyper); in toBlop()
324 buff += writeUINT64(buff, m_value.aConst.aUHyper); in toBlop()
327 buff += writeFloat(buff, m_value.aConst.aFloat); in toBlop()
330 buff += writeDouble(buff, m_value.aConst.aDouble); in toBlop()
333 buff += writeString(buff, m_value.aConst.aString); in toBlop()
336 buff += writeUtf8(buff, m_value.aUtf8); in toBlop()
339 buff += writeUINT32(buff, m_value.aUik->m_Data1); in toBlop()
340 buff += writeUINT16(buff, m_value.aUik->m_Data2); in toBlop()
341 buff += writeUINT16(buff, m_value.aUik->m_Data3); in toBlop()
342 buff += writeUINT32(buff, m_value.aUik->m_Data4); in toBlop()
343 buff += writeUINT32(buff, m_value.aUik->m_Data5); in toBlop()
349 return (buff - buffer); in toBlop()