Home
last modified time | relevance | path

Searched refs:active (Results 1 – 25 of 1893) sorted by relevance

12345678910>>...76

/netbsd-src/crypto/external/bsd/heimdal/dist/doc/
H A Dlatin1.tex4 \global\catcode`\^^a0=\active \global\let^^a0=~ % no-break space
5 \global\catcode`\^^a1=\active \global\def^^a1{!`} % inverted exclamation mark
6 \global\catcode`\^^a2=\active \global\def^^a2{{\rm\rlap/c}} % cent sign
7 \global\catcode`\^^a3=\active \global\def^^a3{{\it\$}} % pound sign
9 \global\catcode`\^^a7=\active \global\let^^a7=\S % section sign
10 \global\catcode`\^^a8=\active \global\def^^a8{\"{}} % diaeresis
11 \global\catcode`\^^a9=\active \global\let^^a9=\copyright % copyright sign
13 \global\catcode`\^^ac=\active \global\def^^ac{\inmathmode\neg}% not sign
14 \global\catcode`\^^ad=\active \global\let^^ad=\- % soft hyphen
16 \global\catcode`\^^af=\active \global\def^^af{\={}} % macron
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/selftests/
H A Di915_active.c28 static void __live_get(struct live_active *active) in __live_get() argument
30 kref_get(&active->ref); in __live_get()
33 static void __live_free(struct live_active *active) in __live_free() argument
35 i915_active_fini(&active->base); in __live_free()
36 kfree(active); in __live_free()
41 struct live_active *active = container_of(ref, typeof(*active), ref); in __live_release() local
43 __live_free(active); in __live_release()
46 static void __live_put(struct live_active *active) in __live_put() argument
48 kref_put(&active->ref, __live_release); in __live_put()
53 struct live_active *active = container_of(base, typeof(*active), base); in __live_active() local
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/exynos/
H A Dexynos5433-tmu.dtsi20 type = "active";
25 type = "active";
30 type = "active";
35 type = "active";
40 type = "active";
45 type = "active";
50 type = "active";
108 type = "active";
113 type = "active";
118 type = "active";
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
H A Dimx6qdl-tx6-lcd.dtsi123 hsync-active = <0>;
124 vsync-active = <0>;
125 de-active = <1>;
126 pixelclk-active = <0>;
140 hsync-active = <0>;
141 vsync-active = <0>;
142 de-active = <1>;
143 pixelclk-active = <0>;
157 hsync-active = <0>;
158 vsync-active = <0>;
[all …]
H A Dimx6qdl-tx6-lvds.dtsi141 de-active = <1>;
142 pixelclk-active = <1>;
155 hsync-active = <0>;
156 vsync-active = <0>;
157 de-active = <1>;
158 pixelclk-active = <0>;
172 hsync-active = <0>;
173 vsync-active = <0>;
174 de-active = <1>;
175 pixelclk-active = <1>;
[all …]
H A Dimx53-tx53-x03x.dts80 hsync-active = <0>;
81 vsync-active = <0>;
82 de-active = <1>;
83 pixelclk-active = <0>;
96 hsync-active = <0>;
97 vsync-active = <0>;
98 de-active = <1>;
99 pixelclk-active = <0>;
112 hsync-active = <0>;
113 vsync-active = <0>;
[all …]
H A Dimx53-tx53-x13x.dts108 enable-active-high;
118 enable-active-high;
204 hsync-active = <0>;
205 vsync-active = <0>;
206 de-active = <1>;
207 pixelclk-active = <1>;
220 hsync-active = <0>;
221 vsync-active = <0>;
222 de-active = <1>;
223 pixelclk-active = <1>;
[all …]
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_active.c45 node_from_active(struct i915_active_fence *active) in node_from_active() argument
47 return container_of(active, struct active_node, base); in node_from_active()
52 static inline bool is_barrier(const struct i915_active_fence *active) in is_barrier() argument
54 return IS_ERR(rcu_access_pointer(active->fence)); in is_barrier()
87 return (void *)ref->active ?: (void *)ref->retire ?: (void *)ref; in active_debug_hint()
243 __active_fence_slot(struct i915_active_fence *active) in __active_fence_slot() argument
245 return (struct dma_fence ** __force)&active->fence; in __active_fence_slot()
251 struct i915_active_fence *active = in active_fence_cb() local
252 container_of(cb, typeof(*active), cb); in active_fence_cb()
254 return cmpxchg(__active_fence_slot(active), fence, NULL) == fence; in active_fence_cb()
[all …]
H A Di915_active.h65 __i915_active_fence_init(struct i915_active_fence *active, in __i915_active_fence_init() argument
69 RCU_INIT_POINTER(active->fence, fence); in __i915_active_fence_init()
70 active->cb.func = fn ?: i915_active_noop; in __i915_active_fence_init()
77 __i915_active_fence_set(struct i915_active_fence *active,
90 i915_active_fence_set(struct i915_active_fence *active,
103 i915_active_fence_get(struct i915_active_fence *active) in i915_active_fence_get() argument
108 fence = dma_fence_get_rcu_safe(&active->fence); in i915_active_fence_get()
123 i915_active_fence_isset(const struct i915_active_fence *active) in i915_active_fence_isset() argument
125 return rcu_access_pointer(active->fence); in i915_active_fence_isset()
155 int (*active)(struct i915_active *ref),
[all …]
H A Di915_globals.c27 static atomic_t active; variable
59 if (!atomic_read(&active)) { in __i915_globals_queue_rcu()
135 if (!atomic_dec_and_test(&active)) in i915_globals_park()
146 atomic_inc(&active); in i915_globals_unpark()
151 atomic_inc(&active); /* skip shrinking */ in __i915_globals_flush()
156 atomic_dec(&active); in __i915_globals_flush()
161 GEM_BUG_ON(atomic_read(&active)); in i915_globals_exit()
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_context.c77 __i915_active_acquire(&ce->active); in intel_context_active_acquire()
83 err = i915_active_acquire_preallocate_barrier(&ce->active, in intel_context_active_acquire()
86 i915_active_release(&ce->active); in intel_context_active_acquire()
94 i915_active_acquire_barrier(&ce->active); in intel_context_active_release()
95 i915_active_release(&ce->active); in intel_context_active_release()
108 err = i915_active_acquire(&ce->active); in __intel_context_do_pin()
134 GEM_BUG_ON(i915_active_is_idle(&ce->active)); in __intel_context_do_pin()
142 i915_active_release(&ce->active); in __intel_context_do_pin()
174 err = i915_active_acquire(&vma->active); in __context_pin_state()
195 i915_active_release(&vma->active); in __context_unpin_state()
[all …]
H A Dselftest_engine_heartbeat.c42 struct i915_active active; member
46 static int pulse_active(struct i915_active *active) in pulse_active() argument
48 kref_get(&container_of(active, struct pulse, active)->kref); in pulse_active()
62 static void pulse_retire(struct i915_active *active) in pulse_retire() argument
64 pulse_put(container_of(active, struct pulse, active)); in pulse_retire()
76 i915_active_init(&p->active, pulse_active, pulse_retire); in pulse_create()
83 i915_active_unlock_wait(&p->active); in pulse_unlock_wait()
98 err = i915_active_acquire(&p->active); in __live_idle_pulse()
102 err = i915_active_acquire_preallocate_barrier(&p->active, engine); in __live_idle_pulse()
104 i915_active_release(&p->active); in __live_idle_pulse()
[all …]
/netbsd-src/sys/arch/ia64/stand/common/
H A Dconsole.c54 int active; in cons_probe() local
63 active = -1; in cons_probe()
64 for (cons = 0; consoles[cons] != NULL && active == -1; cons++) { in cons_probe()
68 active = cons; in cons_probe()
81 active = cons; in cons_probe()
84 if (active == -1) in cons_probe()
85 active = 0; in cons_probe()
86 consoles[active]->c_flags |= (C_ACTIVEIN | C_ACTIVEOUT); in cons_probe()
87 consoles[active]->c_init(0); in cons_probe()
89 printf("Console: %s\n", consoles[active]->c_desc); in cons_probe()
[all …]
/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dportlist.c50 unsigned int active; member
82 portlist->active = 0; in dns_portlist_create()
137 if (portlist->active != 0) { in dns_portlist_add()
138 el = find_port(portlist->list, portlist->active, port); in dns_portlist_add()
150 if (portlist->allocated <= portlist->active) { in dns_portlist_add()
163 portlist->list[portlist->active].port = port; in dns_portlist_add()
165 portlist->list[portlist->active].flags = DNS_PL_INET; in dns_portlist_add()
167 portlist->list[portlist->active].flags = DNS_PL_INET6; in dns_portlist_add()
169 portlist->active++; in dns_portlist_add()
170 qsort(portlist->list, portlist->active, sizeof(*el), compare); in dns_portlist_add()
[all …]
/netbsd-src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/nvidia/
H A Dtegra210-p3450-0000.dts202 maxim,active-fps-source = <MAX77620_FPS_SRC_NONE>;
203 maxim,active-fps-power-up-slot = <0>;
204 maxim,active-fps-power-down-slot = <7>;
211 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
212 maxim,active-fps-power-up-slot = <0>;
213 maxim,active-fps-power-down-slot = <7>;
220 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
221 maxim,active-fps-power-up-slot = <4>;
222 maxim,active-fps-power-down-slot = <3>;
275 maxim,active-fps-source = <MAX77620_FPS_SRC_1>;
[all …]
H A Dtegra210-p2180.dtsi63 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
64 maxim,active-fps-power-up-slot = <7>;
65 maxim,active-fps-power-down-slot = <0>;
72 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
118 maxim,active-fps-source = <MAX77620_FPS_SRC_1>;
129 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
140 maxim,active-fps-source = <MAX77620_FPS_SRC_1>;
153 maxim,active-fps-source = <MAX77620_FPS_SRC_0>;
166 maxim,active-fps-source = <MAX77620_FPS_SRC_NONE>;
177 maxim,active-fps-source = <MAX77620_FPS_SRC_1>;
[all …]
/netbsd-src/tests/ipf/expected/
H A Dn411 List of active MAP/Redirect filters:
14 List of active sessions:
18 List of active state sessions:
42 List of active MAP/Redirect filters:
45 List of active sessions:
49 List of active state sessions:
73 List of active MAP/Redirect filters:
76 List of active sessions:
81 List of active state sessions:
105 List of active MAP/Redirect filters:
[all …]
H A Dn4_611 List of active MAP/Redirect filters:
14 List of active sessions:
18 List of active state sessions:
42 List of active MAP/Redirect filters:
45 List of active sessions:
49 List of active state sessions:
73 List of active MAP/Redirect filters:
76 List of active sessions:
81 List of active state sessions:
105 List of active MAP/Redirect filters:
[all …]
H A Dn6_614 List of active MAP/Redirect filters:
17 List of active sessions:
22 List of active state sessions:
49 List of active MAP/Redirect filters:
52 List of active sessions:
57 List of active state sessions:
84 List of active MAP/Redirect filters:
87 List of active sessions:
91 List of active state sessions:
118 List of active MAP/Redirect filters:
[all …]
H A Dn614 List of active MAP/Redirect filters:
17 List of active sessions:
22 List of active state sessions:
49 List of active MAP/Redirect filters:
52 List of active sessions:
57 List of active state sessions:
84 List of active MAP/Redirect filters:
87 List of active sessions:
91 List of active state sessions:
118 List of active MAP/Redirect filters:
[all …]
H A Df1117 List of active MAP/Redirect filters:
19 List of active sessions:
22 List of active state sessions:
53 List of active MAP/Redirect filters:
55 List of active sessions:
58 List of active state sessions:
89 List of active MAP/Redirect filters:
91 List of active sessions:
94 List of active state sessions:
125 List of active MAP/Redirect filters:
[all …]
H A Dn103 List of active MAP/Redirect filters:
6 List of active sessions:
11 List of active state sessions:
27 List of active MAP/Redirect filters:
30 List of active sessions:
35 List of active state sessions:
51 List of active MAP/Redirect filters:
54 List of active sessions:
59 List of active state sessions:
/netbsd-src/regress/sys/kern/ipf/expected/
H A Dn189 List of active MAP/Redirect filters:
12 List of active sessions:
24 List of active state sessions:
38 List of active MAP/Redirect filters:
41 List of active sessions:
53 List of active state sessions:
67 List of active MAP/Redirect filters:
70 List of active sessions:
82 List of active state sessions:
/netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/
H A Dvmwgfx_ldu.c49 struct list_head active; member
63 struct list_head active; member
68 list_del_init(&ldu->active); in vmw_ldu_destroy()
96 list_for_each_entry(entry, &lds->active, active) { in vmw_ldu_commit_list()
112 if (!list_empty(&lds->active)) { in vmw_ldu_commit_list()
113 entry = list_entry(lds->active.next, typeof(*entry), active); in vmw_ldu_commit_list()
125 list_for_each_entry(entry, &lds->active, active) { in vmw_ldu_commit_list()
150 if (list_empty(&ldu->active)) in vmw_ldu_del_active()
154 list_del_init(&ldu->active); in vmw_ldu_del_active()
183 if (!list_empty(&ldu->active)) in vmw_ldu_add_active()
[all …]
/netbsd-src/sys/arch/ews4800mips/stand/common/
H A Dcons_fb.c71 fb.active = true; in fb_init()
79 if (fb.active && !on) in fb_active()
82 fb.active = on; in fb_active()
84 if (fb.active && on) in fb_active()
92 if (!fb.active) in fb_scroll()
115 if (!fb.active) in fb_clear()
137 if (!fb.active) in fb_copy()
163 if (!fb.active) in fb_drawchar()
182 if (!fb.active) in fb_drawfont()
201 if (!fb.active) in fb_drawcursor()

12345678910>>...76