| /netbsd-src/crypto/external/bsd/openssl/dist/providers/common/der/ |
| H A D | der_ecx_key.c | 14 int ossl_DER_w_algorithmIdentifier_X25519(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_X25519() argument 16 return ossl_DER_w_begin_sequence(pkt, cont) in ossl_DER_w_algorithmIdentifier_X25519() 20 && ossl_DER_w_end_sequence(pkt, cont); in ossl_DER_w_algorithmIdentifier_X25519() 23 int ossl_DER_w_algorithmIdentifier_X448(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_X448() argument 25 return ossl_DER_w_begin_sequence(pkt, cont) in ossl_DER_w_algorithmIdentifier_X448() 29 && ossl_DER_w_end_sequence(pkt, cont); in ossl_DER_w_algorithmIdentifier_X448() 32 int ossl_DER_w_algorithmIdentifier_ED25519(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_ED25519() argument 34 return ossl_DER_w_begin_sequence(pkt, cont) in ossl_DER_w_algorithmIdentifier_ED25519() 38 && ossl_DER_w_end_sequence(pkt, cont); in ossl_DER_w_algorithmIdentifier_ED25519() 41 int ossl_DER_w_algorithmIdentifier_ED448(WPACKET *pkt, int cont, ECX_KEY *ec) in ossl_DER_w_algorithmIdentifier_ED448() argument [all …]
|
| H A D | der_ec_key.c | 14 int ossl_DER_w_algorithmIdentifier_EC(WPACKET *pkt, int cont, EC_KEY *ec) in ossl_DER_w_algorithmIdentifier_EC() argument 16 return ossl_DER_w_begin_sequence(pkt, cont) in ossl_DER_w_algorithmIdentifier_EC() 20 && ossl_DER_w_end_sequence(pkt, cont); in ossl_DER_w_algorithmIdentifier_EC()
|
| H A D | der_sm2_key.c | 15 int ossl_DER_w_algorithmIdentifier_SM2(WPACKET *pkt, int cont, EC_KEY *ec) in ossl_DER_w_algorithmIdentifier_SM2() argument 17 return ossl_DER_w_begin_sequence(pkt, cont) in ossl_DER_w_algorithmIdentifier_SM2() 22 && ossl_DER_w_end_sequence(pkt, cont); in ossl_DER_w_algorithmIdentifier_SM2()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/ |
| H A D | x_long.c | 24 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, 26 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 85 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in long_i2c() argument 117 if (cont != NULL) { in long_i2c() 119 *cont++ = (unsigned char)sign; in long_i2c() 121 cont[i] = (unsigned char)(utmp ^ sign); in long_i2c() 128 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in long_c2i() argument 141 switch (cont[0]) { in long_c2i() 143 cont++; in long_c2i() 148 cont++; in long_c2i() [all …]
|
| H A D | x_bignum.c | 28 static int bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, 30 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 32 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 94 static int bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in bn_i2c() argument 107 if (cont) { in bn_i2c() 109 *cont++ = 0; in bn_i2c() 110 BN_bn2bin(bn, cont); in bn_i2c() 115 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in bn_c2i() argument 123 if (!BN_bin2bn(cont, len, bn)) { in bn_c2i() 130 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in bn_secure_c2i() argument [all …]
|
| H A D | x_int64.c | 49 static int uint64_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint64_i2c() argument 70 return ossl_i2c_uint64_int(cont, utmp, neg); in uint64_i2c() 73 static int uint64_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint64_c2i() argument 94 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len)) in uint64_c2i() 144 static int uint32_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint32_i2c() argument 165 return ossl_i2c_uint64_int(cont, (uint64_t)utmp, neg); in uint32_i2c() 175 static int uint32_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint32_c2i() argument 197 if (!ossl_c2i_uint64_int(&utmp, &neg, &cont, len)) in uint32_c2i()
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/ |
| H A D | x_long.c | 28 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, 30 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 89 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, 121 if (cont != NULL) { 123 *cont++ = (unsigned char)sign; 125 cont[i] = (unsigned char)(utmp ^ sign); 132 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 145 switch (cont[0]) { 147 cont++; 152 cont++; [all …]
|
| H A D | x_bignum.c | 28 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, 30 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 32 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, 94 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, in bn_i2c() argument 107 if (cont) { in bn_i2c() 109 *cont++ = 0; in bn_i2c() 110 BN_bn2bin(bn, cont); in bn_i2c() 115 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in bn_c2i() argument 123 if (!BN_bin2bn(cont, len, bn)) { in bn_c2i() 130 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in bn_secure_c2i() argument [all …]
|
| H A D | x_int64.c | 49 static int uint64_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint64_i2c() argument 70 return i2c_uint64_int(cont, utmp, neg); in uint64_i2c() 73 static int uint64_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint64_c2i() argument 94 if (!c2i_uint64_int(&utmp, &neg, &cont, len)) in uint64_c2i() 144 static int uint32_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint32_i2c() argument 165 return i2c_uint64_int(cont, (uint64_t)utmp, neg); in uint32_i2c() 175 static int uint32_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint32_c2i() argument 197 if (!c2i_uint64_int(&utmp, &neg, &cont, len)) in uint32_c2i()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| H A D | ir_test.go | 140 cont := NewContext() 141 defer cont.Dispose() 143 int_pointer := PointerType(cont.Int32Type(), 0) 148 if int_inner[0] != cont.Int32Type() { 152 st_pointer := cont.StructType([]Type{cont.Int32Type(), cont.Int8Type()}, false) 157 if st_inner[0] != cont.Int32Type() { 160 if st_inner[1] != cont.Int8Type() {
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/cms/ |
| H A D | cms_smime.c | 104 BIO *cont; in CMS_data() local 110 cont = CMS_dataInit(cms, NULL); in CMS_data() 111 if (!cont) in CMS_data() 113 r = cms_copy_content(out, cont, flags); in CMS_data() 114 BIO_free_all(cont); in CMS_data() 136 BIO *cont; in CMS_digest_verify() local 146 cont = CMS_dataInit(cms, dcont); in CMS_digest_verify() 147 if (!cont) in CMS_digest_verify() 149 r = cms_copy_content(out, cont, flags); in CMS_digest_verify() 151 r = cms_DigestedData_do_final(cms, cont, 1); in CMS_digest_verify() [all …]
|
| H A D | cms_lib.c | 58 BIO *cmsbio, *cont; in CMS_dataInit() local 60 cont = icont; in CMS_dataInit() 62 cont = cms_content_bio(cms); in CMS_dataInit() 63 if (!cont) { in CMS_dataInit() 70 return cont; in CMS_dataInit() 99 return BIO_push(cmsbio, cont); in CMS_dataInit() 103 BIO_free(cont); in CMS_dataInit() 116 unsigned char *cont; in CMS_dataFinal() local 123 contlen = BIO_get_mem_data(mbio, &cont); in CMS_dataFinal() 127 ASN1_STRING_set0(*pos, cont, contlen); in CMS_dataFinal()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/ |
| H A D | hardware.d | 906 ControlState cont; 909 "fstcw %0" : "=m" (cont); 911 return cont; 915 ControlState cont; 918 "mrs %0, FPCR;" : "=r" (cont); 920 return cont; 924 ControlState cont; 926 cont = 0; 931 "vmrs %0, FPSCR" : "=r" (cont); 934 return cont; [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/binutils/ |
| H A D | demanguse.c | 36 const char *cont = ""; in display_demangler_styles() local 45 fprintf (stream, "%.1s\n", cont); in display_demangler_styles() 47 cont = ""; in display_demangler_styles() 49 col += fprintf (stream, "%s\"%s\"", cont, info->demangling_style_name); in display_demangler_styles() 50 cont = ", "; in display_demangler_styles()
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | demanguse.c | 36 const char *cont = ""; in display_demangler_styles() local 45 fprintf (stream, "%.1s\n", cont); in display_demangler_styles() 47 cont = ""; in display_demangler_styles() 49 col += fprintf (stream, "%s\"%s\"", cont, info->demangling_style_name); in display_demangler_styles() 50 cont = ", "; in display_demangler_styles()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/cms/ |
| H A D | cms_smime.c | 106 BIO *cont; in CMS_data() local 113 cont = CMS_dataInit(cms, NULL); in CMS_data() 114 if (cont == NULL) in CMS_data() 116 r = cms_copy_content(out, cont, flags); in CMS_data() 117 BIO_free_all(cont); in CMS_data() 144 BIO *cont; in CMS_digest_verify() local 155 cont = CMS_dataInit(cms, dcont); in CMS_digest_verify() 156 if (cont == NULL) in CMS_digest_verify() 159 r = cms_copy_content(out, cont, flags); in CMS_digest_verify() 161 r = ossl_cms_DigestedData_do_final(cms, cont, 1); in CMS_digest_verify() [all …]
|
| /netbsd-src/usr.bin/vacation/ |
| H A D | vacation.c | 312 int tome, cont; in readheaders() local 315 cont = tome = 0; in readheaders() 321 cont = 0; in readheaders() 329 cont = 0; in readheaders() 348 cont = 1; in readheaders() 353 cont = 1; in readheaders() 359 cont = 1; in readheaders() 363 cont = 0; in readheaders() 379 cont = 1; in readheaders() 382 cont = 0; in readheaders() [all …]
|
| /netbsd-src/tests/usr.bin/gdb/ |
| H A D | t_regress.sh | 42 cont 43 cont 44 cont 45 cont 46 cont
|
| /netbsd-src/crypto/external/bsd/openssl/lib/libdefault/prov/ |
| H A D | der_ecx.h | 47 int ossl_DER_w_algorithmIdentifier_ED25519(WPACKET *pkt, int cont, ECX_KEY *ec); 48 int ossl_DER_w_algorithmIdentifier_ED448(WPACKET *pkt, int cont, ECX_KEY *ec); 49 int ossl_DER_w_algorithmIdentifier_X25519(WPACKET *pkt, int cont, ECX_KEY *ec); 50 int ossl_DER_w_algorithmIdentifier_X448(WPACKET *pkt, int cont, ECX_KEY *ec);
|
| /netbsd-src/sys/fs/cd9660/ |
| H A D | cd9660_rrip.c | 119 int len, wlen, cont; in cd9660_rrip_slink() local 128 cont = ana->cont; in cd9660_rrip_slink() 138 if (!cont) { in cd9660_rrip_slink() 144 cont = 0; in cd9660_rrip_slink() 184 cont = 1; in cd9660_rrip_slink() 199 ana->cont = 1; in cd9660_rrip_slink() 212 ana->cont = cont; in cd9660_rrip_slink() 230 int cont; in cd9660_rrip_altname() local 234 cont = 0; in cd9660_rrip_altname() 254 cont = 1; in cd9660_rrip_altname() [all …]
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn20/ |
| H A D | amdgpu_dcn20_stream_encoder.c | 59 uint32_t cont, send, line; in enc2_update_hdmi_info_packet() local 69 cont = 1; in enc2_update_hdmi_info_packet() 75 cont = 0; in enc2_update_hdmi_info_packet() 86 HDMI_GENERIC0_CONT, cont, in enc2_update_hdmi_info_packet() 93 HDMI_GENERIC1_CONT, cont, in enc2_update_hdmi_info_packet() 100 HDMI_GENERIC2_CONT, cont, in enc2_update_hdmi_info_packet() 107 HDMI_GENERIC3_CONT, cont, in enc2_update_hdmi_info_packet() 114 HDMI_GENERIC4_CONT, cont, in enc2_update_hdmi_info_packet() 121 HDMI_GENERIC5_CONT, cont, in enc2_update_hdmi_info_packet() 128 HDMI_GENERIC6_CONT, cont, in enc2_update_hdmi_info_packet() [all …]
|
| /netbsd-src/external/bsd/unbound/dist/testdata/ |
| H A D | common.sh | 126 local cont 130 cont=1 132 while test "$cont" = 1; do 150 cont=0 153 cont=1;
|
| /netbsd-src/external/bsd/libfido2/dist/src/ |
| H A D | io.c | 25 } cont; in PACKED_TYPE() 105 if (d->tx_len - CTAP_CONT_HEADER_LEN > sizeof(fp->body.cont.data)) in tx_frame() 111 fp->body.cont.seq = seq; in tx_frame() 113 memcpy(&fp->body.cont.data, buf, count); in tx_frame() 241 cont_data_len > sizeof(f.body.cont.data)) in rx() 274 f.body.cont.seq = (uint8_t)seq; in rx() 277 if (f.cid != d->cid || f.body.cont.seq != seq) { in rx() 279 __func__, f.cid, d->cid, f.body.cont.seq, seq); in rx() 284 memcpy(buf + r, f.body.cont.data, cont_data_len); in rx() 287 memcpy(buf + r, f.body.cont.data, payload_len - r); in rx()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/providers/common/include/prov/ |
| H A D | der_ecx.h.in | 22 int ossl_DER_w_algorithmIdentifier_ED25519(WPACKET *pkt, int cont, ECX_KEY *ec); 23 int ossl_DER_w_algorithmIdentifier_ED448(WPACKET *pkt, int cont, ECX_KEY *ec); 24 int ossl_DER_w_algorithmIdentifier_X25519(WPACKET *pkt, int cont, ECX_KEY *ec); 25 int ossl_DER_w_algorithmIdentifier_X448(WPACKET *pkt, int cont, ECX_KEY *ec);
|
| /netbsd-src/games/phantasia/ |
| H A D | map.c | 16 cont(-1400, 1000); in main() 17 cont(600, 1000); in main() 18 cont(600, -1000); in main() 19 cont(-1400, -1000); in main()
|