Home
last modified time | relevance | path

Searched refs:MAX_LINE (Results 1 – 15 of 15) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/ext/MIME/Base64/
DBase64.xs57 #define MAX_LINE 76 /* size of encoded lines */ macro
148 rlen += ((rlen-1) / MAX_LINE + 1) * eollen;
159 if (chunk == (MAX_LINE/4)) {
320 ? MAX_LINE /* .......\n */
322 ? MAX_LINE - 3 /* ....=XX\n */
323 : MAX_LINE - 4; /* ...=XX=\n */
325 STRLEN len = MAX_LINE - 1 - linelen;
353 if (eol_len && linelen > MAX_LINE - 4) {
/mirbsd/src/gnu/usr.bin/lynx/src/
DLYGlobalDefs.h154 #define MAX_LINE 1024 /* No window can be wider than this */ macro
155 #define MAX_COLS (MAX_LINE-10) /* we don't expect wider than this */
159 extern char star_string[MAX_LINE + 1]; /* from GridText.c */
162 ((n) >= MAX_LINE ? star_string : &star_string[(MAX_LINE-1)] - (n))
DLYNews.c88 char user_input[MAX_LINE]; in LYNewsPost()
89 char CJKinput[MAX_LINE]; in LYNewsPost()
DGridText.c347 char data[MAX_LINE + 2];
530 static ht_run_info ht_runs[MAX_LINE];
571 ((n) >= MAX_LINE ? underscore_string : &underscore_string[(MAX_LINE-1)] - (n))
573 static char underscore_string[MAX_LINE + 1];
574 char star_string[MAX_LINE + 1];
1165 memset(underscore_string, '.', (size_t) (MAX_LINE - 1)); in HText_new()
1166 underscore_string[(MAX_LINE - 1)] = '\0'; in HText_new()
1167 underscore_string[MAX_LINE] = '\0'; in HText_new()
1171 memset(star_string, '_', (size_t) (MAX_LINE - 1)); in HText_new()
1172 star_string[(MAX_LINE - 1)] = '\0'; in HText_new()
[all …]
DLYBookmark.c285 BStrAlloc(tmp_data, MAX_LINE + 2 * (int) strlen(title)); in save_bookmark_link()
289 BStrAlloc(tmp_data, MAX_LINE + (int) strlen(title)); in save_bookmark_link()
DLYShowInfo.c210 char buf[MAX_LINE]; in LYShowInfo()
DLYCgi.c360 char buf[MAX_LINE]; in LYLoadCGI()
DLYStrings.c2776 char buff[MAX_LINE], *s, *d; in LYElideString()
2777 static char s_str[MAX_LINE]; in LYElideString()
4072 MAX_LINE - 9 - digits, value); in FormatChoiceNum()
4074 LYStrNCpy(dst, value, MAX_LINE - 1); in FormatChoiceNum()
4101 char Cnum[MAX_LINE]; in draw_option()
4179 char buffer[MAX_LINE]; in LYhandlePopupList()
DLYMainLoop.c731 if (len < MAX_LINE - 1 in do_check_recall()
3556 char prompt[MAX_LINE]; in check_JUMP_param()
5479 char sjis_buff[MAX_LINE]; in mainloop()
7259 if (len < MAX_LINE) in mainloop()
7260 len = MAX_LINE; /* Required for do_check_goto_URL() */ in mainloop()
8101 char format[MAX_LINE]; in status_link()
8120 if (prefix > MAX_STATUS || prefix >= MAX_LINE - 1) { in status_link()
DLYUtils.c474 char buffer[MAX_LINE]; in show_whereis_targets()
1094 char buffer[MAX_LINE]; in LYhighlight()
1371 char buffer[MAX_LINE]; in statusline()
1377 char text_buff[MAX_LINE]; in statusline()
DHTML.c4791 LimitValue(I.size, MAX_LINE); in HTML_start_element()
5015 if (width > 1 && (width - 1) * 6 < MAX_LINE - 3 - in HTML_start_element()
/mirbsd/src/lib/libncurses/src/include/
Dterm_entry.h99 #define MAX_LINE 132 macro
/mirbsd/src/lib/libncurses/src/ncurses/tinfo/
Dparse_entry.c628 char buf[MAX_LINE * 2 + 2]; in postprocess_termcap()
/mirbsd/src/gnu/usr.bin/binutils/gas/config/
Dtc-tic54x.c82 #define MAX_LINE 256 /* Lines longer than this are truncated by TI's asm. */ macro
88 char mnemonic[MAX_LINE]; /* Opcode name/mnemonic. */
89 char parmnemonic[MAX_LINE]; /* 2nd mnemonic of parallel insn. */
94 char buf[MAX_LINE];
/mirbsd/src/gnu/usr.bin/lynx/
DCHANGES176 than MAX_LINE. The user is still offered the choice of wrapping to the
182 their result is no longer limited by MAX_LINE -TD
5097 line before the patch was limited by MAX_LINE = 1024 by default). Specifying
5919 can't exceed MAX_LINE (1023 by default)) -VH