Searched refs:low_count (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/drivers/staging/android/ion/ |
D | ion_page_pool.c | 52 pool->low_count++; in ion_page_pool_add() 67 BUG_ON(!pool->low_count); in ion_page_pool_remove() 69 pool->low_count--; in ion_page_pool_remove() 85 else if (pool->low_count) in ion_page_pool_alloc() 108 int count = pool->low_count; in ion_page_pool_total() 134 if (pool->low_count) { in ion_page_pool_shrink() 157 pool->low_count = 0; in ion_page_pool_create()
|
D | ion_system_heap.c | 270 pool->low_count, pool->order, in ion_system_heap_debug_show() 271 (PAGE_SIZE << pool->order) * pool->low_count); in ion_system_heap_debug_show()
|
D | ion_priv.h | 371 int low_count; member
|
/linux-4.4.14/drivers/char/ |
D | mem.c | 383 ssize_t low_count, read, sz; in read_kmem() local 389 low_count = count; in read_kmem() 391 low_count = (unsigned long)high_memory - p; in read_kmem() 395 if (p < PAGE_SIZE && low_count > 0) { in read_kmem() 396 sz = size_inside_page(p, low_count); in read_kmem() 402 low_count -= sz; in read_kmem() 406 while (low_count > 0) { in read_kmem() 407 sz = size_inside_page(p, low_count); in read_kmem() 421 low_count -= sz; in read_kmem()
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-mxs.c | 699 uint16_t high_count, low_count, rcv_count, xmit_count; in mxs_i2c_derive_timing() local 743 low_count = DIV_ROUND_CLOSEST(divider * 13, (13 + 6)); in mxs_i2c_derive_timing() 749 low_count = DIV_ROUND_CLOSEST(divider * 47, (47 + 40)); in mxs_i2c_derive_timing() 755 xmit_count = low_count * 3 / 8; in mxs_i2c_derive_timing() 759 speed, clk / divider, divider, low_count, high_count, in mxs_i2c_derive_timing() 762 low_count -= 2; in mxs_i2c_derive_timing() 765 i2c->timing1 = (low_count << 16) | xmit_count; in mxs_i2c_derive_timing()
|