Searched defs:dso_global (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/msan/tests/
H A Dmsan_loadable.cc18 static void *dso_global; variable
28 if (dso_global == NULL)
29 dso_global = malloc(4);
36 free(dso_global);
42 return &dso_global;
H A Dmsan_test.cc2751 void **dso_global = get_dso_global(); local
2752 EXPECT_NOT_POISONED(*dso_global);
2753 __msan_poison(dso_global, sizeof(*dso_global));
2754 EXPECT_POISONED(*dso_global);

Completed in 162 milliseconds