| /mirbsd/src/lib/libncurses/src/ncurses/base/ |
| D | safe_sprintf.c | 82 int used = 0; in _nc_printf_length() local 139 used = 'i'; in _nc_printf_length() 147 used = 'f'; in _nc_printf_length() 151 used = 'i'; in _nc_printf_length() 165 used = 'p'; in _nc_printf_length() 169 used = 'p'; in _nc_printf_length() 173 used = 0; in _nc_printf_length() 182 used = 'p'; in _nc_printf_length() 186 switch (used) { in _nc_printf_length() 217 static size_t used; in _nc_printf_string() local [all …]
|
| /mirbsd/src/lib/libncurses/src/ncurses/tinfo/ |
| D | lib_tgoto.c | 76 size_t used = 0; in tgoto_internal() local 89 if ((used + need) > length) { in tgoto_internal() 90 length += (used + need); in tgoto_internal() 131 result[used++] = *value++; in tgoto_internal() 134 result[used++] = *string; in tgoto_internal() 162 sprintf(result + used, fmt, *value++); in tgoto_internal() 163 used += strlen(result + used); in tgoto_internal() 171 result[used++] = *string; in tgoto_internal() 177 strcpy(result + used, BC); in tgoto_internal() 178 used += strlen(BC); in tgoto_internal() [all …]
|
| /mirbsd/src/lib/libncurses/src/ncurses/trace/ |
| D | varargs.c | 84 ARGTYPE used = atUnknown; in _nc_varargs() local 112 used = atInteger; in _nc_varargs() 120 used = atFloat; in _nc_varargs() 124 used = atInteger; in _nc_varargs() 128 used = atString; in _nc_varargs() 132 used = atPoint; in _nc_varargs() 136 used = atPoint; in _nc_varargs() 144 if (used != atUnknown && parms < MAX_PARMS) { in _nc_varargs() 145 parm[parms++] = used; in _nc_varargs() 147 used = parm[n]; in _nc_varargs() [all …]
|
| D | lib_tracedmp.c | 49 static size_t used = 0; in NCURSES_EXPORT() local 69 if (++width + 1 > (int) used) { in NCURSES_EXPORT() 70 used = 2 * (width + 1); in NCURSES_EXPORT() 71 buf = typeRealloc(char, used, buf); in NCURSES_EXPORT() 153 used = 0; in NCURSES_EXPORT()
|
| /mirbsd/src/sys/dev/ |
| D | midivar.h | 46 unsigned start, used; member 49 #define MIDIBUF_END(buf) (((buf)->start + (buf)->used) & MIDIBUF_MASK) 50 #define MIDIBUF_USED(buf) ((buf)->used) 51 #define MIDIBUF_AVAIL(buf) (MIDIBUF_SIZE - (buf)->used) 52 #define MIDIBUF_ISFULL(buf) ((buf)->used >= MIDIBUF_SIZE) 53 #define MIDIBUF_ISEMPTY(buf) ((buf)->used == 0) 57 (buf)->used++; \ 63 (buf)->used--; \ 69 (buf)->used -= (count); \ 73 (buf)->start = (buf)->used = 0; \
|
| /mirbsd/src/lib/libc/gen/ |
| D | setproctitle.c | 54 int used; in setproctitle() local 58 used = snprintf(buf, MAX_PROCTITLE, "%s: ", __progname); in setproctitle() 59 if (used >= MAX_PROCTITLE) in setproctitle() 60 used = MAX_PROCTITLE - 1; in setproctitle() 61 else if (used < 0) in setproctitle() 62 used = 0; in setproctitle() 63 (void)vsnprintf(buf + used, MAX_PROCTITLE - used, fmt, ap); in setproctitle()
|
| /mirbsd/src/usr.bin/oldroff/mkey/ |
| D | mkey2.c | 55 static int alph, used, prevc; variable 69 alph=used=prevc=eof=0; 78 used=alph=0; 80 for(s=line; (c= *s) && (used<keycount); s++) 83 if (used) putchar('\n'); 88 used=alph=0; 89 while ( (c=getc(f)) != EOF && used<keycount) 91 if (used) putchar('\n'); 177 if (used==0) in chkey() 190 used++; in chkey()
|
| /mirbsd/src/usr.bin/systat/ |
| D | swap.c | 140 int col, div, i, j, avail, used, xsize, free; in showswap() local 160 used = sep->se_inuse; in showswap() 162 free += xsize - used; in showswap() 163 mvwprintw(wnd, i + 1, col, "%9d ", used / div); in showswap() 164 for (j = (100 * used / xsize + 1) / 2; j > 0; j--) in showswap() 170 used = avail - free; in showswap() 172 "Total", hlen, avail / div, used / div); in showswap() 173 for (j = (100 * used / avail + 1) / 2; j > 0; j--) in showswap()
|
| /mirbsd/src/gnu/usr.bin/perl/t/lib/warnings/ |
| D | perl | 4 Name \"%s::%s\" used only once: possible typo 24 Name "main::z" used only once: possible typo at - line 5. 32 Name "main::x" used only once: possible typo at - line 3. 40 Name "main::x" used only once: possible typo at - line 3. 50 Name "main::z" used only once: possible typo at - line 6. 51 Name "main::x" used only once: possible typo at - line 4. 64 Name "main::x" used only once: possible typo at - line 3. 73 Name "main::y" used only once: possible typo at - line 6.
|
| /mirbsd/src/bin/df/ |
| D | df.c | 288 u_int32_t used, inodes; in prtstat() local 292 used = sfsp->f_blocks - sfsp->f_bfree; in prtstat() 293 availblks = sfsp->f_bavail + used; in prtstat() 296 fsbtoblk(used, sfsp->f_bsize, blocksize), in prtstat() 299 availblks == 0 ? 100.0 : (double)used / (double)availblks * 100.0); in prtstat() 302 used = inodes - sfsp->f_ffree; in prtstat() 303 (void)printf(" %7u %7u %5.0f%% ", used, sfsp->f_ffree, in prtstat() 304 inodes == 0 ? 100.0 : (double)used / (double)inodes * 100.0); in prtstat() 350 long used, avail; in posixprint() local 367 used = sfsp->f_blocks - sfsp->f_bfree; in posixprint() [all …]
|
| /mirbsd/src/kern/z/ |
| D | inftrees.c | 51 unsigned used; /* code entries in table used */ local 211 used = 1U << root; /* use root table entries */ 212 mask = used - 1; /* mask for comparing low */ 215 if ((type == LENS && used > ENOUGH_LENS) || 216 (type == DISTS && used > ENOUGH_DISTS)) 283 used += 1U << curr; 284 if ((type == LENS && used > ENOUGH_LENS) || 285 (type == DISTS && used > ENOUGH_DISTS)) 307 *table += used;
|
| /mirbsd/src/usr.bin/finger/ |
| D | finger.c | 206 int dolocal, *used; in userlist() local 208 if (!(used = (int *)calloc((u_int)argc, (u_int)sizeof(int)))) in userlist() 221 used[i] = -1; in userlist() 234 if (used[i] >= 0 && (pw = getpwnam(argv[i]))) { in userlist() 236 used[i] = 1; in userlist() 240 if (used[i] >= 0 && in userlist() 244 used[i] = 1; in userlist() 249 if (!used[i]) in userlist()
|
| /mirbsd/src/gnu/usr.bin/perl/vos/ |
| D | config.pl | 17 $used{$var} = 0; 75 $used{$1}=1; 86 (($used{$1}=1),$define{$1}) : 104 while (($key,$value) = each %used) {
|
| /mirbsd/src/usr.sbin/httpd/icons/ |
| D | README | 23 This might be used to represent PostScript or text layout 27 These can be used to highlight any important items, such as a 31 These can be used as links to go to previous and next areas. 34 These might be used as bullets. 37 This can be used to represent binary files. 43 This can be used as a placeholder or a spacing element. 46 This can be used to repreesnt core files. 49 These icons can be used to represent generic 3D applications and 72 These can be used to scroll up, down, left and right in a 73 listing or may be used to denote items in an outline. [all …]
|
| /mirbsd/src/etc/ppp/ |
| D | ppp.secret.sample | 9 # This file is used to authenticate incoming connections. 13 # found in this file, the passwd(5) database is used. 21 # used as a placeholder if you do not wish to override the IP 24 # If a label is given as the forth field, it is used when reading 26 # can be used as a placeholder if you do not wish to override the 30 # field, these numbers will be used to call back the client if
|
| /mirbsd/src/lib/libssl/src/doc/apps/ |
| D | s_server.pod | 59 the TCP port to listen on for connections. If not specified 4433 is used. 64 is not present a default value will be used. 71 (DSA) key. If not specified then the filename "server.pem" will be used. 76 be used. 82 if they are not specified (no additional certificate and key is used). As 91 if this option is set then no certificate is used. This restricts the 100 a static set of parameters hard coded into the s_server program will be used. 124 also used when building the server certificate chain. 130 is also used in the list of acceptable client CAs passed to the client when 179 this allows the cipher list used by the server to be modified. When [all …]
|
| D | dgst.pod | 33 in hexadecimal form. They can also be used for digital signing and verification. 42 B<hex> format output is used. 93 a file or files containing random data used to seed the random number 102 used. 109 however still widely used. 112 digest must be used. 117 The signing and verify options should only be used if a single file is
|
| D | pkcs12.pod | 46 PFX files) to be created and parsed. PKCS#12 files are used by several 61 This specifies filename of the PKCS#12 file to be parsed. Standard input is used 104 output additional information about the PKCS#12 file structure, algorithms used and 146 This specifies filename to write the PKCS#12 file to. Standard output is used 173 used multiple times to specify names for all certificates in the order they 192 certificate chain of the user certificate. The standard CA store is used 203 these options allow the algorithm used to encrypt the private key and 210 specifies that the private key is to be used for key exchange or just signing. 212 "export grade" software will only allow 512 bit RSA keys to be used for 214 option marks the key for signing only. Signing only keys can be used for [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/t/comp/ |
| D | parser.t | 19 like( $@, qr/syntax error/, 'syntax error, used to dump core' ); 24 'syntax error in string, used to dump core' ); 170 pass('optimized assignment to $[ used to segfault in list context'); 172 pass('optimized assignment to $[ used to segfault in scalar context');
|
| /mirbsd/src/lib/libssl/src/doc/crypto/ |
| D | EVP_BytesToKey.pod | 20 The B<salt> paramter is used as a salt in the derivation: it should point to 21 an 8 byte buffer or NULL if no salt is used. B<data> is a buffer containing 22 B<datal> bytes which is used to derive the keying data. B<count> is the 36 B<MD5> is used then the derivation algorithm is compatible with PKCS#5 v1.5 37 otherwise a non standard extension is used to derive the extra data. 53 The initial bytes are used for the key and the subsequent bytes for
|
| /mirbsd/src/usr.sbin/config/ |
| D | pack.c | 146 locators.used = 0; in pack() 151 parents.used = 0; in pack() 329 samelocs, locators.used); in packlocs() 354 samepv, parents.used)) < 0) in packpvec() 410 ret = locators.used; in addlocs() 411 if ((locators.used = ret + len) > locspace) in addlocs() 465 ret = parents.used; in addpv() 466 if ((parents.used = ret + len) > pvecspace) in addpv() 472 firstend = parents.used - 1; in addpv()
|
| /mirbsd/src/lib/libssl/src/doc/ssl/ |
| D | SSL_get_current_cipher.pod | 25 the description of the actually used cipher of a connection established with 29 name of the currently used cipher. SSL_get_cipher_bits() is a 30 macro to obtain the number of secret/algorithm bits used and 36 SSL_get_current_cipher() returns the cipher actually used or NULL, when
|
| /mirbsd/src/gnu/usr.bin/perl/lib/ |
| D | vars.t | 24 my $e = !(grep /^Name "X::x" used only once: possible typo/, @warns) && 'not '; 26 $e = !(grep /^Name "main::x" used only once: possible typo/, @warns) && 'not '; 28 $e = !(grep /^Name "main::y" used only once: possible typo/, @warns) && 'not '; 30 $e = !(grep /^Name "main::z" used only once: possible typo/, @warns) && 'not ';
|
| /mirbsd/src/lib/libncurses/src/progs/ |
| D | dump_entry.c | 53 size_t used; member 107 size_t want = need + dst->used + 1; in strncpy_DYN() 112 (void) strncpy(dst->text + dst->used, src, need); in strncpy_DYN() 113 dst->used += need; in strncpy_DYN() 114 dst->text[dst->used] = 0; in strncpy_DYN() 121 dst->used = 0; in strcpy_DYN() 136 p->used = 0; in free_DYN() 453 tmpbuf.text[tmpbuf.used - 1] = '\n'; in fmt_complex() 479 tmpbuf.text[tmpbuf.used - 1] = '\n'; in fmt_complex() 491 tmpbuf.text[tmpbuf.used - 1] = '\n'; in fmt_complex() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/Porting/ |
| D | Glossary | 12 This variable defines the extension used for ordinary library files. 17 This variable defines the extension used for executable files. 23 This variable defines the extension used for object files. 28 This variable is set to 'true' if AFS (Andrew File System) is used 36 a hint value or command line option. This will be used in subsequent 49 This variable contains the command which can be used to compute the 51 it safe when used by a process with super-user privileges. 100 This variable is used internally by Configure to determine the 116 This variable is used for the 64-bitness part of $archname. 120 architecture. It is used mainly to construct the default archlib. [all …]
|