Searched defs:fState (Results 1 - 25 of 29) sorted by relevance

12

/external/skia/include/gpu/gl/
H A DSkNullGLContext.h33 ContextState* fState; member in class:SkNullGLContext
/external/icu/icu4c/source/common/
H A Dumutex.h218 u_atomic_int32_t fState; member in struct:UInitOnce
220 void reset() {fState = 0;};
221 UBool isReset() {return umtx_loadAcquire(fState) == 0;};
233 if (umtx_loadAcquire(uio.fState) == 2) {
246 if (umtx_loadAcquire(uio.fState) == 2) {
261 if (umtx_loadAcquire(uio.fState) != 2 && umtx_initImplPreInit(uio)) {
277 if (umtx_loadAcquire(uio.fState) == 2) {
292 if (umtx_loadAcquire(uio.fState) != 2 && umtx_initImplPreInit(uio)) {
/external/skia/include/private/
H A DSkMiniRecorder.h47 State fState; member in class:SkMiniRecorder
H A DSkOncePtr.h64 uintptr_t state = sk_atomic_load(&fState, sk_memory_order_acquire);
70 &fState, &state, (uintptr_t)1, sk_memory_order_relaxed, sk_memory_order_relaxed)) {
71 // We've claimed it. Create our pointer and store it into fState.
74 sk_atomic_store(&fState, state, sk_memory_order_release);
85 state = sk_atomic_load(&fState, sk_memory_order_acquire);
95 auto state = sk_atomic_load(&fState, sk_memory_order_acquire);
100 // fState == 0 --> we have not created our ptr yet
101 // fState == 1 --> someone is in the middle of creating our ptr
102 // else --> (T*)fState is our ptr
103 mutable uintptr_t fState; member in class:SkBaseOncePtr
[all...]
/external/skia/src/core/
H A DSkBitmapProcShader.h50 SkBitmapProcState* fState; member in class:SkBitmapProcShader::BitmapProcShaderContext
H A DSkDeviceLooper.h37 SkASSERT(kDone_State != fState);
43 SkASSERT(kDone_State != fState);
81 State fState; member in class:SkDeviceLooper
H A DSkBlitter_PM4f.cpp19 State fState; member in class:SkState_Blitter
24 , fState(device.info(), paint, nullptr)
30 fState.fProc1(fState.fXfer, State::WritableAddr(fDevice, x, y),
31 &fState.fPM4f, width, nullptr);
41 fState.fProc1(fState.fXfer, device, &fState.fPM4f, 1, &alpha);
54 fState.fProc1(fState
278 State fState; member in class:SkState_Shader_Blitter
[all...]
/external/skia/tools/VisualBench/
H A DVisualDebugModule.h32 State fState; member in class:VisualDebugModule
H A DTimingStateMachine.h67 State fState; member in class:TimingStateMachine
/external/skia/include/core/
H A DSkDocument.h177 State getState() const { return fState; }
182 State fState; member in class:SkDocument
/external/skia/gm/
H A DSkAnimTimer.h32 SkAnimTimer() : fBaseTime(0), fCurrTime(0), fState(kStopped_State) {}
34 bool isStopped() const { return kStopped_State == fState; }
35 bool isRunning() const { return kRunning_State == fState; }
36 bool isPaused() const { return kPaused_State == fState; }
57 if (kRunning_State == fState) {
72 if (kRunning_State == fState) {
107 State fState; member in class:SkAnimTimer
113 fState = kStopped_State;
116 if (kRunning_State == fState) {
117 fState
[all...]
/external/skia/src/animator/
H A DSkAnimateActive.h68 SkTDArray<SkState> fState; // one per animator member in class:SkActive
/external/skia/include/effects/
H A DSkBlurDrawLooper.h81 State fState; member in class:SkBlurDrawLooper::BlurDrawLooperContext
/external/skia/include/views/
H A DSkTouchGesture.h62 State fState; member in class:SkTouchGesture
H A DSkWidget.h74 SkButtonWidget(uint32_t flags = 0) : SkHasLabelWidget(flags), fState(kOff_State) {}
81 State getButtonState() const { return fState; }
92 State fState; member in class:SkButtonWidget
236 State getState() const { return fState; }
244 State fState; member in class:SkCheckBoxView
H A DSkView.h157 State fState; member in class:SkView::Click
/external/skia/platform_tools/android/apps/visualbench/src/main/jni/
H A Dmain.cpp25 VisualBenchState() : fApp(nullptr), fWindow(nullptr), fState(kInit_State) {}
29 State fState; member in struct:VisualBenchState
37 if (state->fApp->window != nullptr && kInit_State == state->fState) {
55 state->fState = kAnimate_State;
59 state->fState = kDestroyRequested_State;
120 visualBenchState.fState = kDestroyRequested_State;
126 if (kDestroyRequested_State == visualBenchState.fState) {
131 visualBenchState.fState = kFinished_State;
/external/skia/tests/
H A DPathOpsThreadedCommon.h50 fState.fA = a;
51 fState.fB = b;
52 fState.fC = c;
53 fState.fD = d;
54 fState.fReporter = runner->fReporter;
60 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
61 strcpy(fState.fSerialNo, str);
62 fState.fReporter = runner->fReporter;
68 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
69 fState
85 PathOpsThreadState fState; member in class:PathOpsThreadedRunnable
[all...]
H A DPathOpsSkpClipTest.cpp263 (*fTestFun)(&fState);
266 TestState fState; member in class:TestRunnable
274 fState.init(dirNo);
283 fState.init(dirNo);
284 strcpy(fState.fResult.fFilename, name);
293 fState.fResult.fTestStep = kEncodeFiles;
871 TestState& testState = testRunner.fRunnables[dirNo - 1]->fState;
H A DSkpSkGrTest.cpp147 SkASSERT(strlen(str) < sizeof(fState.fResult.fFilename) - 1);
148 fState.init(dirNo);
149 strcpy(fState.fResult.fFilename, str);
150 fState.fReporter = runner->fReporter;
156 (*fTestFun)(&fState);
159 SkpSkGrThreadState fState; member in class:SkpSkGrThreadedRunnable
711 SkpSkGrThreadState& max = testRunner.fRunnables[0]->fState;
713 SkpSkGrThreadState& state = testRunner.fRunnables[dirIndex - 1]->fState;
/external/dng_sdk/source/
H A Ddng_iptc.h62 dng_string fState; member in class:dng_iptc
/external/skia/src/gpu/
H A DGrBatchFlushState.h129 Target(GrBatchFlushState* state, GrDrawBatch* batch) : fState(state), fBatch(batch) {}
133 fState->addASAPUpload(upload);
140 return fState->hasTokenBeenFlushed(token);
142 GrBatchToken currentToken() const { return fState->currentToken(); }
143 GrBatchToken asapToken() const { return fState->asapToken(); }
145 const GrCaps& caps() const { return fState->caps(); }
147 GrResourceProvider* resourceProvider() const { return fState->resourceProvider(); }
151 GrBatchFlushState* state() { return fState; }
154 GrBatchFlushState* fState; member in class:GrDrawBatch::Target
/external/skia/src/pathops/
H A DSkOpContour.h157 return fState;
226 fState = globalState;
252 if (fState->angleCoincidence()) {
361 fState = state;
418 SkOpGlobalState* fState; member in class:SkOpContour
/external/skia/src/gpu/gl/
H A DSkNullGLContext.cpp385 NullInterface(State* state) : fState(SkRef(state)) {}
387 fState->unref();
389 State* fState; member in class:__anon17387::NullInterface
592 fState = new ContextState;
593 GrGLInterface* interface = create_null_interface(fState);
597 interface->fCallbackData = reinterpret_cast<GrGLInterfaceCallbackData>(fState);
603 fState->unref();
606 void SkNullGLContext::onPlatformMakeCurrent() const { set_current_context(fState); }
/external/skia/src/pdf/
H A DSkPDFDevice.cpp592 GraphicStateEntry fState; member in struct:ContentEntry
777 if (!contentEntry->fState.fMatrix.invert(&inverse)) {
1316 SkPDFFont* font = content.entry()->fState.fFont;
1385 SkPDFFont* font = content.entry()->fState.fFont;
1391 font = content.entry()->fState.fFont;
1585 gsState.updateClip(entry->fState.fClipStack, entry->fState.fClipRegion,
1587 gsState.updateMatrix(entry->fState.fMatrix);
1588 gsState.updateDrawingState(entry->fState);
1879 hasText, &entry->fState);
[all...]

Completed in 2350 milliseconds

12