/src/sys/arch/ia64/stand/common/ |
merge_help.awk | 6 # Merge two boot loader help files for FreeBSD 3.0 38 help[ind, "T"] = T; 39 help[ind, "S"] = S; 40 help[ind, "link"] = -1; 43 while (help[i, "T"] help[i, "S"] < T S) 46 i = help[i, "link"]; 52 help[j, "link"] = ind; 53 help[ind, "link"] = -1; 55 help[ind, "link"] = i [all...] |
/src/sys/arch/i386/stand/lib/ |
getextmemx.c | 64 int help = buf[0]; local in function:getextmemx 65 if (help == 15 * 1024) 66 help += buf[1] * 64; 67 if (extmem < help) 68 extmem = help; 88 int help = bufps2.dta[0]; local in function:getextmemx 89 if (help == 15 * 1024) 90 help += bufps2.dta[1]; 91 if (extmem < help) 92 extmem = help; [all...] |
/src/usr.sbin/timed/timedc/ |
cmdtab.c | 44 const char helphelp[] = "gets help on commands"; 53 { "help", helphelp, help }, 57 { "?", helphelp, help },
|
timedc-extern.h | 39 void help(int, char *[]);
|
/src/distrib/utils/more/ |
help.c | 1 /* $NetBSD: help.c,v 1.6 2003/10/13 14:34:25 agc Exp $ */ 36 static char sccsid[] = "@(#)help.c 8.1 (Berkeley) 6/6/93"; 38 __RCSID("$NetBSD: help.c,v 1.6 2003/10/13 14:34:25 agc Exp $"); 50 help() function in typeref:typename:void
|
Makefile | 9 SRCS= ch.c command.c decode.c help.c input.c line.c linenum.c main.c \ 19 ${.CURDIR}/more.help ${DESTDIR}/usr/share/misc
|
/src/sys/lib/libsa/ |
alloc.c | 168 char *help; local in function:alloc 194 help = top; 202 panic("heap full (%p+%zu)", help, size); 204 *(unsigned int *)(void *)help = (unsigned int)ALIGN(size); 205 return help + ALIGN(sizeof(unsigned int)); 213 help = (char *)(void *)*f; 215 return help + ALIGN(sizeof(unsigned int));
|
/src/sys/arch/macppc/stand/ofwboot/ |
alloc.c | 128 char *help; local in function:alloc 176 help = OF_claim(NULL, (unsigned)size, NBPG); 177 if (help == (char *)-1) 180 f = (struct ml *)help; 184 (u_long)(help + OVERHEAD), f->size); 197 help = (char *)f; 199 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size); 204 return (help + OVERHEAD);
|
/src/sys/arch/shark/stand/ofwboot/ |
alloc.c | 129 char *help; local in function:alloc 177 help = OF_claim(NULL, (unsigned)size, NBPG); 178 if (help == (char *)-1) 181 f = (struct ml *)help; 185 (u_long)(help + OVERHEAD), f->size); 198 help = (char *)f; 200 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size); 205 return (help + OVERHEAD);
|
/src/sys/arch/sparc/stand/ofwboot/ |
alloc.c | 129 char *help; local in function:alloc 177 help = OF_claim(NULL, (unsigned)size, NBPG); 178 if (help == (char *)-1) 181 f = (struct ml *)help; 185 (u_long)(help + OVERHEAD), f->size); 198 help = (char *)f; 200 printf("=%lx (origsize %u)\n", (u_long)(help + OVERHEAD), f->size); 205 return (help + OVERHEAD);
|
/src/usr.sbin/lpr/lpc/ |
extern.h | 45 void help(int, char **);
|
cmdtab.c | 54 #define helphelp "get help on commands" 70 { "help", helphelp, help, 0 }, 78 { "?", helphelp, help, 0 },
|
/src/libexec/httpd/lua/ |
bozo.lua | 37 opt.add_option{"-C", "--cgimap", action="store", dest="cgimap", help="--cgimap 's t'"} 38 opt.add_option{"-E", "--enable-user-cgibin", action="store_true", dest="enableusercgibin", help="--enable-user-cgibin"} 39 opt.add_option{"-H", "--hide-dots", action="store_true", dest="hidedots", help="--hide-dots"} 40 opt.add_option{"-I", "--portnum", action="store", dest="portnum", help="--portnum number"} 41 opt.add_option{"-M", "--dynamicmime", action="store", dest="dynmime", help="--dynamicmime 'suffix type a b'"} 42 opt.add_option{"-S", "--server-software", action="store", dest="serversw", help="--server-software name"} 43 opt.add_option{"-U", "--username", action="store", dest="username", help="--username name"} 44 opt.add_option{"-V", "--unknown-slash", action="store_true", dest="unknown", help="--unknown-slash"} 45 opt.add_option{"-X", "--dir-index", action="store_true", dest="dirindex", help="--dir-index"} 46 opt.add_option{"-Z", "--ssl", action="store", dest="ssl", help="--ssl 'cert priv'" [all...] |
optparse.lua | 9 -- op=add_option{"<opt>", action=<action>, dest=<dest>, help="<help message for this option>"} 78 if options.help then 112 " " .. optdesc.help .. "\n") 115 o.add_option{"--help", action="store_true", dest="help", 116 help="show this help message and exit"} 119 help="output version info."}
|
/src/sys/arch/zaurus/stand/zboot/ |
loadfile_zboot.c | 105 struct btinfo_common *help; local in function:zboot_exec 118 help = (struct btinfo_common *)(bootinfo->entry[i]); 119 if ((p - bibuf) + help->len > BOOTINFO_MAXSIZE) 122 memcpy(p, help, help->len); 123 p += help->len;
|
/src/compat/ |
m32.mk | 4 # Makefile fragment to help implement a set of 'cc -m32' libraries.
|
/src/games/boggle/boggle/ |
extern.h | 45 int help(void);
|
Makefile | 7 SRCS= bog.c help.c mach.c prtable.c timer.c word.c
|
/src/tests/net/if/ |
ifconf.c | 43 help(void) function in typeref:typename:void 119 help(); 129 help(); 131 help();
|
/src/sys/arch/i386/pnpbios/ |
pnpbios.c | 523 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getnumnodes 525 *--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL); 526 *--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL); 527 *--help = 2; /* buffer offset for node size */ 528 *--help = GSEL(GPNPBIOSSCRATCH_SEL, SEL_KPL); 529 *--help = 0; /* buffer offset for numnodes */ 530 *--help = PNP_FC_GET_NUM_NODES; 532 res = pnpbioscall(((char *)help) - pnpbios_scratchbuf); 545 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getnode 547 *--help = GSEL(GPNPBIOSDATA_SEL, SEL_KPL) 593 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getevent 608 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_sendmessage 621 short *help = (short *)(pnpbios_scratchbuf + PNPBIOS_BUFSIZE); local in function:pnpbios_getdockinfo [all...] |
/src/sys/arch/atari/stand/tostools/rawwrite/ |
rawwrite.c | 41 static void help PROTO((void)); 46 int h_flag = 0; /* Show help */ 95 help(); 156 help(void) function in typeref:typename:void
|
/src/usr.bin/tip/ |
cmdtab.c | 58 { '?', NORM, "get this summary", help },
|
/src/games/larn/ |
Makefile | 64 monster.c store.c diag.c help.c config.c nap.c bill.c scores.c \ 72 DAT=larnmaze larnopts larn.help
|
/src/lib/librumpuser/build-aux/ |
missing | 28 echo 1>&2 "Try '$0 --help' for more information" 45 -h|--h|--he|--hel|--help) 53 -h, --help display this help and exit 74 echo 1>&2 "Try '$0 --help' for more information" 89 case $2 in --version|--help) exit $st;; esac
|
/src/sys/external/isc/libsodium/dist/build-aux/ |
missing | 28 echo 1>&2 "Try '$0 --help' for more information" 45 -h|--h|--he|--hel|--help) 53 -h, --help display this help and exit 74 echo 1>&2 "Try '$0 --help' for more information" 89 case $2 in --version|--help) exit $st;; esac
|