Lines Matching refs:intptr_t
52 intptr_t v;
60 intptr_t count;
70 intptr_t data;
177 intptr_t *targetptr, newval, expect; in this_cpu_list_push()
182 expect = (intptr_t)RSEQ_READ_ONCE(list->c[cpu].head); in this_cpu_list_push()
183 newval = (intptr_t)node; in this_cpu_list_push()
184 targetptr = (intptr_t *)&list->c[cpu].head; in this_cpu_list_push()
206 intptr_t *targetptr, expectnot, *load; in this_cpu_list_pop()
211 targetptr = (intptr_t *)&list->c[cpu].head; in this_cpu_list_pop()
212 expectnot = (intptr_t)NULL; in this_cpu_list_pop()
214 load = (intptr_t *)&head; in this_cpu_list_pop()