Lines Matching refs:buf

701     sal_Char    buf[256+1];  in ReadLine()  local
711 sal_uInt16 nLen = (sal_uInt16)Read( buf, sizeof(buf)-1 ); in ReadLine()
727 c = buf[j]; in ReadLine()
740 buf[n] = c; in ReadLine()
745 rStr.append( buf, n ); in ReadLine()
774 sal_Char buf[256+1]; in ReadLine() local
785 sal_uInt16 nLen = (sal_uInt16)Read( buf, sizeof(buf)-1 ); in ReadLine()
801 c = buf[j]; in ReadLine()
814 buf[n] = c; in ReadLine()
819 rStr.Append( buf, n ); in ReadLine()
848 sal_Unicode buf[256+1]; in ReadUniStringLine() local
861 sal_uInt16 nLen = (sal_uInt16)Read( (char*)buf, sizeof(buf)-sizeof(sal_Unicode) ); in ReadUniStringLine()
879 SwapUShort( buf[n] ); in ReadUniStringLine()
880 c = buf[j]; in ReadUniStringLine()
893 buf[n] = c; in ReadUniStringLine()
898 rStr.Append( buf, n ); in ReadUniStringLine()
944 sal_Char buf[ 256 + 1 ]; in ReadCString() local
950 sal_uInt16 nLen = (sal_uInt16)Read( buf, sizeof(buf)-1 ); in ReadCString()
955 const sal_Char* pPtr = buf; in ReadCString()
959 bEnd = ( nReallyRead < sizeof(buf)-1 ) // read less than attempted to read in ReadCString()
964 rStr.Append( buf, ::sal::static_int_cast< xub_StrLen >( pPtr - buf ) ); in ReadCString()
2184 char buf[ BUFSIZE_LONG ]; in ReadNumber() local
2185 memset( buf, 0, BUFSIZE_LONG ); in ReadNumber()
2186 sal_Size nTemp = Read( buf, BUFSIZE_LONG-1 ); in ReadNumber()
2193 rLong = strtol( buf, &pEndPtr, (int)nRadix ); in ReadNumber()
2194 nFPtr += ( (sal_Size)pEndPtr - (sal_Size)(&(buf[0])) ); in ReadNumber()
2209 char buf[ BUFSIZE_LONG ]; in ReadNumber() local
2210 memset( buf, 0, BUFSIZE_LONG ); in ReadNumber()
2211 sal_Size nTemp = Read( buf, BUFSIZE_LONG-1 ); in ReadNumber()
2218 rUInt32 = strtoul( buf, &pEndPtr, (int)nRadix ); in ReadNumber()
2219 nFPtr += ( (sal_uIntPtr)pEndPtr - (sal_uIntPtr)buf ); in ReadNumber()
2234 char buf[ BUFSIZE_LONG ]; in ReadNumber() local
2235 memset( buf, 0, BUFSIZE_LONG ); in ReadNumber()
2236 sal_Size nTemp = Read( buf, BUFSIZE_LONG-1 ); in ReadNumber()
2243 rDouble = strtod( buf, &pEndPtr ); in ReadNumber()
2244 nFPtr += ( (sal_Size)pEndPtr - (sal_Size)buf ); in ReadNumber()