Home
last modified time | relevance | path

Searched refs:nRadix (Results 1 – 13 of 13) sorted by relevance

/trunk/main/sal/rtl/source/
H A Dstrtmpl.c719 if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) in IMPL_RTL_STRNAME()
720 nRadix = 10; in IMPL_RTL_STRNAME()
738 nValue /= nRadix; in IMPL_RTL_STRNAME()
773 if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) in IMPL_RTL_STRNAME()
774 nRadix = 10; in IMPL_RTL_STRNAME()
850 if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) in IMPL_RTL_STRNAME()
851 nRadix = 10; in IMPL_RTL_STRNAME()
875 n *= nRadix; in IMPL_RTL_STRNAME()
896 if ( (nRadix < RTL_STR_MIN_RADIX) || (nRadix > RTL_STR_MAX_RADIX) ) in IMPL_RTL_STRNAME()
897 nRadix = 10; in IMPL_RTL_STRNAME()
[all …]
H A Dstrimp.c26 sal_Int16 rtl_ImplGetDigit( sal_Unicode ch, sal_Int16 nRadix ) in rtl_ImplGetDigit() argument
35 return (n < nRadix) ? n : -1; in rtl_ImplGetDigit()
H A Dstrimp.h52 sal_Int16 rtl_ImplGetDigit( sal_Unicode ch, sal_Int16 nRadix );
/trunk/main/unotools/source/ucbhelper/
H A Dtempfile.cxx198 unsigned const nRadix = 36; in CreateTempName_Impl() local
199 unsigned long const nMax = (nRadix*nRadix*nRadix*nRadix*nRadix*nRadix); in CreateTempName_Impl()
209 aTmp += String::CreateFromInt64( static_cast<sal_Int64>(u), nRadix ); in CreateTempName_Impl()
/trunk/main/filter/source/placeware/
H A Dtempfile.cxx149 const sal_uInt32 nRadix = 26; in createTempFileURL() local
157 u %= (nRadix*nRadix*nRadix); in createTempFileURL()
161 aTmp += OUString::valueOf( (sal_Int32) (unsigned) u, nRadix ); in createTempFileURL()
/trunk/main/tools/source/fsys/
H A Dtempfile.cxx110 const unsigned nRadix = 26; in CreateTempName_Impl() local
118 u %= (nRadix*nRadix*nRadix); in CreateTempName_Impl()
120 aTmp += String::CreateFromInt32( (sal_Int32) (unsigned) u, nRadix ); in CreateTempName_Impl()
/trunk/main/tools/source/string/
H A Dtustring.cxx75 UniString UniString::CreateFromInt32( sal_Int32 n, sal_Int16 nRadix ) in CreateFromInt32() argument
81 static_cast< xub_StrLen >(rtl_ustr_valueOfInt32( aBuf, n, nRadix )) ); in CreateFromInt32()
86 UniString UniString::CreateFromInt64( sal_Int64 n, sal_Int16 nRadix ) in CreateFromInt64() argument
92 static_cast< xub_StrLen >(rtl_ustr_valueOfInt64( aBuf, n, nRadix )) ); in CreateFromInt64()
H A Dtstring.cxx99 ByteString ByteString::CreateFromInt32( sal_Int32 n, sal_Int16 nRadix ) in CreateFromInt32() argument
105 static_cast< xub_StrLen >(rtl_str_valueOfInt32( aBuf, n, nRadix )) ); in CreateFromInt32()
110 ByteString ByteString::CreateFromInt64( sal_Int64 n, sal_Int16 nRadix ) in CreateFromInt64() argument
116 static_cast< xub_StrLen >(rtl_str_valueOfInt64( aBuf, n, nRadix )) ); in CreateFromInt64()
/trunk/main/svtools/source/edit/
H A Dsyntaxhighlight.cxx555 int nRadix = 10; in getNextToken() local
565 nRadix = 8; // Octal-Basis in getNextToken()
576 nRadix = 16; // Hex-Basis in getNextToken()
589 if( reType == TT_NUMBER && nRadix == 10 ) in getNextToken()
/trunk/main/tools/source/stream/
H A Dstream.cxx456 nRadix = 10; in ImpInit()
2110 rLong = strtol( buf, &pEndPtr, (int)nRadix ); in ReadNumber()
2135 rUInt32 = strtoul( buf, &pEndPtr, (int)nRadix ); in ReadNumber()
2182 if( nRadix == 16 ) in WriteNumber()
2184 else if( nRadix == 8 ) in WriteNumber()
2211 if( nRadix == 16 ) in WriteNumber()
2213 else if( nRadix == 8 ) in WriteNumber()
/trunk/main/tools/inc/tools/
H A Dstring.hxx211 static ByteString CreateFromInt32( sal_Int32 n, sal_Int16 nRadix = 10 );
212 static ByteString CreateFromInt64( sal_Int64 n, sal_Int16 nRadix = 10 );
502 static UniString CreateFromInt32( sal_Int32 n, sal_Int16 nRadix = 10 );
503 static UniString CreateFromInt64( sal_Int64 n, sal_Int16 nRadix = 10 );
H A Dstream.hxx275 sal_uInt8 nRadix; member in SvStream
398 { nRadix = nRad; CreateFormatString(); } in SetRadix()
399 sal_uInt8 GetRadix() const { return nRadix; } in GetRadix()
/trunk/main/basic/source/runtime/
H A Dmethods.cxx1777 int nRadix = 10; in RTLFUNC() local
1780 nRadix = 16; in RTLFUNC()
1782 nRadix = 8; in RTLFUNC()
1783 if ( nRadix != 10 ) in RTLFUNC()
1786 sal_Int16 nlResult = (sal_Int16)strtol( aByteStr.GetBuffer()+2, &pEndPtr, nRadix); in RTLFUNC()

Completed in 96 milliseconds