Home | History | Annotate | Download | only in ports

Lines Matching refs:gInited

1053     // Making gInited volatile provides read-aquire and write-release in vc++.
1056 static volatile bool gInited;
1058 if (gInited) {
1059 // Need a L/L (read) barrier (full acquire not needed). If gInited is observed
1064 // write to gInited becomes observable after gTableGdi.
1065 gInited = true;
1082 // Making gInited volatile provides read-aquire and write-release in vc++.
1085 static volatile bool gInited;
1087 if (gInited) {
1088 // Need a L/L (read) barrier (acquire not needed). If gInited is observed
1098 // write to gInited becomes observable after gTableClearType.
1099 gInited = true;