Searched refs:next (Results 101 - 125 of 3417) sorted by relevance

1234567891011>>

/linux-master/arch/powerpc/mm/book3s32/
H A Dmmu_context.c114 void switch_mmu_context(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
116 long id = next->context.id;
119 panic("mm_struct %p has no context ID", next);
123 update_user_segments(next->context.sr0);
126 abatron_pteptrs[1] = next->pgd;
129 mtspr(SPRN_SDR1, rol32(__pa(next->pgd), 4) & 0xffff01ff);
/linux-master/arch/powerpc/include/asm/
H A Dbootx.h29 u32 next; member in struct:bootx_dt_prop
45 u32 next; member in struct:bootx_dt_node
/linux-master/drivers/gpu/drm/i915/gt/
H A Dselftest_ring.c32 u32 next, u32 prev,
37 result = intel_ring_direction(ring, next, prev);
45 next, prev, result, expected);
54 u32 prev = x, next = intel_ring_wrap(ring, x + step); local
57 err |= check_ring_direction(ring, next, next, 0);
59 err |= check_ring_direction(ring, next, prev, 1);
60 err |= check_ring_direction(ring, prev, next, -1);
31 check_ring_direction(struct intel_ring *ring, u32 next, u32 prev, int expected) argument
/linux-master/kernel/trace/
H A Dpid_list.h13 * of the bits. The 8 MSB is the "upper1" section. The next 8 MSB is the
28 * pid_list to find the next upper union. If the element is NULL,
32 * The next 8 MSB is used to index into the "upper2" section. If this
69 union lower_chunk *next; member in union:lower_chunk
74 union upper_chunk *next; member in union:upper_chunk
/linux-master/arch/arm/include/asm/
H A Dmmu_context.h108 #define activate_mm(prev,next) switch_mm(prev, next, NULL)
117 switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
129 !cpumask_empty(mm_cpumask(next)) &&
130 !cpumask_test_cpu(cpu, mm_cpumask(next)))
133 if (!cpumask_test_and_set_cpu(cpu, mm_cpumask(next)) || prev != next) {
134 check_and_switch_context(next, tsk);
/linux-master/security/selinux/ss/
H A Dconstraint.h55 struct constraint_expr *next; /* next expression */ member in struct:constraint_expr
61 struct constraint_node *next; /* next constraint */ member in struct:constraint_node
/linux-master/arch/alpha/kernel/
H A Derr_common.c152 /* return the next header */
161 struct el_subpacket *next = NULL;
164 for (; h && h->class != header->class; h = h->next);
165 if (h) next = h->handler(header);
167 return next;
199 struct el_subpacket *next = NULL;
206 next = el_process_header_subpacket(header);
209 if (NULL == (next = el_process_subpacket_reg(header))) {
218 return next;
227 for (a = subpacket_annotation_list; a; a = a->next) {
159 struct el_subpacket *next = NULL; local
197 struct el_subpacket *next = NULL; local
[all...]
/linux-master/fs/ntfs3/lib/
H A Ddecompress_common.h58 * left-justified; the next bit is always bit 31.
65 /* Pointer to the next byte to be retrieved from the input buffer. */
66 const u8 *next; member in struct:input_bitstream
78 is->next = buffer;
79 is->end = is->next + size;
91 if (is->end - is->next >= 2) {
92 is->bitbuf |= (u32)get_unaligned_le16(is->next)
94 is->next += 2;
100 /* Return the next @num_bits bits from the bitstream, without removing them.
134 /* Read and return the next
[all...]
/linux-master/arch/x86/mm/
H A Dkasan_init_64.c77 unsigned long next; local
97 next = pmd_addr_end(addr, end);
99 kasan_populate_pmd(pmd, addr, next, nid);
100 } while (pmd++, addr = next, addr != end);
107 unsigned long next; local
117 next = pud_addr_end(addr, end);
119 kasan_populate_pud(pud, addr, next, nid);
120 } while (pud++, addr = next, addr != end);
128 unsigned long next; local
137 next
146 unsigned long next; local
210 unsigned long next; local
236 unsigned long next; local
250 unsigned long next; local
266 unsigned long addr, next; local
[all...]
/linux-master/block/partitions/
H A Dcmdline.c74 char *next = strchr(++partdef, ')'); local
76 if (!next) {
82 length = min_t(int, next - partdef,
86 partdef = ++next;
123 char *next; local
135 next = strchr(bdevdef, ':');
136 if (!next) {
141 length = min_t(int, next - bdevdef, sizeof(newparts->name) - 1);
147 while (next && *(++next)) {
197 char *next; local
[all...]
/linux-master/mm/
H A Dpagewalk.c119 unsigned long next; local
127 next = pmd_addr_end(addr, end);
130 err = ops->pte_hole(addr, next, depth, walk);
143 err = ops->pmd_entry(pmd, addr, next, walk);
163 err = walk_hugepd_range((hugepd_t *)pmd, addr, next, walk, PMD_SHIFT);
165 err = walk_pte_range(pmd, addr, next, walk);
172 } while (pmd++, addr = next, addr != end);
181 unsigned long next; local
189 next = pud_addr_end(addr, end);
192 err = ops->pte_hole(addr, next, dept
233 unsigned long next; local
268 unsigned long next; local
314 unsigned long next; local
475 unsigned long next; local
[all...]
/linux-master/tools/power/cpupower/lib/
H A Dcpufreq.c290 current->next = malloc(sizeof(*current));
291 if (!current->next)
293 current = current->next;
301 current->next = NULL;
317 current = first->next;
328 struct cpufreq_available_governors *tmp, *next; local
335 next = tmp->next;
339 tmp = next;
367 current->next
458 struct cpufreq_available_frequencies *tmp, *next; local
539 struct cpufreq_affected_cpus *tmp, *next; local
769 struct cpufreq_stats *tmp, *next; local
[all...]
/linux-master/arch/sparc/include/asm/
H A Dcpudata_32.h25 int next; member in struct:__anon1136
/linux-master/arch/powerpc/boot/dts/fsl/
H A Dmpc8572si-pre.dtsi64 next-level-cache = <&L2>;
70 next-level-cache = <&L2>;
H A Dp1020si-pre.dtsi62 next-level-cache = <&L2>;
68 next-level-cache = <&L2>;
H A Dp1021si-pre.dtsi62 next-level-cache = <&L2>;
68 next-level-cache = <&L2>;
H A Dp1022si-pre.dtsi64 next-level-cache = <&L2>;
70 next-level-cache = <&L2>;
H A Dp1023si-pre.dtsi70 next-level-cache = <&L2>;
76 next-level-cache = <&L2>;
H A Dp2020si-pre.dtsi63 next-level-cache = <&L2>;
69 next-level-cache = <&L2>;
/linux-master/drivers/net/ethernet/chelsio/cxgb3/
H A Dcxgb3_defs.h83 if ((void *)e->next >= (void *)t->tid_tab &&
84 (void *)e->next < (void *)&t->atid_tab[t->natids])
102 if ((void *)e->next >= (void *)t->tid_tab &&
103 (void *)e->next < (void *)&t->atid_tab[t->natids])
/linux-master/include/linux/
H A Dif_tunnel.h15 for (pos = rcu_dereference(start); pos; pos = rcu_dereference(pos->next))
/linux-master/net/netlabel/
H A Dnetlabel_addrlist.h64 i = i->next;
83 for (iter = __af4list_valid((head)->next, head); \
85 iter = __af4list_valid(iter->list.next, head))
88 for (iter = __af4list_valid_rcu((head)->next, head); \
90 iter = __af4list_valid_rcu(iter->list.next, head))
93 for (iter = __af4list_valid((head)->next, head), \
94 tmp = __af4list_valid(iter->list.next, head); \
96 iter = tmp, tmp = __af4list_valid(iter->list.next, head))
131 i = i->next;
150 for (iter = __af6list_valid((head)->next, hea
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dcore_read_macros.c7 struct callback_head *next; member in struct:callback_head
17 struct callback_head___shuffled *next; member in struct:callback_head___shuffled
37 /* next pointers have to be set from the kernel side */
41 u_probe_in.next = &u_probe_in;
45 u_core_in.next = &u_core_in;
/linux-master/lib/
H A Dtimerqueue.c75 struct rb_node *next; local
79 next = rb_next(&node->node);
80 if (!next)
82 return container_of(next, struct timerqueue_node, node);
/linux-master/sound/pci/ctxfi/
H A Dctimap.h24 unsigned short next; /* the next input mapper ram id */ member in struct:imapper

Completed in 795 milliseconds

1234567891011>>