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

/external/skia/src/ports/
H A DSkFontHost_win.cpp1040 // Making gInited volatile provides read-aquire and write-release in vc++.
1043 static volatile bool gInited; local
1045 if (gInited) {
1046 // Need a L/L (read) barrier (full acquire not needed). If gInited is observed
1051 // write to gInited becomes observable after gTableGdi.
1052 gInited = true;
1069 // Making gInited volatile provides read-aquire and write-release in vc++.
1072 static volatile bool gInited; local
1074 if (gInited) {
1075 // Need a L/L (read) barrier (acquire not needed). If gInited i
[all...]
H A DSkFontHost_mac.cpp1142 static bool gInited; local
1144 if (!gInited) {
1146 gInited = true;

Completed in 91 milliseconds