Home
last modified time | relevance | path

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

/device/generic/goldfish/audio/
Dring_buffer.cpp40 size_t RingBuffer::makeRoomForProduce(size_t atLeast) { in makeRoomForProduce() argument
42 LOG_ALWAYS_FATAL_IF(atLeast >= mCapacity); in makeRoomForProduce()
45 const size_t toDrop = (atLeast <= toProduce) in makeRoomForProduce()
46 ? 0 : atLeast - toProduce; in makeRoomForProduce()
Dring_buffer.h51 size_t makeRoomForProduce(size_t atLeast);