Lines Matching refs:results
188 print_results(const struct intel_engine_cs *engine, const u32 *results) in print_results() argument
194 u32 actual = results[i]; in print_results()
204 struct drm_i915_gem_object *results; in check_whitelist() local
210 results = read_nonprivs(ce); in check_whitelist()
211 if (IS_ERR(results)) in check_whitelist()
212 return PTR_ERR(results); in check_whitelist()
215 i915_gem_object_lock(results, NULL); in check_whitelist()
217 err = i915_gem_object_set_to_cpu_domain(results, false); in check_whitelist()
224 vaddr = i915_gem_object_pin_map(results, I915_MAP_WB); in check_whitelist()
244 i915_gem_object_unpin_map(results); in check_whitelist()
246 i915_gem_object_unlock(results); in check_whitelist()
247 i915_gem_object_put(results); in check_whitelist()
506 u32 *cs, *results; in check_dirty_whitelist() local
554 results = i915_gem_object_pin_map(scratch->obj, I915_MAP_WB); in check_dirty_whitelist()
555 if (IS_ERR(results)) { in check_dirty_whitelist()
556 err = PTR_ERR(results); in check_dirty_whitelist()
658 rsvd = results[ARRAY_SIZE(values)]; in check_dirty_whitelist()
669 expect = results[0]; in check_dirty_whitelist()
673 expect = results[0]; in check_dirty_whitelist()
677 if (results[idx] != expect) in check_dirty_whitelist()
683 expect = results[0]; in check_dirty_whitelist()
687 if (results[idx] != expect) in check_dirty_whitelist()
697 engine->name, reg, results[0]); in check_dirty_whitelist()
700 engine->name, reg, results[0], rsvd); in check_dirty_whitelist()
702 expect = results[0]; in check_dirty_whitelist()
708 expect = results[0]; in check_dirty_whitelist()
712 w, results[idx], expect); in check_dirty_whitelist()
719 expect = results[0]; in check_dirty_whitelist()
723 w, results[idx], expect); in check_dirty_whitelist()
843 struct i915_vma *results) in read_whitelisted_registers() argument
854 err = igt_vma_move_to_active_unlocked(results, rq, EXEC_OBJECT_WRITE); in read_whitelisted_registers()
869 u64 offset = i915_vma_offset(results) + sizeof(u32) * i; in read_whitelisted_registers()