Home
last modified time | relevance | path

Searched refs:lineLength (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/zstd/programs/
H A Dutil.c655 size_t const lineLength = readLineFromFile(buf+pos, dstCapacity-pos, inputFile); in readLinesFromFile() local
656 if (lineLength == 0) break; in readLinesFromFile()
657 assert(pos + lineLength <= dstCapacity); /* '=' for inputFile not terminated with '\n' */ in readLinesFromFile()
658 pos += lineLength; in readLinesFromFile()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp572 int lineLength = (int)((info->lastchar - info->buffer) + GetPromptWidth()); in GetCharacter() local
573 int new_line_rows = (lineLength / m_terminal_width) + 1; in GetCharacter()
1571 int lineLength = in ApplyTerminalSizeChange() local
1573 m_current_line_rows = (lineLength / columns) + 1; in ApplyTerminalSizeChange()