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

/drivers/media/platform/s5p-mfc/
H A Ds5p_mfc_opr_v5.c1157 int new_ctx; local
1161 new_ctx = (dev->curr_ctx + 1) % MFC_NUM_CONTEXTS;
1163 while (!test_bit(new_ctx, &dev->ctx_work_bits)) {
1164 new_ctx = (new_ctx + 1) % MFC_NUM_CONTEXTS;
1172 return new_ctx;
1368 int new_ctx; local
1382 new_ctx = s5p_mfc_get_new_ctx(dev);
1383 if (new_ctx < 0) {
1392 ctx = dev->ctx[new_ctx];
[all...]
H A Ds5p_mfc_opr_v6.c1511 int new_ctx; local
1517 new_ctx = (dev->curr_ctx + 1) % MFC_NUM_CONTEXTS;
1519 while (!test_bit(new_ctx, &dev->ctx_work_bits)) {
1520 new_ctx = (new_ctx + 1) % MFC_NUM_CONTEXTS;
1529 return new_ctx;
1738 int new_ctx; local
1751 new_ctx = s5p_mfc_get_new_ctx(dev);
1752 if (new_ctx < 0) {
1763 mfc_debug(1, "New context: %d\n", new_ctx);
[all...]

Completed in 57 milliseconds