Home
last modified time | relevance | path

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

/optee_os/lib/libutils/isoc/
H A Dbget.c514 #define BH(p) ((struct bhead *) (p)) macro
732 struct bhead *b_alloc = BH((char *)b + pos);
733 struct bhead *b_next = BH((char *)b + b->bh.bsize);
795 assert(BH((char *)b + b->bh.bsize) == b_next);
904 b = BH(buf - sizeof(struct bhead));
942 b = BH(((char *) buf) - sizeof(struct bhead));
1022 assert(BH((char *) b - b->bh.bsize)->prevfree == 0);
1046 assert(BH((char *) b - b->bh.prevfree)->bsize == b->bh.prevfree);
1081 assert(BH((char *) bn + bn->bh.bsize)->prevfree == bn->bh.bsize);
1124 assert(BH((char *) b + b->bh.bsize)->bsize == ESent);
[all …]
H A Dbget_malloc.c197 b = BH(((char *)buf) - sizeof(struct bhead)); in bget_buf_size()