Lines Matching full:bits
21 define void @fetch_and_nand(i128* %p, i128 %bits) {
33 %val = atomicrmw nand i128* %p, i128 %bits release
38 define void @fetch_and_or(i128* %p, i128 %bits) {
48 %val = atomicrmw or i128* %p, i128 %bits seq_cst
53 define void @fetch_and_add(i128* %p, i128 %bits) {
63 %val = atomicrmw add i128* %p, i128 %bits seq_cst
68 define void @fetch_and_sub(i128* %p, i128 %bits) {
78 %val = atomicrmw sub i128* %p, i128 %bits seq_cst
83 define void @fetch_and_min(i128* %p, i128 %bits) {
99 %val = atomicrmw min i128* %p, i128 %bits seq_cst
104 define void @fetch_and_max(i128* %p, i128 %bits) {
120 %val = atomicrmw max i128* %p, i128 %bits seq_cst
125 define void @fetch_and_umin(i128* %p, i128 %bits) {
141 %val = atomicrmw umin i128* %p, i128 %bits seq_cst
146 define void @fetch_and_umax(i128* %p, i128 %bits) {
162 %val = atomicrmw umax i128* %p, i128 %bits seq_cst