Home
last modified time | relevance | path

Searched refs:initialized (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/compile/slang/tests/F_reflection3264_variable_mismatch_init/
Dstderr.txt.expect1 reflection3264_variable_mismatch_init.rscript:6:7: error: global variable 'b' is initialized differ…
2 reflection3264_variable_mismatch_init.rscript:10:8: error: global variable 'd' is initialized diffe…
3 reflection3264_variable_mismatch_init.rscript:14:6: error: global variable 'f' is initialized diffe…
4 reflection3264_variable_mismatch_init.rscript:18:6: error: global variable 'h' is initialized diffe…
5 reflection3264_variable_mismatch_init.rscript:22:8: error: global variable 'j' is initialized diffe…
6 reflection3264_variable_mismatch_init.rscript:30:5: error: global variable 'k' is initialized diffe…
7 reflection3264_variable_mismatch_init.rscript:38:5: error: global variable 'm' is initialized diffe…
8 reflection3264_variable_mismatch_init.rscript:45:6: error: global variable 'n' is initialized diffe…
9 reflection3264_variable_mismatch_init.rscript:51:8: error: global variable 'jj' is initialized diff…
10 reflection3264_variable_mismatch_init.rscript:59:5: error: global variable 'kk' is initialized diff…
[all …]
Dreflection3264_variable_mismatch_init.rscript22 float4 j = { 1.2f, 3.4f, // vector component initialized differently
51 float4 jj = { 1.2f, 3.4f, // vector component initialized differently
/frameworks/wilhelm/src/
DThreadPool.cpp81 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads);
92 unsigned initialized = INITIALIZED_NONE; // which objects were successfully initialized in ThreadPool_init() local
102 initialized |= INITIALIZED_MUTEX; in ThreadPool_init()
107 initialized |= INITIALIZED_CONDNOTFULL; in ThreadPool_init()
112 initialized |= INITIALIZED_CONDNOTEMPTY; in ThreadPool_init()
156 tp->mInitialized = initialized; in ThreadPool_init()
163 ThreadPool_deinit_internal(tp, initialized, nThreads); in ThreadPool_init()
167 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads) in ThreadPool_deinit_internal() argument
174 assert(INITIALIZED_ALL == initialized); in ThreadPool_deinit_internal()
214 if (initialized & INITIALIZED_CONDNOTEMPTY) { in ThreadPool_deinit_internal()
[all …]
/frameworks/base/tools/preload-check/device/src/com/android/preload/check/
DUtil.java108 boolean initialized; in assertInitializedState()
111 initialized = isInitialized(klass); in assertInitializedState()
115 assertTrue(expected == initialized, className); in assertInitializedState()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSmsPermissionsTest.java74 final CountDownLatch initialized = new CountDownLatch(1); in setUp() local
90 initialized.countDown(); in setUp()
93 if (!initialized.await(30, TimeUnit.SECONDS)) { in setUp()
/frameworks/hardware/interfaces/displayservice/1.0/
DIDisplayEventReceiver.hal26 * SUCCESS if callback is initialized correctly.
28 * UNKNOWN if callback cannot be initialized.
/frameworks/ml/nn/common/
DBufferTracker.cpp185 void ManagedBuffer::setInitialized(bool initialized) { in setInitialized() argument
187 mInitialized = initialized; in setInitialized()
/frameworks/ml/nn/common/include/
DBufferTracker.h59 void setInitialized(bool initialized);
/frameworks/base/core/java/android/inputmethodservice/
DMultiClientInputMethodServiceDelegate.java71 void initialized(); in initialized() method
DMultiClientInputMethodServiceDelegateImpl.java107 service.mServiceCallback.initialized(); in initialize()
/frameworks/base/core/java/com/android/internal/os/
DRuntimeInit.java60 private static boolean initialized; field in RuntimeInit
300 initialized = true; in commonInit()
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dmp4lib_int.h278 int initialized; member
Dpvdec_api.cpp159 video->initialized = PV_FALSE; in PVInitVideoDecoder()
295 video->initialized = PV_TRUE; in PVInitVideoDecoder()
1168 if (video->initialized == PV_FALSE) in PVDecodeVopHeader()
/frameworks/rs/tests/cpp_api/typecheck/
Dkernels.rscript21 // Test initialized and uninitialized variables
/frameworks/native/vulkan/tools/
Dvkinfo.cpp310 static bool initialized = false; in Indent() local
311 if (!initialized) { in Indent()
314 initialized = true; in Indent()
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-testing.md11 …atch.await()``` does not affect the animations’ progress. The latch is initialized with a count eq…
/frameworks/native/opengl/specs/
DEGL_ANDROID_presentation_time.txt96 set. If <dpy> is not the name of a valid, initialized EGLDisplay, an
DEGL_ANDROID_native_fence_sync.txt153 * If <dpy> is not the name of a valid, initialized EGLDisplay,
/frameworks/native/vulkan/libvulkan/
Dapi.cpp1170 static bool initialized; in EnsureInitialized() local
1175 initialized = true; in EnsureInitialized()
1179 return initialized; in EnsureInitialized()
/frameworks/ml/nn/runtime/
DMemory.cpp164 void setInitialized(bool initialized) override { mInitialized = initialized; } in setInitialized() argument
/frameworks/av/services/camera/libcameraservice/common/
DCameraProviderManager.cpp664 static bool initialized = false; in isDepthPhotoLibraryPresent() local
665 if (initialized) { in isDepthPhotoLibraryPresent()
668 initialized = true; in isDepthPhotoLibraryPresent()
1538 bool initialized = false; in cameraDeviceStatusChange() local
1565 initialized = mInitialized; in cameraDeviceStatusChange()
1571 if (listener != nullptr && initialized) { in cameraDeviceStatusChange()
/frameworks/native/opengl/libagl/
Degl.cpp124 egl_display_t() : type(0), initialized(0) { } in egl_display_t()
133 std::atomic_size_t initialized; member
1462 if (d.initialized.fetch_add(1, std::memory_order_acquire) == 0) { in eglInitialize()
1482 if (d.initialized.fetch_sub(1, std::memory_order_release) == 1) { in eglTerminate()
/frameworks/compile/slang/
DREADME.rst253 on globals initialized from Java as it will be called before these
254 can be initialized. The function signature for init must be::
/frameworks/base/packages/SystemUI/
DREADME.md45 Dependencies are lazily initialized, so if a Dependency is never referenced at
/frameworks/native/opengl/libs/EGL/
DGLES_layers.md104 For a simple layer that just wants to intercept a handful of functions, a passively initialized lay…

12