Lines Matching full:back
101 if ((t->back - t->front) > t->size) { in rga_mmu_buf_get_try()
102 if (t->front + size > t->back - t->size) { in rga_mmu_buf_get_try()
103 pr_info("front %d, back %d dsize %d size %d", in rga_mmu_buf_get_try()
104 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
109 if ((t->front + size) > t->back) { in rga_mmu_buf_get_try()
110 pr_info("front %d, back %d dsize %d size %d", in rga_mmu_buf_get_try()
111 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
117 if (size > (t->back - t->size)) { in rga_mmu_buf_get_try()
118 pr_info("front %d, back %d dsize %d size %d", in rga_mmu_buf_get_try()
119 t->front, t->back, t->size, size); in rga_mmu_buf_get_try()
149 if (mmu_base->back + size > 2 * mmu_base->size) in rga_mmu_buf_get()
150 mmu_base->back = size + mmu_base->size; in rga_mmu_buf_get()
152 mmu_base->back += size; in rga_mmu_buf_get()
201 mmu_base->back = RGA2_PHY_PAGE_SIZE * 3; in rga_mmu_base_init()