Home
last modified time | relevance | path

Searched refs:stack (Results 1 – 25 of 80) sorted by relevance

1234

/drivers/misc/altera-stapl/
Daltera.c213 long *stack = astate->stack; in altera_execute() local
528 stack[stack_ptr] = stack[stack_ptr - 1]; in altera_execute()
534 long_tmp = stack[stack_ptr - 2]; in altera_execute()
535 stack[stack_ptr - 2] = stack[stack_ptr - 1]; in altera_execute()
536 stack[stack_ptr - 1] = long_tmp; in altera_execute()
542 stack[stack_ptr - 1] += stack[stack_ptr]; in altera_execute()
548 stack[stack_ptr - 1] -= stack[stack_ptr]; in altera_execute()
554 stack[stack_ptr - 1] *= stack[stack_ptr]; in altera_execute()
560 stack[stack_ptr - 1] /= stack[stack_ptr]; in altera_execute()
566 stack[stack_ptr - 1] %= stack[stack_ptr]; in altera_execute()
[all …]
/drivers/gpu/drm/i915/
Dintel_runtime_pm.c69 static void __print_depot_stack(depot_stack_handle_t stack, in __print_depot_stack() argument
75 nr_entries = stack_depot_fetch(stack, &entries); in __print_depot_stack()
87 depot_stack_handle_t stack, *stacks; in track_intel_runtime_pm_wakeref() local
93 stack = __save_depot_stack(); in track_intel_runtime_pm_wakeref()
94 if (!stack) in track_intel_runtime_pm_wakeref()
100 rpm->debug.last_acquire = stack; in track_intel_runtime_pm_wakeref()
106 stacks[rpm->debug.count++] = stack; in track_intel_runtime_pm_wakeref()
109 stack = -1; in track_intel_runtime_pm_wakeref()
114 return stack; in track_intel_runtime_pm_wakeref()
118 depot_stack_handle_t stack) in untrack_intel_runtime_pm_wakeref() argument
[all …]
Di915_scheduler.c235 struct i915_dependency stack; in __i915_schedule() local
250 stack.signaler = node; in __i915_schedule()
251 list_add(&stack.dfs_link, &dfs); in __i915_schedule()
305 if (stack.dfs_link.next == stack.dfs_link.prev) in __i915_schedule()
308 __list_del_entry(&stack.dfs_link); in __i915_schedule()
Di915_gem_gtt.c367 struct pagevec stack; in vm_alloc_page() local
393 pagevec_init(&stack); in vm_alloc_page()
401 stack.pages[stack.nr++] = page; in vm_alloc_page()
402 } while (pagevec_space(&stack)); in vm_alloc_page()
404 if (stack.nr && !set_pages_array_wc(stack.pages, stack.nr)) { in vm_alloc_page()
405 page = stack.pages[--stack.nr]; in vm_alloc_page()
408 if (stack.nr) in vm_alloc_page()
409 stash_push_pagevec(&vm->i915->mm.wc_stash, &stack); in vm_alloc_page()
412 if (stack.nr) in vm_alloc_page()
413 stash_push_pagevec(&vm->free_pages, &stack); in vm_alloc_page()
[all …]
/drivers/misc/lkdtm/
Dbugs.c105 static noinline void __lkdtm_CORRUPT_STACK(void *stack) in __lkdtm_CORRUPT_STACK() argument
107 memset(stack, '\xff', 64); in __lkdtm_CORRUPT_STACK()
250 const unsigned char *stack = task_stack_page(current); in lkdtm_STACK_GUARD_PAGE_LEADING() local
251 const unsigned char *ptr = stack - 1; in lkdtm_STACK_GUARD_PAGE_LEADING()
264 const unsigned char *stack = task_stack_page(current); in lkdtm_STACK_GUARD_PAGE_TRAILING() local
265 const unsigned char *ptr = stack + THREAD_SIZE; in lkdtm_STACK_GUARD_PAGE_TRAILING()
Dusercopy.c31 static noinline unsigned char *trick_compiler(unsigned char *stack) in trick_compiler() argument
33 return stack + 0; in trick_compiler()
/drivers/gpu/drm/i915/selftests/
Di915_random.c47 char stack[128]; in i915_prandom_shuffle() local
49 if (WARN_ON(elsz > sizeof(stack) || count > U32_MAX)) in i915_prandom_shuffle()
63 memcpy(stack, arr + count * elsz, elsz); in i915_prandom_shuffle()
65 memcpy(arr + swp * elsz, stack, elsz); in i915_prandom_shuffle()
/drivers/gpu/drm/nouveau/nvif/
Dmem.c51 u8 stack[128]; in nvif_mem_init_type() local
58 if (sizeof(*args) + argc > sizeof(stack)) { in nvif_mem_init_type()
62 args = (void *)stack; in nvif_mem_init_type()
79 if (args != (void *)stack) in nvif_mem_init_type()
Dvmm.c40 u8 stack[48]; in nvif_vmm_map() local
43 if (sizeof(*args) + argc > sizeof(stack)) { in nvif_vmm_map()
47 args = (void *)stack; in nvif_vmm_map()
59 if (args != (void *)stack) in nvif_vmm_map()
Dobject.c146 u8 stack[128]; in nvif_object_mthd() local
149 if (sizeof(*args) + size > sizeof(stack)) { in nvif_object_mthd()
153 args = (void *)stack; in nvif_object_mthd()
163 if (args != (void *)stack) in nvif_object_mthd()
/drivers/infiniband/sw/rxe/
DKconfig11 the Linux network stack. It enables a system with a
19 Linux RDMA stack and implements a kernel or user space
23 with the Linux network stack at layer 3.
/drivers/firewire/
DKconfig8 tristate "FireWire driver stack"
11 This is the new-generation IEEE 1394 (FireWire) driver stack
15 for information about migration from the older Linux 1394 stack
16 to the new driver stack.
Dcore-topology.c174 struct list_head stack, *h; in build_tree() local
182 INIT_LIST_HEAD(&stack); in build_tree()
214 for (i = 0, h = &stack; i < child_port_count; i++) in build_tree()
279 __list_del(h->prev, &stack); in build_tree()
280 list_add_tail(&node->link, &stack); in build_tree()
/drivers/infiniband/sw/siw/
DKconfig7 the Linux TCP/IP network stack. It enables a system with a
12 The driver interfaces with the Linux RDMA stack and
/drivers/net/wireless/realtek/rtl8xxxu/
DKconfig10 parts written to utilize the Linux mac80211 stack.
18 from the in kernel mac80211 stack.
/drivers/char/
Drandom.c1762 } stack; in try_to_generate_entropy() local
1764 stack.now = random_get_entropy(); in try_to_generate_entropy()
1767 if (stack.now == random_get_entropy()) in try_to_generate_entropy()
1770 timer_setup_on_stack(&stack.timer, entropy_timer, 0); in try_to_generate_entropy()
1772 if (!timer_pending(&stack.timer)) in try_to_generate_entropy()
1773 mod_timer(&stack.timer, jiffies+1); in try_to_generate_entropy()
1774 mix_pool_bytes(&input_pool, &stack.now, sizeof(stack.now)); in try_to_generate_entropy()
1776 stack.now = random_get_entropy(); in try_to_generate_entropy()
1779 del_timer_sync(&stack.timer); in try_to_generate_entropy()
1780 destroy_timer_on_stack(&stack.timer); in try_to_generate_entropy()
[all …]
/drivers/staging/wusbcore/Documentation/
Dwusb-design-overview.rst29 This code implements a Ultra Wide Band stack for Linux, as well as
42 2. The UWB stack
89 *UWB*: the Ultra-Wide-Band stack -- manages the radio and
114 USB-based UWB Radio Controller to the UWB stack.
158 The UWB stack
161 The main mission of the UWB stack is to keep a tally of which devices
179 interface that the UWB stack provides through a struct uwb_rc_ops. The
207 Wire-Adaptor environment and then suck it into the UWB stack's vision of
212 [*] The stack should put a new RC to scan for devices
258 The UWB stack maintains a local copy of DRP availability through
[all …]
/drivers/media/mc/
Dmc-entity.c249 graph->stack[graph->top].link = entity->links.next; in stack_push()
250 graph->stack[graph->top].entity = entity; in stack_push()
257 entity = graph->stack[graph->top].entity; in stack_pop()
263 #define link_top(en) ((en)->stack[(en)->top].link)
264 #define stack_top(en) ((en)->stack[(en)->top].entity)
301 graph->stack[graph->top].entity = NULL; in media_graph_walk_start()
/drivers/memory/
Dti-emif-sram-pm.S50 stmfd sp!, {r4 - r11, lr} @ save registers on stack
296 stmfd sp!, {r4 - r11, lr} @ save registers on stack
353 stmfd sp!, {r4 - r11, lr} @ save registers on stack
/drivers/staging/rts5208/
DTODO4 - We will use the stack in drivers/mmc to implement
/drivers/net/ethernet/wiznet/
DKconfig27 PHY and hardware TCP/IP stack, but this driver is limited to
40 PHY and hardware TCP/IP stack, but this driver is limited to
/drivers/staging/wlan-ng/
DREADME4 - move to use the in-kernel wireless stack
/drivers/gpu/drm/amd/display/dc/dcn21/
DMakefile18 CFLAGS_$(AMDDALPATH)/dc/dcn21/dcn21_resource.o += -mpreferred-stack-boundary=4
/drivers/gpu/drm/amd/display/dc/dsc/
DMakefile16 dsc_ccflags += -mpreferred-stack-boundary=4
/drivers/isdn/mISDN/
DMakefile12 mISDN_core-objs := core.o fsm.o socket.o clock.o hwchannel.o stack.o layer1.o layer2.o tei.o timerd…

1234