Lines Matching defs:dst
195 __attribute__((aligned(16))) char dst[LEN(data)] = {0};
196 __atomic_load_c(n, data, dst, model);
197 if (memcmp(dst, data, n) != 0)
203 __attribute__((aligned(16))) char dst[LEN(data)] = {0};
204 __atomic_load_c(n, data + 1, dst + 1, model);
205 if (memcmp(dst + 1, data + 1, n) != 0)
237 __attribute__((aligned(16))) char dst[LEN(data)];
238 __atomic_store_c(n, dst, data, model);
239 if (memcmp(data, dst, n) != 0)
245 __attribute__((aligned(16))) char dst[LEN(data)];
246 __atomic_store_c(n, dst + 1, data + 1, model);
247 if (memcmp(data + 1, dst + 1, n) != 0)
287 __attribute__((aligned(16))) char dst[LEN(data)];
289 for (int i = 0; i < LEN(dst); i++)
290 dst[i] = i + m;
291 __atomic_exchange_c(n, dst, data, old, model);
293 if (dst[i] != 0x10 + i || old[i] != i + m)
300 __attribute__((aligned(16))) char dst[LEN(data)];
302 for (int i = 1; i < LEN(dst); i++)
303 dst[i] = i - 1 + m;
304 __atomic_exchange_c(n, dst + 1, data + 1, old + 1, model);
306 if (dst[i] != 0x10 + i || old[i] != i - 1 + m)
345 __attribute__((aligned(16))) char dst[LEN(data)] = {0};
347 if (!__atomic_compare_exchange_c(n, dst, exp, data, m_succ, m_fail))
349 if (memcmp(dst, data, n) != 0)
351 if (__atomic_compare_exchange_c(n, dst, exp, data, m_succ, m_fail))
359 __attribute__((aligned(16))) char dst[LEN(data)] = {0};
361 if (!__atomic_compare_exchange_c(n, dst + 1, exp + 1, data + 1,
364 if (memcmp(dst + 1, data + 1, n) != 0)
366 if (__atomic_compare_exchange_c(n, dst + 1, exp + 1, data + 1, m_succ,