Searched defs:smallest (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dbufpool.c28 * MCH: BufferPoolPop will now return the smallest buffer in the pool that
136 unsigned int smallest = UINT_MAX; /* size of smallest buffer >= bytes */ local
160 if (b->size < smallest) {
162 smallest = b->size;
168 if (smallest < UINT_MAX) {
169 /* we found the smallest buffer whose size is > bytes */
177 CRASSERT(b->size == smallest);

Completed in 701 milliseconds