Home
last modified time | relevance | path

Searched refs:base_len (Results 1 – 12 of 12) sorted by relevance

/NextBSD/contrib/gcclibs/libiberty/
HDmake-temp-file.c152 int base_len, suffix_len; in make_temp_file() local
158 base_len = strlen (base); in make_temp_file()
161 temp_filename = XNEWVEC (char, base_len in make_temp_file()
165 strcpy (temp_filename + base_len, TEMP_FILE); in make_temp_file()
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix); in make_temp_file()
/NextBSD/contrib/binutils/libiberty/
HDmake-temp-file.c152 int base_len, suffix_len; in make_temp_file() local
158 base_len = strlen (base); in make_temp_file()
161 temp_filename = XNEWVEC (char, base_len in make_temp_file()
165 strcpy (temp_filename + base_len, TEMP_FILE); in make_temp_file()
166 strcpy (temp_filename + base_len + TEMP_FILE_LEN, suffix); in make_temp_file()
/NextBSD/contrib/wpa/src/crypto/
HDcrypto_internal-modexp.c16 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
33 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 || in crypto_mod_exp()
HDcrypto_gnutls.c154 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
163 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) != in crypto_mod_exp()
HDcrypto_libtomcrypt.c696 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
706 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK || in crypto_mod_exp()
HDcrypto.h432 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
HDcrypto_openssl.c389 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument
402 bn_base = BN_bin2bn(base, base_len, NULL); in crypto_mod_exp()
/NextBSD/contrib/diff/lib/
HDdirname.h38 size_t base_len (char const *path);
HDbasename.c71 base_len (char const *name) in base_len() function
/NextBSD/release/picobsd/tinyware/ns/
HDns.c261 static unsigned base_len = 0 ; in print_routing() local
331 if (base_stats == NULL || i != base_len) { in print_routing()
333 base_len = i ; in print_routing()
/NextBSD/contrib/ntp/sntp/libevent/
HDevdns.c3179 const size_t base_len = strlen(base_name); in search_make_new() local
3180 const char need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; in search_make_new()
3189 char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1); in search_make_new()
3191 memcpy(newname, base_name, base_len); in search_make_new()
3192 if (need_to_append_dot) newname[base_len] = '.'; in search_make_new()
3193 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); in search_make_new()
3194 newname[base_len + need_to_append_dot + postfix_len] = 0; in search_make_new()
/NextBSD/contrib/gcc/
HDprotoize.c1940 size_t base_len = strlen (base_source_filename); in process_aux_info_file() local
1941 char * aux_info_filename = alloca (base_len + strlen (aux_info_suffix) + 1); in process_aux_info_file()
2167 aux_info_relocated_name = xmalloc (base_len + (p-invocation_filename)); in process_aux_info_file()