Searched defs:idlen (Results 1 - 10 of 10) sorted by relevance

/external/jpeg/
H A Drdtarga.c337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
351 idlen = UCH(targaheader[0]);
444 while (idlen--) /* Throw away ID field */
/external/qemu/distrib/jpeg-6b/
H A Drdtarga.c337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
351 idlen = UCH(targaheader[0]);
444 while (idlen--) /* Throw away ID field */
/external/openssh/
H A Dschnorr.c66 const u_char *id, u_int idlen)
87 buffer_put_string(&b, id, idlen);
117 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
127 const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p)
177 id, idlen)) == NULL) {
213 * 'idlen' bytes from 'id' will be included in the signature hash as an anti-
220 const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen,
227 x, g_x, id, idlen, &r, &e) != 0)
252 * Signature hash will be salted with 'idlen' bytes from 'id'.
257 const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen,
64 schnorr_hash(const BIGNUM *p, const BIGNUM *q, const BIGNUM *g, const EVP_MD *evp_md, const BIGNUM *g_v, const BIGNUM *g_x, const u_char *id, u_int idlen) argument
125 schnorr_sign(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const EVP_MD *evp_md, const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen, BIGNUM **r_p, BIGNUM **e_p) argument
219 schnorr_sign_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *x, const BIGNUM *g_x, const u_char *id, u_int idlen, u_char **sig, u_int *siglen) argument
256 schnorr_verify(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const EVP_MD *evp_md, const BIGNUM *g_x, const u_char *id, u_int idlen, const BIGNUM *r, const BIGNUM *e) argument
357 schnorr_verify_buf(const BIGNUM *grp_p, const BIGNUM *grp_q, const BIGNUM *grp_g, const BIGNUM *g_x, const u_char *id, u_int idlen, const u_char *sig, u_int siglen) argument
[all...]
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dcms.c1307 int idlen; local
1311 idlen = ASN1_STRING_length(scid);
1313 BIO_dump_indent(out, id, idlen, 4);
/external/openssl/apps/
H A Dcms.c1307 int idlen; local
1311 idlen = ASN1_STRING_length(scid);
1313 BIO_dump_indent(out, id, idlen, 4);
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dt1_lib.c562 long extlen, idlen, itmp; local
565 idlen = 0;
572 idlen += itmp + 2;
584 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
586 if (extlen + idlen > 0xFFF0)
588 s2n(extlen + idlen + 5, ret);
590 s2n(idlen, ret);
/external/ipsec-tools/src/racoon/
H A Doakley.c1918 int idlen, type; local
1927 idlen = iph1->id_p->l - sizeof(*id_b);
1937 if (idlen != name->l) {
1943 error = memcmp(id_b + 1, name->v, idlen);
1948 plogdump(LLV_DEBUG, id_b + 1, idlen);
1949 plogdump(LLV_DEBUG, name->v, idlen);
2014 error = memcmp(id_b + 1, a, idlen);
2020 plogdump(LLV_DEBUG, id_b + 1, idlen);
2021 plogdump(LLV_DEBUG, a, idlen);
2053 if (idlen !
[all...]
/external/openssl/ssl/
H A Dt1_lib.c581 long extlen, idlen, itmp; local
584 idlen = 0;
591 idlen += itmp + 2;
603 if ((long)(limit - ret - 7 - extlen - idlen) < 0) return NULL;
605 if (extlen + idlen > 0xFFF0)
607 s2n(extlen + idlen + 5, ret);
609 s2n(idlen, ret);
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c1876 size_t idlen = os_strlen(pos); local
1877 if (idlen & 1) {
1883 bss->eap_fast_a_id = os_malloc(idlen / 2);
1886 idlen / 2)) {
1892 bss->eap_fast_a_id_len = idlen / 2;
/external/elfutils/src/
H A Dldlex.c2874 size_t idlen = 0; local
2888 && (idlen == 0 || c < '0' || c > '9'))
2894 if (idlen == idmax)
2897 id = memcpy (newp, id, idlen);
2900 id[idlen++] = c;
2905 if (idlen == 6 && strncmp (id, "SHARED", 6) == 0)

Completed in 189 milliseconds