Home | History | Annotate | Download | only in utils

Lines Matching refs:total

25   size_t total;
39 p->total = p->available = size;
56 return rb->total - rb->available;
67 if (rb->tail >= (rb->base + rb->total)) rb->tail = rb->base;
80 if (rb->head >= (rb->base + rb->total)) rb->head -= rb->total;
93 uint8_t* b = ((rb->head - rb->base + offset) % rb->total) + rb->base;
100 if (b >= (rb->base + rb->total)) b = rb->base;
112 if (rb->head >= (rb->base + rb->total)) rb->head -= rb->total;