HomeSort by relevance Sort by last modified time
    Searched refs:gCounter (Results 1 - 5 of 5) sorted by null

  /external/skia/gpu/include/
GrInstanceCounter.h 26 ++gCounter;
27 GrPrintf("+ %s %d\n", T::InstanceCounterClassName(), gCounter);
31 --gCounter;
32 GrPrintf("- %s %d\n", T::InstanceCounterClassName(), gCounter);
36 static int gCounter;
39 template <typename T> int GrInstanceCounter<T>::gCounter;
  /external/chromium/net/data/proxy_resolver_v8_unittest/
side_effects.js 1 if (!gCounter) {
3 // gCounter remains dirty.
4 var gCounter = 0;
8 return "PROXY sideffect_" + gCounter++;
  /external/skia/gpu/src/
GrTextStrike.cpp 116 static int gCounter;
140 GrPrintf(" GrTextStrike %p %d\n", this, gCounter);
141 gCounter += 1;
153 gCounter -= 1;
154 GrPrintf("~GrTextStrike %p %d\n", this, gCounter);
173 static int gCounter;
174 if ((++gCounter % 10) == 0) return false;
GrAtlas.cpp 51 static int gCounter;
66 GrPrintf(" GrAtlas %p [%d %d] %d\n", this, plotX, plotY, gCounter);
67 gCounter += 1;
77 --gCounter;
78 GrPrintf("~GrAtlas %p [%d %d] %d\n", this, fPlot.fX, fPlot.fY, gCounter);
  /external/skia/src/core/
SkPackBits.cpp 78 static int gCounter;
83 gCounter += 1;
85 if ((gCounter & 0xFF) == 0) {
97 gCounter += 1;
99 if ((gCounter & 0x1FF) == 0) {

Completed in 97 milliseconds