Searched refs:low_count (Results 1 - 5 of 5) sorted by relevance
/linux-4.1.27/drivers/staging/android/ion/ |
H A D | ion_page_pool.c | 52 pool->low_count++; ion_page_pool_add() 67 BUG_ON(!pool->low_count); ion_page_pool_remove() 69 pool->low_count--; ion_page_pool_remove() 85 else if (pool->low_count) ion_page_pool_alloc() 108 int count = pool->low_count; ion_page_pool_total() 134 if (pool->low_count) { ion_page_pool_shrink() 156 pool->low_count = 0; ion_page_pool_create()
|
H A D | ion_system_heap.c | 255 pool->low_count, pool->order, ion_system_heap_debug_show() 256 (PAGE_SIZE << pool->order) * pool->low_count); ion_system_heap_debug_show()
|
H A D | ion_priv.h | 354 * @low_count: number of lowmem items in the pool 370 int low_count; member in struct:ion_page_pool
|
/linux-4.1.27/drivers/i2c/busses/ |
H A D | i2c-mxs.c | 699 uint16_t high_count, low_count, rcv_count, xmit_count; mxs_i2c_derive_timing() local 707 * limit the divider, so that min(low_count, high_count) mxs_i2c_derive_timing() 717 * limit the divider, so that max(low_count, high_count) mxs_i2c_derive_timing() 737 * clock cycles to the low_count and 7 cycles to the high_count. mxs_i2c_derive_timing() 743 low_count = DIV_ROUND_CLOSEST(divider * 13, (13 + 6)); mxs_i2c_derive_timing() 749 low_count = DIV_ROUND_CLOSEST(divider * 47, (47 + 40)); mxs_i2c_derive_timing() 755 xmit_count = low_count * 3 / 8; mxs_i2c_derive_timing() 759 speed, clk / divider, divider, low_count, high_count, mxs_i2c_derive_timing() 762 low_count -= 2; mxs_i2c_derive_timing() 765 i2c->timing1 = (low_count << 16) | xmit_count; mxs_i2c_derive_timing()
|
/linux-4.1.27/drivers/char/ |
H A D | mem.c | 383 ssize_t low_count, read, sz; read_kmem() local 389 low_count = count; read_kmem() 391 low_count = (unsigned long)high_memory - p; read_kmem() 395 if (p < PAGE_SIZE && low_count > 0) { read_kmem() 396 sz = size_inside_page(p, low_count); read_kmem() 402 low_count -= sz; read_kmem() 406 while (low_count > 0) { read_kmem() 407 sz = size_inside_page(p, low_count); read_kmem() 421 low_count -= sz; read_kmem()
|
Completed in 156 milliseconds