Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dumac.c320 #define ALLOC_BOUNDARY 16 /* Keep buffers aligned to this */ macro
1014 ctx = (uhash_ctx_t)malloc(sizeof(uhash_ctx)+ALLOC_BOUNDARY);
1016 if (ALLOC_BOUNDARY) {
1017 bytes_to_add = ALLOC_BOUNDARY -
1018 ((ptrdiff_t)ctx & (ALLOC_BOUNDARY -1));
1038 if (ALLOC_BOUNDARY) {
1209 if (ALLOC_BOUNDARY) in umac_delete()
1211 freezero(ctx, sizeof(*ctx) + ALLOC_BOUNDARY); in umac_delete()
1227 octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY); in umac_new()
1229 if (ALLOC_BOUNDARY) { in umac_new()
[all …]