Searched refs:tmp (Results 1 – 4 of 4) sorted by relevance
/crypt/ |
A D | md5-crypt.c | 115 char *tmp; in __md5_crypt_r() local 118 tmp = (char *) alloca (key_len + __alignof__ (md5_uint32)); in __md5_crypt_r() 121 free_key = tmp = (char *) malloc (key_len + __alignof__ (md5_uint32)); in __md5_crypt_r() 122 if (tmp == NULL) in __md5_crypt_r() 127 memcpy (tmp + __alignof__ (md5_uint32) in __md5_crypt_r() 128 - (tmp - (char *) 0) % __alignof__ (md5_uint32), in __md5_crypt_r() 135 char *tmp = (char *) alloca (salt_len + __alignof__ (md5_uint32)); in __md5_crypt_r() local 137 memcpy (tmp + __alignof__ (md5_uint32) in __md5_crypt_r() 138 - (tmp - (char *) 0) % __alignof__ (md5_uint32), in __md5_crypt_r()
|
A D | sha256-crypt.c | 147 char *tmp; in __sha256_crypt_r() local 150 tmp = alloca_account (key_len + __alignof__ (uint32_t), alloca_used); in __sha256_crypt_r() 153 free_key = tmp = (char *) malloc (key_len + __alignof__ (uint32_t)); in __sha256_crypt_r() 154 if (tmp == NULL) in __sha256_crypt_r() 159 memcpy (tmp + __alignof__ (uint32_t) in __sha256_crypt_r() 160 - (tmp - (char *) 0) % __alignof__ (uint32_t), in __sha256_crypt_r() 167 char *tmp = (char *) alloca (salt_len + __alignof__ (uint32_t)); in __sha256_crypt_r() local 170 memcpy (tmp + __alignof__ (uint32_t) in __sha256_crypt_r() 171 - (tmp - (char *) 0) % __alignof__ (uint32_t), in __sha256_crypt_r()
|
A D | sha512-crypt.c | 147 char *tmp; in __sha512_crypt_r() local 150 tmp = alloca_account (key_len + __alignof__ (uint64_t), alloca_used); in __sha512_crypt_r() 153 free_key = tmp = (char *) malloc (key_len + __alignof__ (uint64_t)); in __sha512_crypt_r() 154 if (tmp == NULL) in __sha512_crypt_r() 159 memcpy (tmp + __alignof__ (uint64_t) in __sha512_crypt_r() 160 - (tmp - (char *) 0) % __alignof__ (uint64_t), in __sha512_crypt_r() 167 char *tmp = (char *) alloca (salt_len + __alignof__ (uint64_t)); in __sha512_crypt_r() local 169 memcpy (tmp + __alignof__ (uint64_t) in __sha512_crypt_r() 170 - (tmp - (char *) 0) % __alignof__ (uint64_t), in __sha512_crypt_r()
|
A D | crypt_util.c | 269 ufc_long i, j, t, tmp; in __libc_lock_define_initialized() local 272 tmp=0; in __libc_lock_define_initialized() 275 tmp|=(a[t/24] & BITMASK[t % 24])?bytemask[j]:0; in __libc_lock_define_initialized() 277 (void)printf("%02lx ", tmp); in __libc_lock_define_initialized()
|
Completed in 12 milliseconds