/src/usr.bin/gettext/ |
gettext.c | 61 expand(char *str) function in typeref:typename:bool 218 nflag |= expand(*argv);
|
/src/usr.bin/lastcomm/ |
lastcomm.c | 64 static time_t expand(u_int); 137 t = expand(ab.ac_utime) + expand(ab.ac_stime); 146 delta = expand(ab.ac_etime) / (double)AHZ; 165 expand(u_int t) function in typeref:typename:time_t
|
/src/usr.sbin/tcpdmatch/ |
tcpdmatch.c | 57 static void expand(char *, char *, struct request_info *); 280 static void expand(char *text, char *pattern, struct request_info *request) function in typeref:typename:void 297 expand("client: hostname", "%n", request); 298 expand("client: address ", "%a", request); 299 expand("client: username", "%u", request); 300 expand("server: hostname", "%N", request); 301 expand("server: address ", "%A", request); 302 expand("server: process ", "%d", request);
|
/src/libexec/ld.elf_so/ |
expand.c | 1 /* $NetBSD: expand.c,v 1.8 2025/05/02 23:04:56 riastradh Exp $ */ 33 __RCSID("$NetBSD: expand.c,v 1.8 2025/05/02 23:04:56 riastradh Exp $"); 74 expand(char *buf, const char *execname, size_t what, size_t bl) function in typeref:typename:size_t 140 size_t ls = expand(dp, execname, i, ds);
|
/src/usr.bin/rdist/ |
expand.c | 1 /* $NetBSD: expand.c,v 1.19 2023/08/03 08:03:19 mrg Exp $ */ 35 static char sccsid[] = "@(#)expand.c 8.1 (Berkeley) 6/9/93"; 37 __RCSID("$NetBSD: expand.c,v 1.19 2023/08/03 08:03:19 mrg Exp $"); 54 int which; /* bit mask of types to expand */ 82 * Take a list of names and expand any macros, etc. 91 expand(struct namelist *list, int wh) function in typeref:struct:namelist * 99 printf("expand(%lx, %d)\nlist = ", (long)list, wh); 122 * Walk the name list and expand names into eargv[]; 262 * expand into a list, after searching directory 559 * Expand file names beginning with `~' into th [all...] |
/src/usr.bin/mail/ |
fio.c | 431 expand(const char *name) function in typeref:typename:PUBLIC const char * 440 * The order of evaluation is "%" and "#" expand into constants. 441 * "&" can expand into "+". "+" can expand into shell meta characters. 442 * Shell meta characters expand into constants. 531 if ((cp = value(ENAME_DEAD)) == NULL || (cp = expand(cp)) == NULL) 532 cp = expand("~/dead.letter"); 536 cp = expand(buf);
|
/src/usr.bin/tip/ |
cmds.c | 79 cp = expand(copyname); 114 cp = expand(argv[1]); 273 fnamex = expand(fname); 405 copynamex = expand(argv[0]); 847 * expand a file name if it includes shell meta characters 851 expand(char aname[]) function in typeref:typename:char *
|
/src/usr.bin/bdes/ |
bdes.c | 109 expand(buf, bits1); \ 115 expand(buf, bits1); \ 180 static void expand(Desbuf, char *); 1041 expand(Desbuf from, char *to) function in typeref:typename:void
|
/src/sys/dev/ic/ |
igsfb.c | 570 * Prebuild the table to expand 1bpp->2bpp, with bswapping if necessary. 575 uint16_t *expand = dc->dc_bexpand; local in function:igsfb_init_bit_table 581 expand[i] = htole16(s); 1032 uint16_t *expand = dc->dc_bexpand; local in function:igsfb_convert_cursor_data 1047 is = expand[ip[i]]; /* image: 0 -> 00, 1 -> 01 */ 1048 ms = expand[mp[i]]; /* mask: 0 -> 00, 1 -> 11 */
|
/src/sys/fs/v7fs/ |
v7fs_vnops.c | 638 /* If write region is over filesize, expand. */ 640 ssize_t expand = newsize - sz; local in function:v7fs_write 641 if (expand > 0) { 642 if ((error = v7fs_datablock_expand(fs, inode, expand)))
|
/src/bin/ksh/ |
eval.c | 27 typedef struct Expand { 28 /* int type; */ /* see expand() */ 36 } Expand; 50 static int varsub ARGS((Expand *xp, char *sp, char *word, int *stypep, int *slenp)); 51 static int comsub ARGS((Expand *xp, char *cp)); 65 /* compile and expand word */ 85 * expand arg-list 99 expand(*ap++, &w, f); 105 * expand string 115 expand(cp, &w, f) 161 expand(cp, wp, f) function [all...] |
/src/usr.bin/getent/ |
getent.c | 602 int expand = 1, recurse = 0, pretty = 0; local in function:handlecap 612 expand = 0; 615 expand = 0; 628 csetexpandtc(expand);
|
/src/sys/dev/stbi/ |
stb_image.c | 2334 static int expand(zbuf *z, int n) // need to make room for n bytes function in typeref:typename:int 2371 if (a->zout >= a->zout_end) if (!expand(a, 1)) return 0; 2385 if (a->zout + len > a->zout_end) if (!expand(a, len)) return 0; 2461 if (!expand(a, len)) return 0;
|