Lines Matching defs:dst
38 volatile signed short *dst, signed short *src,
47 * RDI - dst
62 "\tmovq %[dst], %%rdi\n"
66 "\tmovl %[dst], %%edi\n"
84 * if (cmpxchg(*dst, 0, 1) == 0)
102 * *dst = sample;
140 : [dst] "m" (dst), [src] "m" (src), [sum] "m" (sum),
160 volatile signed int *dst, signed int *src,
169 * RDI - dst
184 "\tmovq %[dst], %%rdi\n"
188 "\tmovl %[dst], %%edi\n"
206 * if (cmpxchg(*dst, 0, 1) == 0)
231 * *dst = sample;
282 : [dst] "m" (dst), [src] "m" (src), [sum] "m" (sum),
296 volatile unsigned char *dst, unsigned char *src,
305 * RDI - dst
320 "\tmovq %[dst], %%rdi\n"
324 "\tmovl %[dst], %%edi\n"
342 * if (test_and_set_bit(0, dst) == 0)
361 * *dst = sample | 1;
406 : [dst] "m" (dst), [src] "m" (src), [sum] "m" (sum),