Lines Matching refs:n

70 #define _BUILD_STR_(n)	# n  argument
71 #define BUILD_STR(n) _BUILD_STR_(n) argument
677 int i, n; in osl_writeProfileIdent() local
684 for (n = 0; Strings[n] != NULL; n++); in osl_writeProfileIdent()
686 if ((i = Value - FirstId) >= n) in osl_writeProfileIdent()
758 sal_uInt32 i, n = 0; in osl_getProfileSectionEntries() local
788 if ((n + pSec->m_Entries[i].m_Len + 1) < MaxLen) in osl_getProfileSectionEntries()
790 strncpy(&pszBuffer[n], &pProfile->m_Lines[pSec->m_Entries[i].m_Line] in osl_getProfileSectionEntries()
792 n += pSec->m_Entries[i].m_Len; in osl_getProfileSectionEntries()
793 pszBuffer[n++] = '\0'; in osl_getProfileSectionEntries()
800 pszBuffer[n++] = '\0'; in osl_getProfileSectionEntries()
805 n += pSec->m_Entries[i].m_Len + 1; in osl_getProfileSectionEntries()
807 n += 1; in osl_getProfileSectionEntries()
811 n = 0; in osl_getProfileSectionEntries()
814 n = PrfQueryProfileString(pProfile->m_hIni, (PCSZ)pszSection, NULL, NULL, in osl_getProfileSectionEntries()
823 return (n); in osl_getProfileSectionEntries()
828 sal_uInt32 i, n = 0; in osl_getProfileSections() local
843 if ((n + pSec->m_Len + 1) < MaxLen) in osl_getProfileSections()
845 strncpy(&pszBuffer[n], &pProfile->m_Lines[pSec->m_Line][pSec->m_Offset], in osl_getProfileSections()
847 n += pSec->m_Len; in osl_getProfileSections()
848 pszBuffer[n++] = '\0'; in osl_getProfileSections()
854 pszBuffer[n++] = '\0'; in osl_getProfileSections()
859 n += pProfile->m_Sections[i].m_Len + 1; in osl_getProfileSections()
861 n += 1; in osl_getProfileSections()
865 n = PrfQueryProfileString(pProfile->m_hIni, NULL, NULL, NULL, in osl_getProfileSections()
870 return (n); in osl_getProfileSections()
1515 sal_uInt32 i, n; in insertLine() local
1529 for (n = 0; n < pSec->m_NoEntries; n++) in insertLine()
1530 if (pSec->m_Entries[n].m_Line >= LineNo) in insertLine()
1531 pSec->m_Entries[n].m_Line++; in insertLine()
1549 sal_uInt32 i, n; in removeLine() local
1563 for (n = 0; n < pSec->m_NoEntries; n++) in removeLine()
1564 if (pSec->m_Entries[n].m_Line > LineNo) in removeLine()
1565 pSec->m_Entries[n].m_Line--; in removeLine()
1710 sal_uInt32 i, n; in findEntry() local
1718 n = Sect; in findEntry()
1722 n %= pProfile->m_NoSections; in findEntry()
1723 pSec = &pProfile->m_Sections[n]; in findEntry()
1728 n++; in findEntry()
1731 Sect = n; in findEntry()