Home
last modified time | relevance | path

Searched defs:state (Results 601 - 625 of 2756) sorted by relevance

1...<<21222324252627282930>>...111

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkQueryPool.hpp43 State state; // The current query state. member
81 std::atomic<State> state; member in vk::Query
[all...]
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/
H A DClearImageBenchmarks.cpp128 static void ClearImage(benchmark::State &state, vk::Format clearFormat, vk::ImageAspectFlagBits clearAspect) in ClearImage() argument
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_affixutils.h38 AffixPatternState state; member
231 static inline AffixTag makeTag(int32_t offset, AffixPatternType type, AffixPatternState state, in makeTag() argument
/third_party/skia/third_party/externals/icu/source/samples/uciter8/
H A Duciter8.c229 uint32_t state; in testIteratorState() local
H A Duit_len8.c487 uint32_t state=(uint32_t)(iter->start<<1); in lenient8IteratorGetState() local
495 lenient8IteratorSetState(UCharIterator *iter, uint32_t state, UErrorCode *pErrorCode) { in lenient8IteratorSetState() argument
[all...]
/third_party/skia/third_party/externals/imgui/backends/
H A Dimgui_impl_glut.cpp180 void ImGui_ImplGLUT_MouseFunc(int glut_button, int state, int x, int y) in ImGui_ImplGLUT_MouseFunc() argument
/third_party/skia/src/pdf/
H A DSkPDFGraphicState.cpp67 SkPDFDict state; in GetGraphicStateForPaint() local
87 SkPDFDict state; in GetGraphicStateForPaint() local
[all...]
/third_party/skia/src/sksl/
H A DSkSLLexer.cpp458 State get_transition(int transition, int state) { in get_transition() argument
504 State state = 1; in next() local
/third_party/skia/tests/
H A DPathOpsSimplifyQuadThreadedTest.cpp16 PathOpsThreadState& state = *data; in testSimplifyQuadsMain() local
[all...]
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp16 PathOpsThreadState& state = *data; in testSimplifyQuadralateralsMain() local
[all...]
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/dec/
H A Ddecoder_jni.cc16 BrotliDecoderState* state; member
[all...]
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/
H A Dencoder_jni.cc16 BrotliEncoderState* state; member
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUBuffer.cpp67 State& state; in mapAsync() member
/third_party/skia/third_party/externals/freetype/src/lzw/
H A Dftzopen.c213 ft_lzwstate_init( FT_LzwState state, FT_Stream source ) ft_lzwstate_init() argument
[all...]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinffast_chunk.c78 struct inflate_state FAR *state; local
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dinffast.c58 struct inflate_state FAR *state; local
[all...]
/third_party/skia/tools/viewer/
H A DAnimTimer.h32 State state() const { return fState; } in state() function in AnimTimer
/third_party/python/Modules/_sqlite/
H A Dstatement.c34 pysqlite_state *state = connection->state; in pysqlite_statement_create() local
203 pysqlite_state *state = pysqlite_get_state(module); in pysqlite_statement_setup_types() local
H A Dutil.c29 get_exception_class(pysqlite_state *state, int errorcode) in get_exception_class() argument
121 _pysqlite_seterror(pysqlite_state *state, sqlite3 *db) in _pysqlite_seterror() argument
[all...]
/third_party/python/Modules/
H A Dspwdmodule.c69 void *state = PyModule_GetState(module); in get_spwd_state() local
213 spwdmodulestate *state = get_spwd_state(module); in spwdmodule_exec() local
H A Datexitmodule.c26 atexit_delete_cb(struct atexit_state *state, int i) in atexit_delete_cb() argument
40 atexit_cleanup(struct atexit_state *state) in atexit_cleanup() argument
57 struct atexit_state *state = &interp->atexit; in _PyAtExit_Init() local
74 struct atexit_state *state = &interp->atexit; _PyAtExit_Fini() local
82 atexit_callfuncs(struct atexit_state *state) atexit_callfuncs() argument
117 struct atexit_state *state = &interp->atexit; _PyAtExit_Call() local
153 struct atexit_state *state = get_atexit_state(); atexit_register() local
193 struct atexit_state *state = get_atexit_state(); atexit_run_exitfuncs() local
218 struct atexit_state *state = get_atexit_state(); atexit_ncallbacks() local
233 struct atexit_state *state = get_atexit_state(); atexit_unregister() local
[all...]
/third_party/pulseaudio/src/tests/
H A Dhashmap-test.c174 void* state; in START_TEST() local
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_benchmark.cc34 void RunBenchmark(benchmark::State& state, T value) { in RunBenchmark() argument
52 friend H AbslHashValue(H state, const TypeErasedInterface& wrapper) { in AbslHashValue() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/functional/
H A Dfunction_ref_benchmark.cc45 void ConstructAndCallFunctionBenchmark(benchmark::State& state, in ConstructAndCallFunctionBenchmark() argument
52 void BM_TrivialStdFunction(benchmark::State& state) { in BM_TrivialStdFunction() argument
58 void BM_TrivialFunctionRef(benchmark::State& state) { in BM_TrivialFunctionRef() argument
64 void BM_LargeStdFunction(benchmark::State& state) { in BM_LargeStdFunction() argument
70 void BM_LargeFunctionRef(benchmark::State& state) { in BM_LargeFunctionRef() argument
75 BM_FunPtrStdFunction(benchmark::State& state) BM_FunPtrStdFunction() argument
80 BM_FunPtrFunctionRef(benchmark::State& state) BM_FunPtrFunctionRef() argument
87 CallFunctionBenchmark(benchmark::State& state, const Callable& c, Args... args) CallFunctionBenchmark() argument
104 BM_TrivialArgsStdFunction(benchmark::State& state) BM_TrivialArgsStdFunction() argument
110 BM_TrivialArgsFunctionRef(benchmark::State& state) BM_TrivialArgsFunctionRef() argument
124 BM_NonTrivialArgsStdFunction(benchmark::State& state) BM_NonTrivialArgsStdFunction() argument
132 BM_NonTrivialArgsFunctionRef(benchmark::State& state) BM_NonTrivialArgsFunctionRef() argument
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dstr_cat_benchmark.cc34 void BM_Sum_By_StrCat(benchmark::State& state) { in BM_Sum_By_StrCat() argument
50 void BM_StrCat_By_snprintf(benchmark::State& state) { in BM_StrCat_By_snprintf() argument
60 void BM_StrCat_By_Strings(benchmark::State& state) { in BM_StrCat_By_Strings() argument
71 void BM_StrCat_By_StringOpPlus(benchmark::State& state) { in BM_StrCat_By_StringOpPlus() argument
85 void BM_StrCat_By_StrCat(benchmark::State& state) { in BM_StrCat_By_StrCat() argument
95 BM_HexCat_By_StrCat(benchmark::State& state) BM_HexCat_By_StrCat() argument
106 BM_HexCat_By_Substitute(benchmark::State& state) BM_HexCat_By_Substitute() argument
117 BM_FloatToString_By_StrCat(benchmark::State& state) BM_FloatToString_By_StrCat() argument
128 BM_DoubleToString_By_SixDigits(benchmark::State& state) BM_DoubleToString_By_SixDigits() argument
141 BM_StrAppendImpl(benchmark::State& state, size_t total_bytes, Chunks... chunks) BM_StrAppendImpl() argument
152 BM_StrAppend(benchmark::State& state) BM_StrAppend() argument
[all...]

Completed in 11 milliseconds

1...<<21222324252627282930>>...111