HomeSort by relevance Sort by last modified time
    Searched refs:key_length (Results 1 - 25 of 45) sorted by null

1 2

  /external/python/cpython3/Modules/clinic/
_dbmmodule.c.h 52 Py_ssize_clean_t key_length, PyObject *default_value);
59 Py_ssize_clean_t key_length; local
63 &key, &key_length, &default_value)) {
66 return_value = _dbm_dbm_get_impl(self, key, key_length, default_value);
85 Py_ssize_clean_t key_length,
93 Py_ssize_clean_t key_length; local
97 &key, &key_length, &default_value)) {
100 return_value = _dbm_dbm_setdefault_impl(self, key, key_length, default_value);
_gdbmmodule.c.h 143 Py_ssize_clean_t key_length);
150 Py_ssize_clean_t key_length; local
152 if (!PyArg_Parse(arg, "s#:nextkey", &key, &key_length)) {
155 return_value = _gdbm_gdbm_nextkey_impl(self, key, key_length);
  /external/webrtc/talk/session/media/
externalhmac.h 66 int key_length; member in struct:__anon43862
externalhmac.cc 141 state->key_length = key_len;
  /system/keymaster/include/keymaster/km_openssl/
hmac.h 34 bool Init(const uint8_t* key, size_t key_length);
openssl_utils.h 86 keymaster_error_t convert_pkcs8_blob_to_evp(const uint8_t* key_data, size_t key_length,
  /external/curl/lib/
hash.h 33 size_t key_length,
88 size_t Curl_hash_str(void *key, size_t key_length, size_t slots_num);
hash.c 260 size_t Curl_hash_str(void *key, size_t key_length, size_t slots_num)
263 const char *end = key_str + key_length;
  /system/bt/btif/include/
btif_storage.h 223 uint8_t key_length);
227 int key_length);
230 uint8_t key_length);
  /system/keymaster/km_openssl/
openssl_utils.cpp 77 keymaster_error_t convert_pkcs8_blob_to_evp(const uint8_t* key_data, size_t key_length,
80 if (key_data == NULL || key_length <= 0)
84 d2i_PKCS8_PRIV_KEY_INFO(NULL, &key_data, key_length));
  /external/libchrome/crypto/
hmac.h 42 // Initializes this instance using |key| of the length |key_length|. Call Init
52 bool Init(const unsigned char* key, size_t key_length) WARN_UNUSED_RESULT;
hmac.cc 44 bool HMAC::Init(const unsigned char* key, size_t key_length) {
48 key_.assign(key, key + key_length);
  /external/wpa_supplicant_8/src/common/
eapol_common.h 66 /* Note: key_length is unaligned */
67 u8 key_length[2]; member in struct:ieee802_1x_eapol_key
81 * key field (of key_length bytes) contains the key in encrypted form;
82 * if packet body length = 44, key field is absent and key_length
  /system/gatekeeper/include/gatekeeper/
gatekeeper.h 90 const uint8_t *key, uint32_t key_length, const uint8_t *password,
107 const uint8_t *key, uint32_t key_length, const uint8_t *message,
  /hardware/libhardware/include/hardware/
keymaster0.h 68 const uint8_t* key, const size_t key_length,
keymaster1.h 67 const size_t key_length, uint8_t** key_blob, size_t* key_blob_length);
  /external/python/cpython3/Modules/_blake2/impl/
blake2.h 93 uint8_t key_length; /* 2 */ member in struct:__blake2s_param
108 uint8_t key_length; /* 2 */ member in struct:__blake2b_param
  /external/jemalloc/test/include/test/
SFMT.h 78 sfmt_t *init_by_array(uint32_t *init_key, int key_length);
  /external/python/cpython3/Modules/
_dbmmodule.c 286 Py_ssize_clean_t key_length, PyObject *default_value)
293 dbm_key.dsize = key_length;
316 Py_ssize_clean_t key_length,
324 dbm_key.dsize = key_length;
_randommodule.c 29 or init_by_array(init_key, key_length).
170 /* key_length is its length */
172 init_by_array(RandomObject *self, uint32_t init_key[], size_t key_length)
180 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_randommodule.c 29 or init_by_array(init_key, key_length).
169 /* key_length is its length */
171 init_by_array(RandomObject *self, unsigned long init_key[], unsigned long key_length)
179 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_randommodule.c 29 or init_by_array(init_key, key_length).
169 /* key_length is its length */
171 init_by_array(RandomObject *self, unsigned long init_key[], unsigned long key_length)
179 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /external/python/cpython2/Modules/
_randommodule.c 29 or init_by_array(init_key, key_length).
169 /* key_length is its length */
171 init_by_array(RandomObject *self, unsigned long init_key[], unsigned long key_length)
179 k = (N>key_length ? N : key_length);
186 if (j>=key_length) j=0;
  /external/clang/tools/scan-build-py/libear/
ear.c 493 size_t const key_length = strlen(key); local
496 if ((0 == strncmp(*it, key, key_length)) &&
497 (strlen(*it) > key_length) && ('=' == (*it)[key_length]))
502 size_t const env_length = key_length + value_length + 2;
  /external/jemalloc/test/src/
SFMT.c 636 * @param key_length the length of init_key.
638 sfmt_t *init_by_array(uint32_t *init_key, int key_length) {
666 if (key_length + 1 > N32) {
667 count = key_length + 1;
674 r += key_length;
679 for (i = 1, j = 0; (j < count) && (j < key_length); j++) {

Completed in 405 milliseconds

1 2