Lines Matching refs:n

71 #define _BUILD_STR_(n)	# n  argument
72 #define BUILD_STR(n) _BUILD_STR_(n) argument
816 int i, n; in osl_writeProfileIdent() local
823 for (n = 0; Strings[n] != NULL; n++); in osl_writeProfileIdent()
825 if ((i = Value - FirstId) >= n) in osl_writeProfileIdent()
925 sal_uInt32 i, n = 0; in osl_getProfileSectionEntries() local
984 if ((n + pSec->m_Entries[i].m_Len + 1) < MaxLen) in osl_getProfileSectionEntries()
986 strncpy(&pszBuffer[n], &pProfile->m_Lines[pSec->m_Entries[i].m_Line] in osl_getProfileSectionEntries()
988 n += pSec->m_Entries[i].m_Len; in osl_getProfileSectionEntries()
989 pszBuffer[n++] = '\0'; in osl_getProfileSectionEntries()
996 pszBuffer[n++] = '\0'; in osl_getProfileSectionEntries()
1001 n += pSec->m_Entries[i].m_Len + 1; in osl_getProfileSectionEntries()
1003 n += 1; in osl_getProfileSectionEntries()
1007 n = 0; in osl_getProfileSectionEntries()
1022 return (n); in osl_getProfileSectionEntries()
1027 sal_uInt32 i, n = 0; in osl_getProfileSections() local
1079 if ((n + pSec->m_Len + 1) < MaxLen) in osl_getProfileSections()
1081 strncpy(&pszBuffer[n], &pProfile->m_Lines[pSec->m_Line][pSec->m_Offset], in osl_getProfileSections()
1083 n += pSec->m_Len; in osl_getProfileSections()
1084 pszBuffer[n++] = '\0'; in osl_getProfileSections()
1090 pszBuffer[n++] = '\0'; in osl_getProfileSections()
1095 n += pProfile->m_Sections[i].m_Len + 1; in osl_getProfileSections()
1097 n += 1; in osl_getProfileSections()
1113 return (n); in osl_getProfileSections()
1595 sal_uInt32 i, n; in insertLine() local
1610 for (n = 0; n < pSec->m_NoEntries; n++) in insertLine()
1611 if (pSec->m_Entries[n].m_Line >= LineNo) in insertLine()
1612 pSec->m_Entries[n].m_Line++; in insertLine()
1631 sal_uInt32 i, n; in removeLine() local
1649 for (n = 0; n < pSec->m_NoEntries; n++) in removeLine()
1650 if (pSec->m_Entries[n].m_Line > LineNo) in removeLine()
1651 pSec->m_Entries[n].m_Line--; in removeLine()
1818 sal_uInt32 i, n; in findEntry() local
1825 n = Sect; in findEntry()
1829 n %= pProfile->m_NoSections; in findEntry()
1830 pSec = &pProfile->m_Sections[n]; in findEntry()
1835 n++; in findEntry()
1838 Sect = n; in findEntry()