Home
last modified time | relevance | path

Searched refs:striSize (Results 1 – 5 of 5) sorted by relevance

/dports/lang/seed7/seed7/src/
H A Dstrlib.c875 memSizeType striSize; in str_head() local
1072 memSizeType striSize; in str_lpad() local
1125 memSizeType striSize; in str_lpad0() local
1149 striSize--; in str_lpad0()
1227 if (striSize >= 1) { in str_ltrim()
1231 striSize -= start; in str_ltrim()
1762 } else if ((uintType) start <= striSize && striSize >= 1) { in str_tail()
1823 if (striSize >= 1) { in str_trim()
1827 while (striSize > start && stri->mem[striSize - 1] <= ' ') { in str_trim()
1828 striSize--; in str_trim()
[all …]
H A Dstr_rtl.c2989 striSize--;
3040 striSize--;
3087 if (striSize >= 1) {
3091 striSize -= start;
4007 while (striSize > 0 && stri->mem[striSize - 1] <= ' ') {
4008 striSize--;
4217 } else if ((uintType) start <= striSize && striSize >= 1) {
4253 } else if ((uintType) start <= striSize && striSize >= 1) {
4308 if ((uintType) start <= striSize && striSize >= 1) {
4443 while (striSize > start && stri->mem[striSize - 1] <= ' ') {
[all …]
H A Dpcs_win.c192 memSizeType striSize; in prepareCommandLine() local
230 striSize = os_stri_strlen(command_stri); in prepareCommandLine()
231 if (striSize > MAXIMUM_COMMAND_LINE_LENGTH - 2 || in prepareCommandLine()
232 &command_line[striSize] > beyondDest) { in prepareCommandLine()
237 memcpy(&command_line[1], command_stri, sizeof(os_charType) * striSize); in prepareCommandLine()
238 command_line[striSize + 1] = '\"'; in prepareCommandLine()
239 destChar = &command_line[striSize + 2]; in prepareCommandLine()
H A Dsql_tds.c1211 memSizeType striSize; in genSqlStringLiteral() local
1217 striSize = stri->size; in genSqlStringLiteral()
1218 if (unlikely(striSize > (MAX_STRI_LEN - numOfQuotes) / QUOTE_IN_STRING_LEN || in genSqlStringLiteral()
1219 !ALLOC_STRI_SIZE_OK(literal, QUOTE_IN_STRING_LEN * striSize + numOfQuotes))) { in genSqlStringLiteral()
1225 for (position = 0; position < striSize; position++) { in genSqlStringLiteral()
1240 QUOTE_IN_STRING_LEN * striSize + numOfQuotes, pos); in genSqlStringLiteral()
1242 FREE_STRI(literal, QUOTE_IN_STRING_LEN * striSize + numOfQuotes); in genSqlStringLiteral()
1247 COUNT3_STRI(QUOTE_IN_STRING_LEN * striSize + numOfQuotes, pos); in genSqlStringLiteral()
H A Dstriutl.c220 memSizeType striSize) in striCharsAsUnquotedCStri() argument
227 striSlice.size = striSize; in striCharsAsUnquotedCStri()