Searched refs:atLeast (Results 1 – 2 of 2) sorted by relevance
40 size_t RingBuffer::makeRoomForProduce(size_t atLeast) { in makeRoomForProduce() argument42 LOG_ALWAYS_FATAL_IF(atLeast >= mCapacity); in makeRoomForProduce()45 const size_t toDrop = (atLeast <= toProduce) in makeRoomForProduce()46 ? 0 : atLeast - toProduce; in makeRoomForProduce()
51 size_t makeRoomForProduce(size_t atLeast);