HomeSort by: relevance | last modified time | path
    Searched defs:ce (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/games/hunt/huntd/
terminal.c 98 * ce:
102 ce(PLAYER *pp) function in typeref:typename:void
  /src/lib/libc/citrus/
citrus_stdenc.c 57 get_state_desc_default(struct _citrus_stdenc * __restrict ce,
72 struct _citrus_stdenc *ce; local in function:_citrus_stdenc_open
83 ce = malloc(sizeof(*ce));
84 if (ce==NULL) {
88 ce->ce_ops = NULL;
89 ce->ce_closure = NULL;
90 ce->ce_module = NULL;
91 ce->ce_traits = NULL;
97 ce->ce_module = handle
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_client_blt.c 23 struct intel_context *ce = engine->kernel_context; local in function:__igt_client_fill
35 u32 sz = min_t(u64, ce->vm->total >> 4, prandom_u32_state(&prng));
74 err = i915_gem_schedule_fill_pages_blt(obj, ce, obj->mm.pages,
igt_gem_utils.c 26 struct intel_context *ce; local in function:igt_request_alloc
34 ce = i915_gem_context_get_engine(ctx, engine->legacy_idx);
35 if (IS_ERR(ce))
36 return ERR_CAST(ce);
38 rq = intel_context_create_request(ce);
39 intel_context_put(ce);
112 int igt_gpu_fill_dw(struct intel_context *ce,
121 GEM_BUG_ON(!intel_engine_can_store_dword(ce->engine));
128 rq = intel_context_create_request(ce);
135 if (INTEL_GEN(ce->vm->i915) <= 5
    [all...]
i915_gem_object_blt.c 51 struct intel_context *ce = engine->kernel_context; local in function:__perf_fill_blt
56 err = i915_gem_object_fill_blt(obj, ce, 0);
131 struct intel_context *ce = engine->kernel_context; local in function:__perf_copy_blt
136 err = i915_gem_object_copy_blt(src, dst, ce);
215 struct intel_context *ce; local in function:igt_fill_blt_thread
230 ce = i915_gem_context_get_engine(ctx, BCS0);
231 GEM_BUG_ON(IS_ERR(ce));
236 u64 total = ce->vm->total;
246 if (i915_is_ggtt(ce->vm))
280 err = i915_gem_object_fill_blt(obj, ce, val)
324 struct intel_context *ce; local in function:igt_copy_blt_thread
    [all...]
  /src/sys/kern/
subr_callback.c 62 callback_register(struct callback_head *ch, struct callback_entry *ce,
67 ce->ce_func = fn;
68 ce->ce_obj = obj;
70 TAILQ_INSERT_TAIL(&ch->ch_q, ce, ce_q);
76 callback_unregister(struct callback_head *ch, struct callback_entry *ce)
82 if (__predict_false(ch->ch_next == ce)) {
83 ch->ch_next = TAILQ_NEXT(ce, ce_q);
85 TAILQ_REMOVE(&ch->ch_q, ce, ce_q);
93 struct callback_entry *ce; local in function:callback_runone
99 ce = ch->ch_next
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_engine_heartbeat.c 68 struct intel_context *ce = engine->kernel_context; local in function:heartbeat
124 mutex_lock(&ce->timeline->mutex);
126 intel_context_enter(ce);
127 rq = __i915_request_create(ce, GFP_NOWAIT | __GFP_NOWARN);
128 intel_context_exit(ce);
140 mutex_unlock(&ce->timeline->mutex);
194 struct intel_context *ce = engine->kernel_context; local in function:intel_engine_pulse
204 if (mutex_lock_interruptible(&ce->timeline->mutex))
207 intel_context_enter(ce);
208 rq = __i915_request_create(ce, GFP_NOWAIT | __GFP_NOWARN)
    [all...]
intel_engine_pm.c 28 struct intel_context *ce; local in function:__engine_unpark
44 ce = engine->kernel_context;
45 if (ce) {
46 GEM_BUG_ON(test_bit(CONTEXT_VALID_BIT, &ce->flags));
49 if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) && ce->state) {
50 struct drm_i915_gem_object *obj = ce->state->obj;
61 ce->ops->reset(ce);
73 static inline unsigned long __timeline_mark_lock(struct intel_context *ce)
78 mutex_acquire(&ce->timeline->mutex.dep_map, 2, 0, _THIS_IP_)
148 struct intel_context *ce = engine->kernel_context; local in function:switch_to_kernel_context
    [all...]
selftest_rc6.c 78 static const u32 *__live_rc6_ctx(struct intel_context *ce)
85 rq = intel_context_create_request(ce);
101 *cs++ = ce->timeline->hwsp_offset + 8;
161 struct intel_context *ce; local in function:live_rc6_ctx_wa
168 ce = intel_context_create(engine);
169 if (IS_ERR(ce)) {
170 err = PTR_ERR(ce);
175 res = __live_rc6_ctx(ce);
177 intel_context_put(ce);
intel_breadcrumbs.c 98 check_signal_order(struct intel_context *ce, struct i915_request *rq)
100 if (!list_is_last(&rq->signal_link, &ce->signals) &&
105 if (!list_is_first(&rq->signal_link, &ce->signals) &&
160 struct intel_context *ce, *cn; local in function:signal_irq_work
169 list_for_each_entry_safe(ce, cn, &b->signalers, signal_link) {
170 GEM_BUG_ON(list_empty(&ce->signals));
172 list_for_each_safe(pos, next, &ce->signals) {
176 GEM_BUG_ON(!check_signal_order(ce, rq));
202 if (!list_is_first(pos, &ce->signals)) {
204 __list_del_many(&ce->signals, pos)
305 struct intel_context *ce = rq->context; local in function:i915_request_enable_breadcrumb
362 struct intel_context *ce = rq->context; local in function:i915_request_cancel_breadcrumb
377 struct intel_context *ce; local in function:intel_engine_print_breadcrumbs
    [all...]
intel_context.c 35 void intel_context_free(struct intel_context *ce)
37 kmem_cache_free(global.slab_ce, ce);
43 struct intel_context *ce; local in function:intel_context_create
45 ce = intel_context_alloc();
46 if (!ce)
49 intel_context_init(ce, engine);
50 return ce;
53 int intel_context_alloc_state(struct intel_context *ce)
57 if (mutex_lock_interruptible(&ce->pin_mutex))
60 if (!test_bit(CONTEXT_ALLOC_BIT, &ce->flags))
227 struct intel_context *ce = container_of(active, typeof(*ce), active); local in function:__intel_context_retire
243 struct intel_context *ce = container_of(active, typeof(*ce), active); local in function:__intel_context_active
    [all...]
mock_engine.c 133 static void mock_context_unpin(struct intel_context *ce)
139 struct intel_context *ce = container_of(ref, typeof(*ce), ref); local in function:mock_context_destroy
141 GEM_BUG_ON(intel_context_is_pinned(ce));
143 if (test_bit(CONTEXT_ALLOC_BIT, &ce->flags)) {
144 mock_ring_free(ce->ring);
145 mock_timeline_unpin(ce->timeline);
148 intel_context_fini(ce);
149 intel_context_free(ce);
152 static int mock_context_alloc(struct intel_context *ce)
328 struct intel_context *ce; local in function:mock_engine_init
    [all...]
selftest_engine_heartbeat.c 201 struct intel_context *ce; local in function:__live_heartbeat_fast
208 ce = intel_context_create(engine);
209 if (IS_ERR(ce))
210 return PTR_ERR(ce);
269 intel_context_put(ce);
selftest_mocs.c 208 struct intel_context *ce)
218 rq = intel_context_create_request(ce);
232 if (!err && ce->engine->class == RENDER_CLASS)
244 err = check_mocs_table(ce->engine, &arg->table, &vaddr);
245 if (!err && ce->engine->class == RENDER_CLASS)
246 err = check_l3cc_table(ce->engine, &arg->table, &vaddr);
295 struct intel_context *ce; local in function:live_mocs_clean
297 ce = intel_context_create(engine);
298 if (IS_ERR(ce)) {
299 err = PTR_ERR(ce);
389 struct intel_context *ce; local in function:live_mocs_reset
    [all...]
intel_gt.c 385 static int __intel_context_flush_retire(struct intel_context *ce)
389 tl = intel_context_timeline_lock(ce);
415 struct intel_context *ce; local in function:__engines_record_defaults
425 ce = intel_context_create(engine);
426 if (IS_ERR(ce)) {
427 err = PTR_ERR(ce);
431 rq = intel_context_create_request(ce);
434 intel_context_put(ce);
524 struct intel_context *ce; local in function:__engines_record_defaults
531 ce = rq->context
    [all...]
  /src/lib/libc/gdtoa/
smisc.c 151 ULong *ce, *x, *xe; local in function:copybits
156 ce = c + ((unsigned int)(n-1) >> kshift) + 1;
170 while(c < ce)
  /src/sys/dev/cardbus/
cardslot.c 273 struct cardslot_event *ce; local in function:cardslot_event_throw
281 if (NULL == (ce = (struct cardslot_event *)malloc(sizeof (struct cardslot_event), M_TEMP, M_NOWAIT))) {
285 ce->ce_type = ev;
288 SIMPLEQ_INSERT_TAIL(&sc->sc_events, ce, ce_q);
308 struct cardslot_event *ce; local in function:cardslot_event_thread
317 if ((ce = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
329 if (IS_CARDSLOT_INSERT_REMOVE_EV(ce->ce_type)) {
337 if (ce1->ce_type != antonym_ev[ce->ce_type]) {
343 if (ce2->ce_type == ce->ce_type) {
355 switch (ce->ce_type)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
i915_gem.c 27 struct intel_context *ce; local in function:switch_to_context
30 for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
33 rq = intel_context_create_request(ce);
intel_memory_region.c 267 static int igt_gpu_write_dw(struct intel_context *ce,
272 return igt_gpu_fill_dw(ce, vma, dword * sizeof(u32),
312 struct intel_context *ce; local in function:igt_gpu_write
325 for_each_gem_engine(ce, i915_gem_context_lock_engines(ctx), it) {
327 if (!intel_engine_can_store_dword(ce->engine))
330 vm = ce->vm;
357 ce = engines->engines[order[i] % engines->num_engines];
359 if (!ce || !intel_engine_can_store_dword(ce->engine))
362 err = igt_gpu_write_dw(ce, vma, dword, rng)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_client_blt.c 105 struct intel_context *ce; member in struct:clear_pages_work
184 batch = intel_emit_vma_fill_blt(w->ce, vma, w->value);
190 rq = intel_context_create_request(w->ce);
205 if (w->ce->engine->emit_init_breadcrumb) {
206 err = w->ce->engine->emit_init_breadcrumb(rq);
220 err = w->ce->engine->emit_bb_start(rq,
231 intel_emit_vma_release(w->ce, batch);
265 struct intel_context *ce,
274 sleeve = create_sleeve(ce->vm, obj, pages, page_sizes);
286 work->ce = ce
    [all...]
i915_gem_context.h 197 struct intel_context *ce = ERR_PTR(-EINVAL); local in function:i915_gem_context_get_engine
202 ce = intel_context_get(e->engines[idx]);
205 return ce;
220 #define for_each_gem_engine(ce, engines, it) \
222 ((ce) = i915_gem_engines_iter_next(&(it)));)
  /src/sys/arch/arm/broadcom/
bcm2835_dmac.c 178 uint32_t cs, ce; local in function:bcm_dmac_intr
184 ce = DMAC_READ(sc, DMAC_DEBUG(ch->ch_index));
185 ce &= DMAC_DEBUG_READ_ERROR | DMAC_DEBUG_FIFO_ERROR
187 DMAC_WRITE(sc, DMAC_DEBUG(ch->ch_index), ce);
190 ch->ch_callback(cs, ce, ch->ch_callbackarg);
  /src/tests/lib/libc/regex/
t_regex_att.c 265 int ce; member in struct:geterror::__anon2233892f0308
299 if (nv[i].ce & COMP)
301 if (nv[i].ce & EXEC)
  /src/sys/dev/ic/
mpt_debug.c 593 SGE_CHAIN32 *ce = (SGE_CHAIN32 *) se; local in function:mpt_dump_sgl
595 "Len=0x%0x\n", ce, le32toh(ce->Address),
596 ce->NextChainOffset, ce->Flags,
597 le16toh(ce->Length));
  /src/sys/arch/amiga/stand/binpatch/
binpatch.c 456 char *ce = rindex(symbol, '='); local in function:FindAssign
459 char *cn = ce + 1;
464 if (ce) {
469 for (cn=ce + 1; *cn==' '; cn++)
481 *ce = '\0';
483 /* end if (ce) */

Completed in 24 milliseconds

1 2 3