Searched refs:line_length (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/contrib/tcp_wrappers/
H A Dsafe_finger.c55 int line_length = 0; local
101 line_length = 0;
103 if (line_length >= LINE_LENGTH) { /* force end of line */
105 line_length = 0;
107 if (line_length == 0) { /* protect left margin */
109 line_length++;
114 line_length++;
117 line_length++;
120 line_length += 4;
/freebsd-current/contrib/bc/tests/bc/scripts/
H A Dprint2.bc3 l = line_length()
/freebsd-current/contrib/ee/
H A Dee.c124 int line_length; /* actual number of characters in the line */ member in struct:text
562 dlt_line->line_length = 0;
565 curr_line->line_length = 1;
700 if ((curr_line->max_length - curr_line->line_length) < 5)
702 curr_line->line_length++;
705 while (counter < curr_line->line_length) /* find end of line */
763 draw_line(scr_vert, scr_horz, point, position, curr_line->line_length);
789 curr_line->line_length -= del_width;
806 while (temp_pos <= curr_line->line_length)
824 point = resiz_line(temp_buff->line_length, curr_lin
[all...]
/freebsd-current/sys/contrib/xen/io/
H A Dfbif.h138 uint32_t line_length; /* the length of a row of pixels (in bytes) */ member in struct:xenfb_page
/freebsd-current/usr.sbin/mlx5tool/
H A Dmlx5tool.c206 int index_in_row, line_length, row; local
210 line_length = 16;
216 for (index_in_row = 0; index_in_row < line_length;
234 index_in_row < line_length;
/freebsd-current/contrib/libedit/
H A Dchared.c636 size_t line_length, len; local
642 line_length = (size_t)(el->el_line.lastchar - el->el_line.buffer);
644 if (start >= (int)line_length || end >= (int)line_length)
648 if (len > line_length - (size_t)end)
649 len = line_length - (size_t)end;
/freebsd-current/contrib/wpa/src/wps/
H A Dwps_upnp_ssdp.c92 static int line_length(const char *l) function
529 data += line_length(data);
532 for (; *data != '\0'; data += line_length(data)) {
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c1593 size_t attr_length, l, line_length, value_length; local
1611 line_length = 0;
1625 line_length *= 10;
1626 line_length += *p - '0';
1627 if (line_length > 999999) {
1641 if (line_length > attr_length
1642 || line_length < 1
1643 || attr[line_length - 1] != '\n')
1651 attr[line_length - 1] = '\0';
1669 value_length = attr + line_length
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp445 int line_length = (int)(content.length() + ColumnWidth(prompt)); local
446 return (line_length / m_terminal_width) + 1;
/freebsd-current/crypto/openssl/test/
H A Dsslapitest.c151 int line_length = strlen(line); local
154 if (client_log_buffer_index + line_length > sizeof(client_log_buffer) - 1) {
161 client_log_buffer_index += line_length;
167 int line_length = strlen(line); local
170 if (server_log_buffer_index + line_length > sizeof(server_log_buffer) - 1) {
177 server_log_buffer_index += line_length;

Completed in 151 milliseconds