• Home
  • Raw
  • Download

Lines Matching refs:addr

8 int test_ldrex(char *addr, long long *addr64, float *addrfloat) {  in test_ldrex()  argument
12 sum += __builtin_arm_ldrex(addr); in test_ldrex()
19 sum += __builtin_arm_ldrex((short *)addr); in test_ldrex()
28 sum += __builtin_arm_ldrex((int *)addr); in test_ldrex()
36 sum += __builtin_arm_ldrex((long long *)addr); in test_ldrex()
60 sum += __builtin_arm_ldrex((double *)addr); in test_ldrex()
77 sum += *__builtin_arm_ldrex((int **)addr); in test_ldrex()
88 sum += __builtin_arm_ldrex((struct Simple **)addr)->a; in test_ldrex()
101 int test_ldaex(char *addr, long long *addr64, float *addrfloat) { in test_ldaex() argument
105 sum += __builtin_arm_ldaex(addr); in test_ldaex()
112 sum += __builtin_arm_ldaex((short *)addr); in test_ldaex()
121 sum += __builtin_arm_ldaex((int *)addr); in test_ldaex()
129 sum += __builtin_arm_ldaex((long long *)addr); in test_ldaex()
153 sum += __builtin_arm_ldaex((double *)addr); in test_ldaex()
170 sum += *__builtin_arm_ldaex((int **)addr); in test_ldaex()
181 sum += __builtin_arm_ldaex((struct Simple **)addr)->a; in test_ldaex()
194 int test_strex(char *addr) { in test_strex() argument
199 res |= __builtin_arm_strex(4, addr); in test_strex()
204 res |= __builtin_arm_strex(42, (short *)addr); in test_strex()
211 res |= __builtin_arm_strex(42, (int *)addr); in test_strex()
218 res |= __builtin_arm_strex(42, (long long *)addr); in test_strex()
231 res |= __builtin_arm_strex(2.71828f, (float *)addr); in test_strex()
240 res |= __builtin_arm_strex(3.14159, (double *)addr); in test_strex()
254 res |= __builtin_arm_strex(&var, (struct Simple **)addr); in test_strex()
268 int test_stlex(char *addr) { in test_stlex() argument
273 res |= __builtin_arm_stlex(4, addr); in test_stlex()
278 res |= __builtin_arm_stlex(42, (short *)addr); in test_stlex()
285 res |= __builtin_arm_stlex(42, (int *)addr); in test_stlex()
292 res |= __builtin_arm_stlex(42, (long long *)addr); in test_stlex()
305 res |= __builtin_arm_stlex(2.71828f, (float *)addr); in test_stlex()
314 res |= __builtin_arm_stlex(3.14159, (double *)addr); in test_stlex()
328 res |= __builtin_arm_stlex(&var, (struct Simple **)addr); in test_stlex()
354 __int128 test_ldrex_128(__int128 *addr) { in test_ldrex_128() argument
357 return __builtin_arm_ldrex(addr); in test_ldrex_128()
369 int test_strex_128(__int128 *addr, __int128 val) { in test_strex_128() argument
372 return __builtin_arm_strex(val, addr); in test_strex_128()
382 __int128 test_ldaex_128(__int128 *addr) { in test_ldaex_128() argument
385 return __builtin_arm_ldaex(addr); in test_ldaex_128()
397 int test_stlex_128(__int128 *addr, __int128 val) { in test_stlex_128() argument
400 return __builtin_arm_stlex(val, addr); in test_stlex_128()