| /mirbsd/src/lib/libssl/src/crypto/asn1/ |
| D | x_long.c | 71 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it); 72 static int long_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, co… 102 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in long_i2c() argument 128 if(cont) { in long_i2c() 129 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0; in long_i2c() 131 cont[i] = (unsigned char)(utmp & 0xff); in long_i2c() 132 if(ltmp < 0) cont[i] ^= 0xff; in long_i2c() 139 static int long_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, co… in long_c2i() argument 150 if(len && (cont[0] & 0x80)) neg = 1; in long_c2i() 155 if(neg) utmp |= cont[i] ^ 0xff; in long_c2i() [all …]
|
| D | x_bignum.c | 74 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it); 75 static int bn_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, cons… 109 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in bn_i2c() argument 118 if(cont) { in bn_i2c() 119 if(pad) *cont++ = 0; in bn_i2c() 120 BN_bn2bin(bn, cont); in bn_i2c() 125 static int bn_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, cons… in bn_c2i() argument 130 if(!BN_bin2bn(cont, len, bn)) { in bn_c2i()
|
| D | tasn_dec.c | 592 unsigned char *cont = NULL; in asn1_d2i_ex_primitive() local 649 cont = *in; in asn1_d2i_ex_primitive() 653 len = p - cont; in asn1_d2i_ex_primitive() 655 len = p - cont + plen; in asn1_d2i_ex_primitive() 681 cont = (unsigned char *)buf.data; in asn1_d2i_ex_primitive() 684 cont = p; in asn1_d2i_ex_primitive() 690 if(!asn1_ex_c2i(pval, cont, len, utype, &free_cont, it)) goto err; in asn1_d2i_ex_primitive() 701 int asn1_ex_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, const … in asn1_ex_c2i() argument 710 if(pf && pf->prim_c2i) return pf->prim_c2i(pval, cont, len, utype, free_cont, it); in asn1_ex_c2i() 723 if(!c2i_ASN1_OBJECT((ASN1_OBJECT **)pval, &cont, len)) goto err; in asn1_ex_c2i() [all …]
|
| D | tasn_enc.c | 408 unsigned char *cont, c; in asn1_ex_i2c() local 436 cont = otmp->data; in asn1_ex_i2c() 441 cont = NULL; in asn1_ex_i2c() 455 cont = &c; in asn1_ex_i2c() 492 cont = strtmp->data; in asn1_ex_i2c() 498 if(cout && len) memcpy(cout, cont, len); in asn1_ex_i2c()
|
| /mirbsd/src/usr.bin/ssh/ |
| D | roaming_dummy.c | 42 int *cont __attribute__((__unused__))) in roaming_write() argument 49 int *cont __attribute__((__unused__))) in roaming_read() argument 51 if (cont) in roaming_read() 52 *cont = 0; in roaming_read()
|
| D | roaming_common.c | 139 int *cont __attribute__((__unused__))) in roaming_write() argument 156 int *cont __attribute__((__unused__))) in roaming_read() argument
|
| /mirbsd/src/gnu/usr.bin/perl/lib/CPAN/ |
| D | FirstTime.pm | 633 my (@cont, $cont, %cont, @countries, @urls, %seen); 637 @cont = picklist([sort keys %all], 644 foreach $cont (@cont) { 645 my @c = sort keys %{$all{$cont}}; 646 @cont{@c} = map ($cont, 0..$#c); 647 @c = map ("$_ ($cont)", @c) if @cont > 1; 661 my @u = sort keys %{$all{$cont{$bare_country}}{$bare_country}};
|
| /mirbsd/src/usr.bin/make/ |
| D | varname.c | 36 VarName_Get(const char *start, struct Name *name, SymTable *ctxt, bool err, const char *(*cont)(con… in VarName_Get() 41 p = cont(start); in VarName_Get() 45 p = cont(p); in VarName_Get() 66 p = cont(start); in VarName_Get()
|
| /mirbsd/src/gnu/usr.bin/perl/ext/IO/t/ |
| D | io_file.t | 40 my $cont = do { local $/; <$fh> }; 41 unlike( $cont, qr/$Expect/, " Content match fails without binmode" ); 51 my $cont = do { local $/; <$fh> }; 52 like( $cont, qr/$Expect/, " Content match passes with binmode" );
|
| /mirbsd/src/sys/isofs/cd9660/ |
| D | cd9660_rrip.c | 124 int len, wlen, cont; local 132 cont = ana->cont; 141 if (!cont) { 147 cont = 0; 187 cont = 1; 202 ana->cont = 1; 215 ana->cont = cont; 235 int cont; local 239 cont = 0; 259 cont = 1; [all …]
|
| /mirbsd/src/lib/libssl/src/crypto/evp/ |
| D | bio_ok.c | 160 int cont; /* <= 0 when finished */ member 197 ctx->cont=1; in ok_new() 284 if (ctx->cont <= 0) break; in ok_read() 315 ctx->cont= 0; in ok_write() 368 ctx->cont=1; in ok_ctrl() 375 if (ctx->cont <= 0) in ok_ctrl() 403 ctx->cont=(int)ret; in ok_ctrl() 414 ret=(long)ctx->cont; in ok_ctrl() 522 ctx->cont= 0; in sig_in() 572 ctx->cont= 0; in block_in()
|
| D | bio_enc.c | 80 int cont; /* <= 0 when finished */ member 118 ctx->cont=1; in enc_new() 175 if (ctx->cont <= 0) break; in enc_read() 186 ctx->cont=i; in enc_read() 204 ctx->cont=1; in enc_read() 228 return((ret == 0)?ctx->cont:ret); in enc_read() 306 if (ctx->cont <= 0) in enc_ctrl()
|
| D | bio_b64.c | 90 int cont; /* <= 0 when finished */ member 125 ctx->cont=1; in b64_new() 190 if (ctx->cont <= 0) in b64_read() 203 ctx->cont=i; in b64_read() 296 else if ((i < B64_BLOCK_SIZE) && (ctx->cont > 0)) in b64_read() 480 ctx->cont=1; in b64_ctrl() 486 if (ctx->cont <= 0) in b64_ctrl()
|
| /mirbsd/src/usr.bin/mail/ |
| D | collect.c | 112 cont: in collect() 141 goto cont; in collect() 201 goto cont; in collect() 221 goto cont; in collect() 323 goto cont; in collect() 343 goto cont; in collect() 351 goto cont; in collect() 361 goto cont; in collect()
|
| /mirbsd/src/gnu/usr.bin/cvs/src/ |
| D | myndbm.c | 220 int cont; in mydbm_load_file() local 227 cont = 0; in mydbm_load_file() 253 if (!cont) in mydbm_load_file() 266 cont = 1; in mydbm_load_file() 272 cont = 0; in mydbm_load_file() 290 if (!cont) in mydbm_load_file()
|
| D | mkmodules.c | 922 int len, cont, err = 0; in write_dbmfile() local 927 for (cont = 0; fgets (line, sizeof (line), fp) != NULL;) in write_dbmfile() 938 if (cont) in write_dbmfile() 952 cont = 1; in write_dbmfile() 957 cont = 0; in write_dbmfile() 971 if (!cont) in write_dbmfile()
|
| /mirbsd/src/lib/libssl/src/crypto/pem/ |
| D | pkcs7.lis | 3 21 13:d=0 hl=2 l= 0 cons: cont: 00 # explicit tag 10 21 37:d=0 hl=2 l= 0 cons: cont: 00 # cert tag 14 21 1118:d=0 hl=2 l= 0 cons: cont: 01 # crl tag
|
| /mirbsd/src/lib/libc/string/ |
| D | strspn.c | 45 cont: in strspn() 49 goto cont; in strspn()
|
| D | wcstok.c | 46 cont: in wcstok() 50 goto cont; in wcstok()
|
| D | strtok.c | 54 cont: in strtok_r() 58 goto cont; in strtok_r()
|
| /mirbsd/src/usr.sbin/httpd/src/helpers/ |
| D | dsp5tocvs.pl | 20 $cont = <$srcfl>; 21 $src = $src . $cont;
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | reloc.c | 617 bfd_reloc_status_type cont; in bfd_perform_relocation() local 618 cont = howto->special_function (abfd, reloc_entry, symbol, data, in bfd_perform_relocation() 621 if (cont != bfd_reloc_continue) in bfd_perform_relocation() 622 return cont; in bfd_perform_relocation() 999 bfd_reloc_status_type cont; in bfd_install_relocation() local 1003 cont = howto->special_function (abfd, reloc_entry, symbol, in bfd_install_relocation() 1008 if (cont != bfd_reloc_continue) in bfd_install_relocation() 1009 return cont; in bfd_install_relocation()
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | perly.y | 100 %type <opval> formname subname proto subbody cont my_scalar 245 cont : /* NULL */ 252 loop : label WHILE '(' remember mtexpr ')' mblock cont 258 | label UNTIL '(' remember miexpr ')' mblock cont 264 | label FOR MY remember my_scalar '(' mexpr ')' mblock cont 267 | label FOR scalar '(' remember mexpr ')' mblock cont 271 | label FOR '(' remember mexpr ')' mblock cont 290 | label block cont /* a block is a loop that happens once */
|
| /mirbsd/src/gnu/usr.sbin/sendmail/vacation/ |
| D | vacation.c | 505 bool tome, cont; local 510 cont = false; 518 cont = false; 566 cont = false; 587 cont = true; 594 cont = true; 598 if (!isascii(*buf) || !isspace(*buf) || !cont || tome) 600 cont = false;
|
| /mirbsd/src/usr.bin/pmdb/ |
| D | pmdb.c | 177 int cont; in main() local 209 cont = 0; in main() 211 cont = bkpt_check(&ps); in main() 212 process_signal(&ps, signum, stopped, cont); in main()
|