Searched refs:base_len (Results 1 - 25 of 27) sorted by relevance

12

/external/bison/lib/
H A Dstripslash.c41 base_lim = base + base_len (base);
H A Dbasename.c36 return xstrndup (name, base_len (name));
39 length = base_len (base);
H A Ddirname.h40 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
H A Dbasename-lgpl.c58 base_len (char const *name) function
H A Dlocalcharset.c139 size_t base_len = strlen (base); local
141 file_name = (char *) malloc (dir_len + add_slash + base_len + 1);
147 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_internal-modexp.c16 int crypto_mod_exp(const u8 *base, size_t base_len, argument
33 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
H A Dcrypto_gnutls.c154 int crypto_mod_exp(const u8 *base, size_t base_len, argument
163 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
H A Dcrypto.h438 * @base_len: Length of base integer in bytes
455 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
H A Dcrypto_libtomcrypt.c696 int crypto_mod_exp(const u8 *base, size_t base_len, argument
706 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK ||
H A Dcrypto_openssl.c470 int crypto_mod_exp(const u8 *base, size_t base_len, argument
483 bn_base = BN_bin2bn(base, base_len, NULL);
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_internal-modexp.c16 int crypto_mod_exp(const u8 *base, size_t base_len, argument
33 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
H A Dcrypto_gnutls.c154 int crypto_mod_exp(const u8 *base, size_t base_len, argument
163 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
H A Dcrypto.h438 * @base_len: Length of base integer in bytes
455 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
H A Dcrypto_libtomcrypt.c696 int crypto_mod_exp(const u8 *base, size_t base_len, argument
706 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK ||
H A Dcrypto_openssl.c470 int crypto_mod_exp(const u8 *base, size_t base_len, argument
483 bn_base = BN_bin2bn(base, base_len, NULL);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_internal-modexp.c16 int crypto_mod_exp(const u8 *base, size_t base_len, argument
33 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 ||
H A Dcrypto_gnutls.c154 int crypto_mod_exp(const u8 *base, size_t base_len, argument
163 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) !=
H A Dcrypto.h438 * @base_len: Length of base integer in bytes
455 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
H A Dcrypto_libtomcrypt.c696 int crypto_mod_exp(const u8 *base, size_t base_len, argument
706 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK ||
H A Dcrypto_openssl.c470 int crypto_mod_exp(const u8 *base, size_t base_len, argument
483 bn_base = BN_bin2bn(base, base_len, NULL);
/external/pdfium/third_party/freetype/src/type1/
H A Dt1parse.c149 parser->base_len = 0;
215 parser->base_len = size;
228 parser->base_len = size;
233 parser->root.limit = parser->root.cursor + parser->base_len;
336 FT_Byte* limit = cur + parser->base_len;
397 limit = parser->base_dict + parser->base_len;
414 parser->root.limit = parser->base_dict + parser->base_len;
449 size = parser->base_len - (FT_ULong)( cur - parser->base_dict );
464 parser->base_len = 0;
H A Dt1parse.h47 /* base_len :: The length in bytes of the top dictionary. */
67 FT_ULong base_len; member in struct:T1_ParserRec_
/external/e2fsprogs/intl/
H A Dlocalcharset.c126 size_t base_len = strlen (base); local
128 file_name = (char *) malloc (dir_len + add_slash + base_len + 1);
134 memcpy (file_name + dir_len + add_slash, base, base_len + 1);
/external/syslinux/gpxe/src/core/
H A Duri.c306 size_t base_len = ( strlen ( base_path ) + 1 ); local
307 char base_path_copy[base_len];
316 memcpy ( base_tmp, base_path, base_len );
/external/libevent/
H A Devdns.c3124 const size_t base_len = strlen(base_name); local
3125 const char need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1;
3134 char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1);
3136 memcpy(newname, base_name, base_len);
3137 if (need_to_append_dot) newname[base_len] = '.';
3138 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len);
3139 newname[base_len + need_to_append_dot + postfix_len] = 0;

Completed in 448 milliseconds

12