Home
last modified time | relevance | path

Searched refs:fp0 (Results 1 – 24 of 24) sorted by relevance

/mirbsd/src/gnu/usr.bin/lynx/src/
DLYOptions.c3482 void LYMenuVisitedLinks(FILE *fp0, int disable_all) in LYMenuVisitedLinks() argument
3484 BeginSelect(fp0, visited_links_string); in LYMenuVisitedLinks()
3485 PutOptValues(fp0, Visited_Links_As, visited_links_values); in LYMenuVisitedLinks()
3486 EndSelect(fp0); in LYMenuVisitedLinks()
3507 FILE *fp0; in gen_options() local
3513 if ((fp0 = InternalPageFP(tempfile, TRUE)) == 0) in gen_options()
3540 BeginInternalPage(fp0, OPTIONS_TITLE, NULL); /* help link below */ in gen_options()
3545 fprintf(fp0, "<form action=\"%s\" method=\"post\">\n", STR_LYNXOPTIONS); in gen_options()
3551 fprintf(fp0, "<input name=\"%s\" type=\"hidden\" value=\"%s\">\n", in gen_options()
3559 fprintf(fp0, "<p align=center>\n"); in gen_options()
[all …]
DLYUpload.c175 FILE *fp0; in LYUpload_options() local
180 if ((fp0 = InternalPageFP(tempfile, TRUE)) == 0) in LYUpload_options()
193 BeginInternalPage(fp0, UPLOAD_OPTIONS_TITLE, UPLOAD_OPTIONS_HELP); in LYUpload_options()
195 fprintf(fp0, "<pre>\n"); in LYUpload_options()
196 fprintf(fp0, " <em>%s</em> %s\n", gettext("Upload To:"), curloc); in LYUpload_options()
197 fprintf(fp0, "\n%s\n", gettext("Upload options:")); in LYUpload_options()
203 fprintf(fp0, " <a href=\"LYNXDIRED://UPLOAD=%d/TO=%s\">", in LYUpload_options()
205 fprintf(fp0, "%s", (cur_upload->name ? in LYUpload_options()
207 fprintf(fp0, "</a>\n"); in LYUpload_options()
210 fprintf(fp0, " &lt;NONE&gt;\n"); in LYUpload_options()
[all …]
DLYList.c49 FILE *fp0; in showlist() local
68 if ((fp0 = InternalPageFP(tempfile, titles == last_titles)) == 0) in showlist()
81 BeginInternalPage(fp0, ADDRLIST_PAGE_TITLE, LIST_PAGE_HELP); in showlist()
84 BeginInternalPage(fp0, LIST_PAGE_TITLE, LIST_PAGE_HELP); in showlist()
88 fprintf(fp0, "%s%s<p>\n", gettext("References in "), in showlist()
94 fprintf(fp0, "<%s compact>\n", ((keypad_mode == NUMBERS_AS_ARROWS) ? in showlist()
97 fprintf(fp0, "<lh><em>%s</em>\n", gettext("Visible links:")); in showlist()
129 fprintf(fp0, in showlist()
179 fprintf(fp0, "<li><a href=\"%s\"%s>%s%s%s%s%s</a>\n", Address, in showlist()
196 fprintf(fp0, "\n</%s>\n\n<p>\n", in showlist()
[all …]
DLYDownload.c484 FILE *fp0; in LYdownload_options() local
494 if ((fp0 = InternalPageFP(tempfile, TRUE)) == 0) in LYdownload_options()
505 BeginInternalPage(fp0, DOWNLOAD_OPTIONS_TITLE, DOWNLOAD_OPTIONS_HELP); in LYdownload_options()
507 fprintf(fp0, "<pre>\n"); in LYdownload_options()
508 fprintf(fp0, "<em>%s</em> %s\n", in LYdownload_options()
513 fprintf(fp0, "<em>%s</em> %s\n", in LYdownload_options()
517 fprintf(fp0, "\n%s\n", in LYdownload_options()
530 fprintf(fp0, in LYdownload_options()
547 fprintf(fp0, in LYdownload_options()
557 fprintf(fp0, " <em>%s</em>\n", gettext("Save to disk disabled.")); in LYdownload_options()
[all …]
DLYShowInfo.c28 #define BEGIN_DL(text) fprintf(fp0, "<h2>%s</h2>\n<dl compact>", LYEntifyTitle(&buffer, text))
29 #define END_DL() fprintf(fp0, "\n</dl>\n")
31 #define ADD_SS(label,value) dt_String(fp0, label, value)
32 #define ADD_NN(label,value,units) dt_Number(fp0, label, (long) value, units)
95 static void dt_Number(FILE *fp0, in dt_Number() argument
120 FILE *fp0; in LYShowInfo() local
135 fp0 = LYOpenTempRewrite(tempfile, HTML_SUFFIX, "w"); in LYShowInfo()
138 fp0 = LYOpenTemp(tempfile, HTML_SUFFIX, "w"); in LYShowInfo()
140 if (fp0 == NULL) { in LYShowInfo()
164 WriteInternalTitle(fp0, SHOWINFO_TITLE); in LYShowInfo()
[all …]
DLYReadCFG.c2039 FILE *fp0, in do_read_cfg() argument
2135 if (fp0 == NULL) in do_read_cfg()
2146 switch ((fp0 != 0 && tbl->type != CONF_INCLUDE) in do_read_cfg()
2184 if (fp0 != 0 && !no_lynxcfg_xinfo) { in do_read_cfg()
2194 fprintf(fp0, "%s:<a href=\"%s\">%s</a>\n\n", name, url, cp1); in do_read_cfg()
2195 fprintf(fp0, " #&lt;begin %s&gt;\n", cp1); in do_read_cfg()
2209 if (fp0 == NULL) in do_read_cfg()
2250 if (fp0 != 0 && !no_lynxcfg_xinfo && resultant_set) { in do_read_cfg()
2254 fprintf(fp0, " Options allowed in this file:\n"); in do_read_cfg()
2260 fprintf(fp0, " * %s\n", buf); in do_read_cfg()
[all …]
DLYHistory.c662 FILE *fp0; in showhistory() local
664 if ((fp0 = InternalPageFP(tempfile, TRUE)) == 0) in showhistory()
672 BeginInternalPage(fp0, HISTORY_PAGE_TITLE, HISTORY_PAGE_HELP); in showhistory()
674 fprintf(fp0, "<p align=right> <a href=\"%s\">[%s]</a>\n", in showhistory()
677 fprintf(fp0, "<pre>\n"); in showhistory()
679 fprintf(fp0, "<em>%s</em>\n", gettext("You selected:")); in showhistory()
695 fprintf(fp0, in showhistory()
711 fprintf(fp0, "<tab to=t%d>%s\n", x, Title); in showhistory()
713 fprintf(fp0, "</pre>\n"); in showhistory()
714 EndInternalPage(fp0); in showhistory()
[all …]
DLYLocal.c1359 FILE *fp0; in permit_location() local
1375 if ((fp0 = LYOpenTemp(tempfile, HTML_SUFFIX, "w")) == NULL) { in permit_location()
1389 fprintf(fp0, "<Html><Head>\n<Title>%s</Title>\n</Head>\n<Body>\n", in permit_location()
1391 fprintf(fp0, "<H1>%s%s</H1>\n", PERMISSIONS_SEGMENT, user_filename); in permit_location()
1398 fprintf(fp0, "<Form Action=\"%s//PERMIT_LOCATION%s\">\n", in permit_location()
1403 fprintf(fp0, "<Ol><Li>%s<Br><Br>\n", in permit_location()
1405 fprintf(fp0, "%s:<Br>\n", gettext("Owner:")); in permit_location()
1406 fprintf(fp0, in permit_location()
1409 fprintf(fp0, in permit_location()
1416 fprintf(fp0, in permit_location()
[all …]
DLYPrint.c1257 FILE *fp0; in print_options() local
1260 if ((fp0 = InternalPageFP(my_temp, TRUE)) == 0) in print_options()
1265 BeginInternalPage(fp0, PRINT_OPTIONS_TITLE, PRINT_OPTIONS_HELP); in print_options()
1267 fprintf(fp0, "<pre>\n"); in print_options()
1278 fputs(buffer, fp0); in print_options()
1282 fprintf(fp0, in print_options()
1286 fprintf(fp0, "\n%s\n", in print_options()
1292 fprintf(fp0, in print_options()
1298 fprintf(fp0, " <em>%s</em>\n", gettext("Save to disk disabled")); in print_options()
1301 fprintf(fp0, in print_options()
[all …]
DLYOptions.h27 extern void LYMenuVisitedLinks(FILE *fp0, int disable_all);
DLYReadCFG.h55 FILE *fp0);
DLYUtils.h162 extern void BeginInternalPage(FILE *fp0, const char *Title, const char *HelpURL);
163 extern void EndInternalPage(FILE *fp0);
195 extern void WriteInternalTitle(FILE *fp0, const char *Title);
DLYUtils.c6875 void WriteInternalTitle(FILE *fp0, const char *Title) in WriteInternalTitle() argument
6877 fprintf(fp0, MY_DOCTYPE); in WriteInternalTitle()
6879 fprintf(fp0, "<html>\n<head>\n"); in WriteInternalTitle()
6880 LYAddMETAcharsetToFD(fp0, -1); in WriteInternalTitle()
6892 fprintf(fp0, "<base href=\"%s\">\n", Address); in WriteInternalTitle()
6896 fprintf(fp0, "<title>%s</title>\n</head>\n<body>\n", Title); in WriteInternalTitle()
6903 void BeginInternalPage(FILE *fp0, const char *Title, in BeginInternalPage() argument
6906 WriteInternalTitle(fp0, Title); in BeginInternalPage()
6911 fprintf(fp0, "<h1>%s (%s%s%s), <a href=\"%s%s\">help</a></h1>\n", in BeginInternalPage()
6915 fprintf(fp0, "<h1>%s (%s%s%s)</h1>\n", in BeginInternalPage()
[all …]
/mirbsd/src/gnu/usr.bin/lynx/src/chrtrans/
Dmakeuctb.c304 int fp0 = 0, fp1 = 0, un0, un1; in main() local
519 tblname, fp0, fp1); in main()
613 fp0 = (int) strtol(p, &p1, 0); in main()
635 if (fp0 < 0 || fp0 >= fontlen) { in main()
638 tblname, fp0); in main()
641 if (fp1 && (fp1 < fp0 || fp1 >= fontlen)) { in main()
657 for (i = fp0; i <= fp1; i++) { in main()
679 tblname, fp0, fp1); in main()
682 if (un1 - un0 != fp1 - fp0) { in main()
688 fp0, fp1); in main()
[all …]
/mirbsd/src/gnu/usr.bin/binutils/gdb/
Dmipsv4-nat.c116 mips_regnum (current_gdbarch)->fp0 + regi, in supply_fpregset()
135 for (regi = mips_regnum (current_gdbarch)->fp0; in fill_fpregset()
136 regi < mips_regnum (current_gdbarch)->fp0 + 32; regi++) in fill_fpregset()
141 to = (char *) &(fpregsetp->fp_r.fp_regs[regi - mips_regnum (current_gdbarch)->fp0]); in fill_fpregset()
Dmips-linux-nat.c35 else if (regno >= mips_regnum (current_gdbarch)->fp0 in mips_linux_cannot_fetch_register()
36 && regno <= mips_regnum (current_gdbarch)->fp0 + 32) in mips_linux_cannot_fetch_register()
Dmips-linux-tdep.c260 else if ((regno >= mips_regnum (current_gdbarch)->fp0) in mips_linux_register_addr()
261 && (regno < mips_regnum (current_gdbarch)->fp0 + 32)) in mips_linux_register_addr()
262 regaddr = FPR_BASE + (regno - mips_regnum (current_gdbarch)->fp0); in mips_linux_register_addr()
551 else if ((regno >= mips_regnum (current_gdbarch)->fp0) in mips64_linux_register_addr()
552 && (regno < mips_regnum (current_gdbarch)->fp0 + 32)) in mips64_linux_register_addr()
1017 trad_frame_set_reg_addr (this_cache, ireg + regs->fp0 + NUM_REGS, in mips_linux_o32_sigframe_init()
1021 trad_frame_set_reg_addr (this_cache, ireg + regs->fp0 + NUM_REGS, in mips_linux_o32_sigframe_init()
1146 trad_frame_set_reg_addr (this_cache, ireg + regs->fp0 + NUM_REGS, in mips_linux_n32n64_sigframe_init()
Dmips-tdep.c181 return mips_regnum (gdbarch)->fp0 + 12; in mips_fpa0_regnum()
373 if (register_size (current_gdbarch, mips_regnum (current_gdbarch)->fp0) == in mips2_fp_compat()
650 && (regnum % NUM_REGS) >= mips_regnum (current_gdbarch)->fp0 in mips_convert_register_p()
651 && (regnum % NUM_REGS) < mips_regnum (current_gdbarch)->fp0 + 32 in mips_convert_register_p()
678 if ((regnum % NUM_REGS) >= mips_regnum (current_gdbarch)->fp0 in mips_register_type()
679 && (regnum % NUM_REGS) < mips_regnum (current_gdbarch)->fp0 + 32) in mips_register_type()
2921 NUM_REGS + mips_regnum (current_gdbarch)->fp0, in mips_n32n64_return_value()
2944 for (field = 0, regnum = mips_regnum (current_gdbarch)->fp0; in mips_n32n64_return_value()
3336 NUM_REGS + mips_regnum (current_gdbarch)->fp0, in mips_o32_return_value()
3353 NUM_REGS + mips_regnum (current_gdbarch)->fp0 + in mips_o32_return_value()
[all …]
Dmips-mdebug-tdep.c361 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg] in mips_mdebug_frame_cache()
364 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg] in mips_mdebug_frame_cache()
368 cache->saved_regs[NUM_REGS + mips_regnum (current_gdbarch)->fp0 + ireg] in mips_mdebug_frame_cache()
Dmips-tdep.h54 int fp0; member
Dremote-mips.c1873 if (regno >= mips_regnum (current_gdbarch)->fp0 in mips_map_regno()
1874 && regno < mips_regnum (current_gdbarch)->fp0 + 32) in mips_map_regno()
1875 return regno - mips_regnum (current_gdbarch)->fp0 + 32; in mips_map_regno()
/mirbsd/src/gnu/usr.bin/binutils/gdb/regformats/
Dreg-m68k.dat22 96:fp0
/mirbsd/src/gnu/usr.bin/binutils/gas/doc/
Dc-sh64.texi107 vectors, @samp{fp0} through @samp{fp62} (even numbered registers only)
Dc-i370.texi68 Registers can be given the symbolic names r0..r15, fp0, fp2, fp4, fp6.