| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_engine_pm.h | 17 intel_engine_pm_is_awake(const struct intel_engine_cs *engine) 19 return intel_wakeref_is_active(&engine->wakeref); 22 static inline void intel_engine_pm_get(struct intel_engine_cs *engine) 24 intel_wakeref_get(&engine->wakeref); 27 static inline bool intel_engine_pm_get_if_awake(struct intel_engine_cs *engine) 29 return intel_wakeref_get_if_active(&engine->wakeref); 32 static inline void intel_engine_pm_put(struct intel_engine_cs *engine) 34 intel_wakeref_put(&engine->wakeref); 37 static inline void intel_engine_pm_put_async(struct intel_engine_cs *engine) 39 intel_wakeref_put_async(&engine->wakeref) [all...] |
| intel_engine_heartbeat.h | 14 void intel_engine_init_heartbeat(struct intel_engine_cs *engine); 16 int intel_engine_set_heartbeat(struct intel_engine_cs *engine, 19 void intel_engine_park_heartbeat(struct intel_engine_cs *engine); 20 void intel_engine_unpark_heartbeat(struct intel_engine_cs *engine); 22 int intel_engine_pulse(struct intel_engine_cs *engine); 23 int intel_engine_flush_barriers(struct intel_engine_cs *engine);
|
| mock_engine.c | 52 static struct intel_ring *mock_ring(struct intel_engine_cs *engine) 87 static struct i915_request *first_request(struct mock_engine *engine) 89 return list_first_entry_or_null(&engine->hw_queue, 100 intel_engine_signal_breadcrumbs(request->engine); 105 struct mock_engine *engine = from_timer(engine, t, hw_delay); local 109 spin_lock_irqsave(&engine->hw_lock, flags); 112 request = first_request(engine); 120 while ((request = first_request(engine))) { 122 mod_timer(&engine->hw_delay 213 struct mock_engine *engine = local 280 struct mock_engine *engine; local [all...] |
| intel_engine_cs.c | 148 * intel_engine_context_size() - return the size of the context for an engine 150 * @class: engine class 152 * Each engine class may require a different amount of space for a context 155 * Return: size (in bytes) of an engine class specific context image 246 static void __sprint_engine_name(struct intel_engine_cs *engine) 249 * Before we know what the uABI name for this engine will be, 250 * we still would like to keep track of this engine in the debug logs. 253 GEM_WARN_ON(snprintf(engine->name, sizeof(engine->name), "%s'%u", 254 intel_engine_class_repr(engine->class) 282 struct intel_engine_cs *engine; local 384 struct intel_engine_cs *engine; local 397 struct intel_engine_cs *engine; local 416 struct intel_engine_cs *engine; local 772 struct intel_engine_cs *engine; local 1127 struct intel_engine_cs *engine; local 1151 struct intel_engine_cs *engine; local [all...] |
| intel_engine_heartbeat.c | 22 * While the engine is active, we send a periodic pulse along the engine 24 * is stuck, and we fail to preempt it, we declare the engine hung and 28 static bool next_heartbeat(struct intel_engine_cs *engine) 32 delay = READ_ONCE(engine->props.heartbeat_interval_ms); 39 schedule_delayed_work(&engine->heartbeat.work, delay); 44 static void idle_pulse(struct intel_engine_cs *engine, struct i915_request *rq) 46 engine->wakeref_serial = READ_ONCE(engine->serial) + 1; 51 struct intel_engine_cs *engine) 66 struct intel_engine_cs *engine = local [all...] |
| intel_workarounds.h | 27 void intel_engine_init_ctx_wa(struct intel_engine_cs *engine); 34 void intel_engine_init_whitelist(struct intel_engine_cs *engine); 35 void intel_engine_apply_whitelist(struct intel_engine_cs *engine); 37 void intel_engine_init_workarounds(struct intel_engine_cs *engine); 38 void intel_engine_apply_workarounds(struct intel_engine_cs *engine); 39 int intel_engine_verify_workarounds(struct intel_engine_cs *engine,
|
| intel_engine_pm.c | 26 struct intel_engine_cs *engine = local 27 container_of(wf, typeof(*engine), wakeref); 31 ENGINE_TRACE(engine, "\n"); 33 intel_gt_pm_get(engine->gt); 37 if (engine->default_state) 38 map = i915_gem_object_pin_map(engine->default_state, 41 engine->pinned_default_state = map; 44 ce = engine->kernel_context; 51 int type = i915_coherent_map_type(engine->i915); 64 if (engine->unpark 240 struct intel_engine_cs *engine = local [all...] |
| intel_mocs.h | 58 void intel_mocs_init_engine(struct intel_engine_cs *engine);
|
| mock_engine.h | 47 int mock_engine_init(struct intel_engine_cs *engine); 49 void mock_engine_flush(struct intel_engine_cs *engine); 50 void mock_engine_reset(struct intel_engine_cs *engine); 51 void mock_engine_free(struct intel_engine_cs *engine);
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/engine/ |
| msenc.h | 6 #include <core/engine.h>
|
| vic.h | 6 #include <core/engine.h>
|
| bsp.h | 6 #include <engine/xtensa.h>
|
| cipher.h | 6 #include <core/engine.h>
|
| sec.h | 6 #include <engine/falcon.h>
|
| vp.h | 6 #include <engine/xtensa.h>
|
| /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| engine.c | 1 /* $NetBSD: engine.c,v 1.5 2023/06/19 21:41:43 christos Exp $ */ 39 #include <engine.h> 52 void (*destroy)(ENGINE *); 58 ENGINE * 61 ENGINE *engine; local 63 engine = calloc(1, sizeof(*engine)); 64 engine->references = 1; 66 return engine; 229 ENGINE *engine; local 310 ENGINE *engine; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
| nouveau_nvkm_core_engine.c | 29 #include <core/engine.h> 36 nvkm_engine_chsw_load(struct nvkm_engine *engine) 38 if (engine->func->chsw_load) 39 return engine->func->chsw_load(engine); 46 struct nvkm_engine *engine = *pengine; local 47 if (engine) { 48 mutex_lock(&engine->subdev.mutex); 49 if (--engine->usecount == 0) 50 nvkm_subdev_fini(&engine->subdev, false) 85 struct nvkm_engine *engine = nvkm_engine(subdev); local 93 struct nvkm_engine *engine = nvkm_engine(subdev); local 108 struct nvkm_engine *engine = nvkm_engine(subdev); local 117 struct nvkm_engine *engine = nvkm_engine(subdev); local 152 struct nvkm_engine *engine = nvkm_engine(subdev); local 161 struct nvkm_engine *engine = nvkm_engine(subdev); local [all...] |
| /src/external/gpl3/gdb/dist/sim/common/ |
| sim-reason.c | 34 sim_engine *engine = NULL; local 36 engine = STATE_ENGINE (sd); 37 *reason = engine->reason; 41 *sigrc = engine->sigrc; 45 *sigrc = sim_signal_to_gdb_signal (sd, engine->sigrc);
|
| sim-engine.c | 38 sim_engine *engine = STATE_ENGINE (sd); local 40 *reason = engine->reason; 41 *sigrc = engine->sigrc; 51 sim_engine *engine = STATE_ENGINE (sd); local 53 engine->reason = reason; 54 engine->sigrc = sigrc; 67 sim_engine *engine = STATE_ENGINE (sd); local 69 if (engine->jmpbuf != NULL) 71 jmp_buf *halt_buf = engine->jmpbuf; 72 engine->last_cpu = last_cpu 102 sim_engine *engine = STATE_ENGINE (sd); local 168 sim_engine *engine = STATE_ENGINE (sd); local 178 sim_engine *engine = STATE_ENGINE (sd); local 188 sim_engine *engine = STATE_ENGINE (sd); local 201 sim_engine *engine = STATE_ENGINE (sd); local [all...] |
| /src/external/gpl3/gdb.old/dist/sim/common/ |
| sim-reason.c | 34 sim_engine *engine = NULL; local 36 engine = STATE_ENGINE (sd); 37 *reason = engine->reason; 41 *sigrc = engine->sigrc; 45 *sigrc = sim_signal_to_gdb_signal (sd, engine->sigrc);
|
| sim-engine.c | 38 sim_engine *engine = STATE_ENGINE (sd); local 40 *reason = engine->reason; 41 *sigrc = engine->sigrc; 51 sim_engine *engine = STATE_ENGINE (sd); local 53 engine->reason = reason; 54 engine->sigrc = sigrc; 67 sim_engine *engine = STATE_ENGINE (sd); local 69 if (engine->jmpbuf != NULL) 71 jmp_buf *halt_buf = engine->jmpbuf; 72 engine->last_cpu = last_cpu 102 sim_engine *engine = STATE_ENGINE (sd); local 168 sim_engine *engine = STATE_ENGINE (sd); local 178 sim_engine *engine = STATE_ENGINE (sd); local 188 sim_engine *engine = STATE_ENGINE (sd); local 201 sim_engine *engine = STATE_ENGINE (sd); local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/device/ |
| priv.h | 34 #include <engine/bsp.h> 35 #include <engine/ce.h> 36 #include <engine/cipher.h> 37 #include <engine/disp.h> 38 #include <engine/dma.h> 39 #include <engine/fifo.h> 40 #include <engine/gr.h> 41 #include <engine/mpeg.h> 42 #include <engine/mspdec.h> 43 #include <engine/msppp.h [all...] |
| /src/external/bsd/kyua-cli/dist/engine/ |
| test_program_test.cpp | 29 #include "engine/test_program.hpp" 41 #include "engine/exceptions.hpp" 42 #include "engine/test_result.hpp" 81 const engine::metadata md = engine::metadata_builder() 84 const engine::test_program test_program( 99 const engine::test_program test_program( 101 engine::metadata_builder().build()); 102 const engine::test_case_ptr test_case = test_program.find("main"); 112 const engine::test_program test_program [all...] |
| action.cpp | 29 #include "engine/action.hpp" 31 #include "engine/context.hpp" 38 struct engine::action::impl { 66 engine::action::action(const context& context_) : 73 engine::action::~action(void) 81 const engine::context& 82 engine::action::runtime_context(void) const 94 engine::action::operator==(const action& other) const 106 engine::action::operator!=(const action& other) const 119 engine::operator<<(std::ostream& output, const action& object [all...] |
| exceptions.cpp | 29 #include "engine/exceptions.hpp" 38 engine::error::error(const std::string& message) : 45 engine::error::~error(void) throw() 53 engine::format_error::format_error(const std::string& message) : 60 engine::format_error::~format_error(void) throw() 69 engine::load_error::load_error(const fs::path& file_, 79 engine::load_error::~load_error(void) throw() 87 engine::not_found_error::not_found_error(const std::string& message) : 94 engine::not_found_error::~not_found_error(void) throw()
|