Home
last modified time | relevance | path

Searched refs:tmplen (Results 1 - 25 of 59) sorted by relevance

123

/third_party/openssl/demos/cipher/
H A Daeskeywrap.c61 int outlen, tmplen; in aes_wrap_encrypt() local
90 if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aes_wrap_encrypt()
92 outlen += tmplen; in aes_wrap_encrypt()
119 int outlen, tmplen; in aes_wrap_decrypt() local
147 if (!EVP_DecryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aes_wrap_decrypt()
149 outlen += tmplen; in aes_wrap_decrypt()
H A Dariacbc.c60 int outlen, tmplen; in aria_cbc_encrypt() local
89 if (!EVP_EncryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aria_cbc_encrypt()
91 outlen += tmplen; in aria_cbc_encrypt()
118 int outlen, tmplen, rv; in aria_cbc_decrypt() local
145 if (!EVP_DecryptFinal_ex(ctx, outbuf + outlen, &tmplen)) in aria_cbc_decrypt()
147 outlen += tmplen; in aria_cbc_decrypt()
H A Daesgcm.c75 int outlen, tmplen; in aes_gcm_encrypt() local
122 if (!EVP_EncryptFinal_ex(ctx, outbuf, &tmplen)) in aes_gcm_encrypt()
/kernel/linux/linux-5.10/drivers/staging/hievent/
H A Dhiview_hievent.c23 if (tmplen < len) { \
24 tmp += tmplen; \
25 len -= tmplen; \
329 int tmplen; in hievent_fill_payload() local
342 tmplen = snprintf(tmp, len - 1, " --extra "); in hievent_fill_payload()
349 tmplen = snprintf(tmp, len - 1, "%s:", p->key); in hievent_fill_payload()
353 tmplen = 0; in hievent_fill_payload()
361 tmplen = snprintf(tmp, len - 1, "%s;", regular_value); in hievent_fill_payload()
375 int tmplen; in hievent_convert_string() local
390 tmplen in hievent_convert_string()
[all...]
/kernel/linux/linux-6.6/drivers/staging/hievent/
H A Dhiview_hievent.c23 if (tmplen < len) { \
24 tmp += tmplen; \
25 len -= tmplen; \
329 int tmplen; in hievent_fill_payload() local
342 tmplen = snprintf(tmp, len - 1, " --extra "); in hievent_fill_payload()
349 tmplen = snprintf(tmp, len - 1, "%s:", p->key); in hievent_fill_payload()
353 tmplen = 0; in hievent_fill_payload()
361 tmplen = snprintf(tmp, len - 1, "%s;", regular_value); in hievent_fill_payload()
375 int tmplen; in hievent_convert_string() local
390 tmplen in hievent_convert_string()
[all...]
/third_party/node/deps/openssl/openssl/apps/
H A Dasn1parse.c74 long num, tmplen; in asn1parse_main() local
231 tmplen = num; in asn1parse_main()
236 if (j <= 0 || j >= tmplen) { in asn1parse_main()
242 tmplen -= j; in asn1parse_main()
245 at = d2i_ASN1_TYPE(NULL, &ctmpbuf, tmplen); in asn1parse_main()
262 tmplen = at->value.asn1_string->length; in asn1parse_main()
265 num = tmplen; in asn1parse_main()
/third_party/openssl/apps/
H A Dasn1parse.c74 long num, tmplen; in asn1parse_main() local
234 tmplen = num; in asn1parse_main()
239 if (j <= 0 || j >= tmplen) { in asn1parse_main()
245 tmplen -= j; in asn1parse_main()
248 at = d2i_ASN1_TYPE(NULL, &ctmpbuf, tmplen); in asn1parse_main()
265 tmplen = at->value.asn1_string->length; in asn1parse_main()
268 num = tmplen; in asn1parse_main()
/kernel/linux/linux-5.10/fs/nfs/
H A Dnfsroot.c229 const size_t tmplen = sizeof(nfs_export_path); in root_nfs_data() local
231 tmp = kzalloc(tmplen, GFP_KERNEL); in root_nfs_data()
239 if (root_nfs_parse_options(root_server_path, tmp, tmplen)) in root_nfs_data()
245 if (root_nfs_parse_options(cmdline, tmp, tmplen)) in root_nfs_data()
/kernel/linux/linux-6.6/fs/nfs/
H A Dnfsroot.c229 const size_t tmplen = sizeof(nfs_export_path); in root_nfs_data() local
231 tmp = kzalloc(tmplen, GFP_KERNEL); in root_nfs_data()
239 if (root_nfs_parse_options(root_server_path, tmp, tmplen)) in root_nfs_data()
245 if (root_nfs_parse_options(cmdline, tmp, tmplen)) in root_nfs_data()
/kernel/linux/linux-5.10/drivers/mmc/host/
H A Dsdhci-of-dwcmshc.c38 int tmplen, offset; in dwcmshc_adma_write_desc() local
46 tmplen = SZ_128M - offset; in dwcmshc_adma_write_desc()
47 sdhci_adma_write_desc(host, desc, addr, tmplen, cmd); in dwcmshc_adma_write_desc()
49 addr += tmplen; in dwcmshc_adma_write_desc()
50 len -= tmplen; in dwcmshc_adma_write_desc()
H A Dsdhci-of-sparx5.c56 int tmplen, offset; in sdhci_sparx5_adma_write_desc() local
67 tmplen = SZ_128M - offset; in sdhci_sparx5_adma_write_desc()
68 sdhci_adma_write_desc(host, desc, addr, tmplen, cmd); in sdhci_sparx5_adma_write_desc()
70 addr += tmplen; in sdhci_sparx5_adma_write_desc()
71 len -= tmplen; in sdhci_sparx5_adma_write_desc()
/kernel/linux/linux-6.6/drivers/mmc/host/
H A Dsdhci-of-sparx5.c56 int tmplen, offset; in sdhci_sparx5_adma_write_desc() local
67 tmplen = SZ_128M - offset; in sdhci_sparx5_adma_write_desc()
68 sdhci_adma_write_desc(host, desc, addr, tmplen, cmd); in sdhci_sparx5_adma_write_desc()
70 addr += tmplen; in sdhci_sparx5_adma_write_desc()
71 len -= tmplen; in sdhci_sparx5_adma_write_desc()
/third_party/node/deps/base64/base64/test/
H A Dtest_base64.c65 size_t tmplen; in assert_roundtrip() local
72 if (!base64_decode(out, outlen, tmp, &tmplen, flags)) { in assert_roundtrip()
78 if (srclen != tmplen) { in assert_roundtrip()
82 (unsigned long)tmplen in assert_roundtrip()
86 if (strncmp(src, tmp, tmplen) != 0) { in assert_roundtrip()
87 tmp[tmplen] = '\0'; in assert_roundtrip()
/third_party/ffmpeg/libavcodec/
H A Dbmvvideo.c60 int tmplen = src_len; in decode_bmv_frame() local
94 if (!mode || (tmplen == 4)) { in decode_bmv_frame()
128 flag = tmplen != 4; in decode_bmv_frame()
131 tmplen = 4; in decode_bmv_frame()
134 tmplen = 0; in decode_bmv_frame()
/third_party/lwip/src/apps/snmp/
H A Dsnmp_snmpv2_usm.c230 u8_t tmplen = row_oid->len - engineid_len - 2; in usmusertable_get_next_instance() local
231 if (!snmp_oid_in_range(&row_oid->id[name_start], tmplen, usmUserTable_oid_ranges, tmplen)) { in usmusertable_get_next_instance()
236 u8_t tmplen = row_oid->len - engineid_len - 2; in usmusertable_get_next_instance() local
237 if (!snmp_oid_in_range(&row_oid->id[name_start], name_len, usmUserTable_oid_ranges, tmplen)) { in usmusertable_get_next_instance()
/third_party/node/deps/openssl/openssl/crypto/x509/
H A Dx_x509.c228 int length, tmplen;
240 tmplen = i2d_X509_CERT_AUX(a->aux, pp);
241 if (tmplen < 0) {
244 return tmplen;
246 length += tmplen;
/third_party/openssl/crypto/x509/
H A Dx_x509.c228 int length, tmplen;
240 tmplen = i2d_X509_CERT_AUX(a->aux, pp);
241 if (tmplen < 0) {
244 return tmplen;
246 length += tmplen;
/kernel/linux/linux-5.10/drivers/crypto/nx/
H A Dnx-842.c165 unsigned int slen = p->iremain, dlen = p->oremain, tmplen; in compress() local
215 tmplen = dlen; in compress()
218 dlen = tmplen; /* reset dlen, if we're retrying */ in compress()
343 unsigned int dlen = p->oremain, tmplen; in decompress() local
393 tmplen = dlen; in decompress()
396 dlen = tmplen; /* reset dlen, if we're retrying */ in decompress()
/kernel/linux/linux-6.6/drivers/crypto/nx/
H A Dnx-842.c165 unsigned int slen = p->iremain, dlen = p->oremain, tmplen; in compress() local
215 tmplen = dlen; in compress()
218 dlen = tmplen; /* reset dlen, if we're retrying */ in compress()
343 unsigned int dlen = p->oremain, tmplen; in decompress() local
393 tmplen = dlen; in decompress()
396 dlen = tmplen; /* reset dlen, if we're retrying */ in decompress()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_common/
H A Deap_sake_common.c337 size_t tmplen; in eap_sake_compute_mic() local
340 tmplen = serverid_len + 1 + peerid_len + 1 + eap_len; in eap_sake_compute_mic()
341 tmp = os_malloc(tmplen); in eap_sake_compute_mic()
382 _rand, 2 * EAP_SAKE_RAND_LEN, tmp, tmplen, in eap_sake_compute_mic()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_common/
H A Deap_sake_common.c337 size_t tmplen; in eap_sake_compute_mic() local
340 tmplen = serverid_len + 1 + peerid_len + 1 + eap_len; in eap_sake_compute_mic()
341 tmp = os_malloc(tmplen); in eap_sake_compute_mic()
382 _rand, 2 * EAP_SAKE_RAND_LEN, tmp, tmplen, in eap_sake_compute_mic()
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Dtasn_enc.c177 int tmplen; in ASN1_item_ex_i2d() local
182 tmplen = asn1_template_ex_i2d(pseqval, NULL, seqtt, -1, aclass); in ASN1_item_ex_i2d()
183 if (tmplen == -1 || (tmplen > INT_MAX - seqcontlen)) in ASN1_item_ex_i2d()
185 seqcontlen += tmplen; in ASN1_item_ex_i2d()
/third_party/openssl/crypto/asn1/
H A Dtasn_enc.c177 int tmplen; in ASN1_item_ex_i2d() local
182 tmplen = asn1_template_ex_i2d(pseqval, NULL, seqtt, -1, aclass); in ASN1_item_ex_i2d()
183 if (tmplen == -1 || (tmplen > INT_MAX - seqcontlen)) in ASN1_item_ex_i2d()
185 seqcontlen += tmplen; in ASN1_item_ex_i2d()
/kernel/linux/linux-5.10/drivers/net/wireless/
H A Dwl3501_cs.c468 u16 bf, sig_bf, next, tmplen, pktlen; in wl3501_send_pkt() local
502 tmplen = 254 - sizeof(struct wl3501_tx_hdr); in wl3501_send_pkt()
503 pktlen -= tmplen; in wl3501_send_pkt()
505 tmplen = pktlen; in wl3501_send_pkt()
510 pdata, tmplen); in wl3501_send_pkt()
511 pdata += tmplen; in wl3501_send_pkt()
519 tmplen = 254 - sizeof(struct wl3501_tx_hdr) + 6; in wl3501_send_pkt()
520 pktlen -= tmplen; in wl3501_send_pkt()
522 tmplen = pktlen; in wl3501_send_pkt()
527 pdata, tmplen); in wl3501_send_pkt()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/legacy/
H A Dwl3501_cs.c468 u16 bf, sig_bf, next, tmplen, pktlen; in wl3501_send_pkt() local
502 tmplen = 254 - sizeof(struct wl3501_tx_hdr); in wl3501_send_pkt()
503 pktlen -= tmplen; in wl3501_send_pkt()
505 tmplen = pktlen; in wl3501_send_pkt()
510 pdata, tmplen); in wl3501_send_pkt()
511 pdata += tmplen; in wl3501_send_pkt()
519 tmplen = 254 - sizeof(struct wl3501_tx_hdr) + 6; in wl3501_send_pkt()
520 pktlen -= tmplen; in wl3501_send_pkt()
522 tmplen = pktlen; in wl3501_send_pkt()
527 pdata, tmplen); in wl3501_send_pkt()
[all...]

Completed in 15 milliseconds

123