Lines Matching refs:pCapacity
220 sal_Int32 * pCapacity) in createBuffer()
222 rtl_string_new_WithLength(pBuffer, *pCapacity); in createBuffer()
225 static inline void appendChar(rtl_String ** pBuffer, sal_Int32 * pCapacity, in appendChar()
228 rtl_stringbuffer_insert(pBuffer, pCapacity, *pOffset, &cChar, 1); in appendChar()
232 static inline void appendChars(rtl_String ** pBuffer, sal_Int32 * pCapacity, in appendChars()
236 rtl_stringbuffer_insert(pBuffer, pCapacity, *pOffset, pChars, nLen); in appendChars()
240 static inline void appendAscii(rtl_String ** pBuffer, sal_Int32 * pCapacity, in appendAscii()
244 rtl_stringbuffer_insert(pBuffer, pCapacity, *pOffset, pStr, nLen); in appendAscii()
262 sal_Int32 * pCapacity) in createBuffer()
264 rtl_uString_new_WithLength(pBuffer, *pCapacity); in createBuffer()
267 static inline void appendChar(rtl_uString ** pBuffer, sal_Int32 * pCapacity, in appendChar()
270 rtl_uStringbuffer_insert(pBuffer, pCapacity, *pOffset, &cChar, 1); in appendChar()
275 sal_Int32 * pCapacity, sal_Int32 * pOffset, in appendChars()
278 rtl_uStringbuffer_insert(pBuffer, pCapacity, *pOffset, pChars, nLen); in appendChars()
283 sal_Int32 * pCapacity, sal_Int32 * pOffset, in appendAscii()
286 rtl_uStringbuffer_insert_ascii(pBuffer, pCapacity, *pOffset, pStr, in appendAscii()