Home
last modified time | relevance | path

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

/openbmc/fb-ipmi-oem/src/
H A Dusb-dbg.cpp123 idx_head = idx_tail = 0; in init()
172 if (buf[idx_head] == LINE_DELIMITER) in append()
174 idx_head = (idx_head + 1) % max_size; in append()
224 idx_head = (idx_head + max_size - 1) % max_size; in insert()
226 buf[idx_head] = *ptr; in insert()
262 idx = idx_head; in getPage()
296 if ((idx_tail + 1) % max_size == idx_head) in isFull()
/openbmc/fb-ipmi-oem/include/
H A Dusb-dbg.hpp95 uint16_t idx_head, idx_tail; member