Lines Matching refs:racey
3943 // Test for race inside DTOR: racey write to vptr. Benign.
3944 // This test shows a racey access to vptr (the pointer to vtbl).
5236 // This is racey on Windows!
5471 // We expect a race on the first racey byte, but we may also see some
5834 int *racey = &stack;
5835 q.Put(racey);
5836 (*racey)++;
5870 int RACEY = 0;
5875 tp.Add(NewCallback(Worker, &RACEY));
5876 tp.Add(NewCallback(Worker, &RACEY));
5886 int RACEY = 0;
5894 producers_tp.Add(NewCallback(PutWorkerOn, &consumers_tp, &RACEY));
5895 producers_tp.Add(NewCallback(PutWorkerOn, &consumers_tp, &RACEY));
6053 int &RACEY = GLOB.a;
6056 RACEY++;
6061 ANNOTATE_TRACE_MEMORY(&RACEY);
6062 ANNOTATE_EXPECT_RACE_FOR_TSAN(&RACEY, "Real race");
6084 int *RACEY = NULL;
6087 (*RACEY)++;
6094 RACEY = &(GLOB->a);
6095 ANNOTATE_TRACE_MEMORY(RACEY);
6096 ANNOTATE_EXPECT_RACE_FOR_TSAN(RACEY, "Real race");