Searched refs:once (Results 26 - 50 of 466) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/vpx_dsp/
H A Dvpx_dsp_rtcd.c15 void vpx_dsp_rtcd() { once(setup_rtcd_internal); }
/external/libvpx/libvpx/vpx_scale/
H A Dvpx_scale_rtcd.c15 void vpx_scale_rtcd() { once(setup_rtcd_internal); }
/external/parameter-framework/upstream/test/test-subsystem/
H A DTESTMappingKeys.h30 #pragma once
/external/skia/tests/
H A DOnceTest.cpp20 SkOnce once; local
21 once(add_five, &x);
22 once(add_five, &x);
23 once(add_five, &x);
24 once(add_five, &x);
25 once(add_five, &x);
34 SkOnce once; local
36 once([&] { x += 6; });
47 SkOnce once; local
48 once(inc_g
[all...]
/external/parameter-framework/upstream/parameter/include/
H A DParameterMgrLoggerForward.h30 #pragma once
/external/skia/src/ports/
H A DSkFontConfigInterface_direct_factory.cpp13 static SkOnce once; local
14 once([]{ singleton = new SkFontConfigInterfaceDirect(); });
/external/clang/test/Modules/Inputs/macro-reexport/
H A Dd1.h1 #pragma once
/external/mesa3d/src/glsl/
H A Dtest_optpass.h24 #pragma once
H A Dir_reader.h25 #pragma once
/external/parameter-framework/upstream/skeleton-subsystem/
H A DSkeletonMappingKeys.h30 #pragma once
/external/parameter-framework/upstream/test/introspection-subsystem/include/
H A DIntrospectionEntryPoint.h30 #pragma once
/external/v8/src/base/
H A Donce.cc5 #include "src/base/once.h"
18 void CallOnceImpl(OnceType* once, PointerArgFunction init_func, void* arg) { argument
19 AtomicWord state = Acquire_Load(once);
25 // The function execution did not complete yet. The once object can be in one
33 once, ONCE_STATE_UNINITIALIZED, ONCE_STATE_EXECUTING_FUNCTION);
38 Release_Store(once, ONCE_STATE_DONE);
48 state = Acquire_Load(once);
H A Donce.h5 // emulates google3/base/once.h
16 // * A function CallOnce(OnceType* once, void (*init_func)()).
39 // // Calls Init() exactly once.
83 V8_BASE_EXPORT void CallOnceImpl(OnceType* once, PointerArgFunction init_func,
86 inline void CallOnce(OnceType* once, NoArgFunction init_func) { argument
87 if (Acquire_Load(once) != ONCE_STATE_DONE) {
88 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), NULL);
94 inline void CallOnce(OnceType* once, argument
96 if (Acquire_Load(once) != ONCE_STATE_DONE) {
97 CallOnceImpl(once, reinterpret_cas
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Donce.cc33 // emulates google3/base/once.h
38 #include <google/protobuf/stubs/once.h>
65 void GoogleOnceInitImpl(ProtobufOnceType* once, Closure* closure) { argument
66 internal::AtomicWord state = internal::Acquire_Load(once);
71 // The closure execution did not complete yet. The once object can be in one
79 once, ONCE_STATE_UNINITIALIZED, ONCE_STATE_EXECUTING_CLOSURE);
84 internal::Release_Store(once, ONCE_STATE_DONE);
91 state = internal::Acquire_Load(once);
H A Donce.h33 // emulates google3/base/once.h
46 // * A function GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()).
65 // // Calls Init() exactly once.
94 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)()) { argument
95 if (!*once) {
96 *once = true;
102 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg), argument
104 if (!*once) {
105 *once = true;
123 void GoogleOnceInitImpl(ProtobufOnceType* once, Closur
[all...]
/external/clang/test/Preprocessor/Inputs/microsoft-header-search/
H A Dfalsepos.h1 #pragma once
H A Dfindme.h1 #pragma once
/external/clang/test/Index/skip-parsed-bodies/
H A Dpragma_once.h1 #pragma once
/external/clang/test/SemaCXX/Inputs/
H A Dregister.h2 #pragma once
/external/parameter-framework/upstream/parameter/
H A DResults.h30 #pragma once
/external/parameter-framework/upstream/test/functional-tests/include/
H A DException.hpp30 #pragma once
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_once.h30 * will ensure foo() and bar() are each called only once, but in
44 * of calling func() only once. This must be at global scope because
51 static void once(void (*func)(void)) { function
97 static void once(void (*func)(void)) { function
119 static void once(void (*func)(void)) { function
130 static void once(void (*func)(void)) { function
/external/mdnsresponder/mDNSWindows/DLL.NET/
H A DStdafx.h22 #pragma once
/external/mesa3d/src/glsl/glcpp/tests/
H A D037-finalize-unexpanded-macro.c1 #define expand(x) expand(x once)
/external/mesa3d/src/mesa/program/
H A Dprog_parameter_layout.h31 #pragma once

Completed in 4216 milliseconds

1234567891011>>