Lines Matching refs:n

214 OUString toRoman( sal_Int32 n )  in toRoman()  argument
222 sal_uInt32 nOver1000 = n / nMask; in toRoman()
223 n -= ( nOver1000 * nMask ); in toRoman()
231 sal_uInt8 nZahl = sal_uInt8( n / nMask ); in toRoman()
233 n %= nMask; in toRoman()
289 void lcl_formatChars( sal_Unicode table[], int tableSize, int n, OUString& s ) in lcl_formatChars() argument
295 if( n>=tableSize ) lcl_formatChars( table, tableSize, (n-tableSize)/tableSize, s ); in lcl_formatChars()
297 s += OUString::valueOf( table[ n % tableSize ] ); in lcl_formatChars()
301 void lcl_formatChars1( sal_Unicode table[], int tableSize, int n, OUString& s ) in lcl_formatChars1() argument
307 int repeat_count = n / tableSize + 1; in lcl_formatChars1()
310 s += OUString::valueOf( table[ n%tableSize ] ); in lcl_formatChars1()
314 void lcl_formatChars2( sal_Unicode table_capital[], sal_Unicode table_small[], int tableSize, int n in lcl_formatChars2() argument
319 if( n>=tableSize ) in lcl_formatChars2()
321 lcl_formatChars2( table_capital, table_small, tableSize, (n-tableSize)/tableSize, s ); in lcl_formatChars2()
322 s += OUString::valueOf( table_small[ n % tableSize ] ); in lcl_formatChars2()
324 s += OUString::valueOf( table_capital[ n % tableSize ] ); in lcl_formatChars2()
328 void lcl_formatChars3( sal_Unicode table_capital[], sal_Unicode table_small[], int tableSize, int n in lcl_formatChars3() argument
333 int repeat_count = n / tableSize + 1; in lcl_formatChars3()
334 s += OUString::valueOf( table_capital[ n%tableSize ] ); in lcl_formatChars3()
337 s += OUString::valueOf( table_small[ n%tableSize ] ); in lcl_formatChars3()