/third_party/mesa3d/src/util/ |
H A D | u_debug.h | 417 static bool initialized = false; \ 419 if (!initialized) { \ 420 initialized = true; \ 446 static bool initialized = false; \ 450 if (!initialized) { \ 451 initialized = true; \ 463 static bool initialized = false; \ 465 if (!initialized) { \ 466 initialized = true; \ 476 static bool initialized [all...] |
/third_party/python/Lib/test/ |
H A D | test_subclassinit.py | 8 initialized = False variable in Test.test_init_subclass.A 12 cls.initialized = True 17 self.assertFalse(A.initialized) 18 self.assertTrue(B.initialized) 22 initialized = False variable in Test.test_init_subclass_dict.A 26 cls.initialized = True 31 self.assertFalse(A.initialized) 32 self.assertTrue(B.initialized) 66 cls.initialized = cls 74 self.assertIs(A.initialized, [all...] |
/third_party/mesa3d/src/egl/main/ |
H A D | egllog.c | 65 EGLBoolean initialized; member 69 .initialized = EGL_FALSE, 110 if (logging.initialized) in _eglInitLogger() 124 logging.initialized = EGL_TRUE; in _eglInitLogger() 158 if (!logging.initialized) in _eglLog()
|
/third_party/rust/crates/once_cell/src/ |
H A D | imp_cs.rs | 9 initialized: AtomicBool, 28 OnceCell { initialized: AtomicBool::new(false), value: Mutex::new(unsync::OnceCell::new()) } 33 initialized: AtomicBool::new(true), 40 self.initialized.load(Ordering::Acquire) 51 self.initialized.store(true, Ordering::Release); 57 /// is initialized. 61 /// Caller must ensure that the cell is in initialized state, and that 65 // SAFETY: The caller ensures that the value is initialized and access synchronized.
|
/third_party/mesa3d/src/glx/apple/ |
H A D | apple_glx.c | 43 static bool initialized = false; variable 49 if (!initialized) { in apple_get_dri_event_base() 109 if (initialized) in apple_init_glx() 123 initialized = true; in apple_init_glx()
|
H A D | apple_cgl.c | 46 static bool initialized = false; variable 69 if (initialized) in apple_cgl_init() 120 initialized = true; in apple_cgl_init()
|
/third_party/eudev/src/udev/ |
H A D | udev-builtin.c | 30 static bool initialized; variable 51 if (initialized) in udev_builtin_init() 58 initialized = true; in udev_builtin_init() 64 if (!initialized) in udev_builtin_exit() 71 initialized = false; in udev_builtin_exit()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | Pragma.cpp | 45 static thread_local bool initialized = false; in getPragmaState() local 48 if(!initialized) in getPragmaState() 52 initialized = true; in getPragmaState()
|
/third_party/skia/third_party/externals/angle2/src/third_party/systeminfo/ |
H A D | SystemInfo.cpp | 52 static bool initialized = false; in isWindowsVistaOrGreater() local 55 if (!initialized) in isWindowsVistaOrGreater() 57 initialized = true; in isWindowsVistaOrGreater()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | remap.c | 100 * The remap table needs to be initialized before calling the 106 static bool initialized = false; in _mesa_init_remap_table() local 109 if (initialized) in _mesa_init_remap_table() 111 initialized = true; in _mesa_init_remap_table()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | winnmtst.cpp | 60 static UBool initialized = false; variable 70 if (!initialized) { in randomInt64() 72 initialized = true; in randomInt64() 90 if (!initialized) { in randomDouble() 92 initialized = true; in randomDouble() 124 if (!initialized) { in randomInt32() 126 initialized = true; in randomInt32()
|
/third_party/python/Modules/cjkcodecs/ |
H A D | _codecs_iso2022.c | 572 static int initialized = 0; in ksx1001_init() local 574 if (!initialized && ( in ksx1001_init() 578 initialized = 1; in ksx1001_init() 609 static int initialized = 0; in jisx0208_init() local 611 if (!initialized && ( in jisx0208_init() 615 initialized = 1; in jisx0208_init() 650 static int initialized = 0; in jisx0212_init() local 652 if (!initialized && ( in jisx0212_init() 656 initialized = 1; in jisx0212_init() 687 static int initialized in jisx0213_init() local 966 static int initialized = 0; gb2312_init() local [all...] |
H A D | _codecs_hk.c | 21 static int initialized = 0; in CODEC_INIT() local 23 if (!initialized && IMPORT_MAP(tw, big5, &big5_encmap, &big5_decmap)) in CODEC_INIT() 25 initialized = 1; in CODEC_INIT()
|
/third_party/backends/backend/ |
H A D | ricoh2.c | 132 static SANE_Bool initialized = SANE_FALSE; variable 299 initialized = SANE_TRUE; in sane_init() 349 CHECK_IF (initialized); in sane_open() 389 if (!initialized) in sane_get_option_descriptor() 422 CHECK_IF (initialized); in sane_control_option() 549 CHECK_IF (initialized); in sane_get_parameters() 718 CHECK_IF (initialized); in sane_start() 805 CHECK_IF (initialized); in sane_read() 874 CHECK_IF (initialized); in sane_set_io_mode() 891 CHECK_IF (initialized); in sane_get_select_fd() [all...] |
H A D | lexmark.c | 57 static SANE_Bool initialized = SANE_FALSE; variable 544 initialized = SANE_TRUE; in sane_init() 548 initialized = SANE_FALSE; in sane_init() 561 if (!initialized) in sane_exit() 576 initialized = SANE_FALSE; in sane_exit() 638 if (!initialized) in sane_open() 640 DBG (2, "sane_open: not initialized\n"); in sane_open() 688 if (!initialized) in sane_close() 714 if (!initialized) in sane_get_option_descriptor() 794 if (!initialized) in sane_control_option() [all...] |
/third_party/libunwind/libunwind/src/ |
H A D | dl-iterate-phdr.c | 51 static int initialized = 0; in dl_iterate_phdr() local 57 if (!initialized) in dl_iterate_phdr() 60 initialized = 1; in dl_iterate_phdr()
|
/third_party/mbedtls/programs/fuzz/ |
H A D | fuzz_dtlsclient.c | 16 static int initialized = 0; variable 44 if (initialized == 0) { in LLVMFuzzerTestOneInput() 54 initialized = 1; in LLVMFuzzerTestOneInput()
|
H A D | fuzz_client.c | 14 static int initialized = 0; variable 48 if (initialized == 0) { in LLVMFuzzerTestOneInput() 63 initialized = 1; in LLVMFuzzerTestOneInput()
|
H A D | fuzz_dtlsserver.c | 21 static int initialized = 0; variable 71 if (initialized == 0) { in LLVMFuzzerTestOneInput() 90 initialized = 1; in LLVMFuzzerTestOneInput()
|
/third_party/rust/crates/rustix/src/fs/ |
H A D | raw_dir.rs | 22 initialized: usize, 113 initialized: 0, in new() 179 self.initialized = bytes_read; in next() 188 // - This data is initialized by the check above. in next() 208 self.offset >= self.initialized in is_buffer_empty()
|
/third_party/glslang/glslang/OSDependent/Web/ |
H A D | glslang.js.cpp | 167 static bool initialized = false; variable 225 if (!initialized) { in convert_glsl_to_spirv() 227 initialized = true; in convert_glsl_to_spirv()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | profile-data-reader.cc | 46 static bool initialized = false; in EnsureInitProfileData() local 48 if (initialized) return *data.get(); in EnsureInitProfileData() 49 initialized = true; in EnsureInitProfileData()
|
/third_party/python/Python/ |
H A D | thread.c | 53 static int initialized; variable 70 if (initialized) in PyThread_init_thread() 72 initialized = 1; in PyThread_init_thread()
|
H A D | thread_nt.h | 193 if (!initialized) in PyThread_start_new_thread() 232 if (!initialized) in PyThread_get_thread_ident() 247 if (!initialized) { in PyThread_get_thread_native_id() 261 if (!initialized) in PyThread_exit_thread() 277 if (!initialized) in PyThread_allocate_lock()
|
/third_party/ffmpeg/libavcodec/ |
H A D | aacdec.c | 268 int initialized; ///< initialized after a valid extradata was seen member 319 if (!latmctx->initialized || in latm_decode_audio_specific_config() 323 if (latmctx->initialized) { in latm_decode_audio_specific_config() 328 latmctx->initialized = 0; in latm_decode_audio_specific_config() 505 if (!latmctx->initialized) { in latm_decode_frame() 517 latmctx->initialized = 1; in latm_decode_frame() 550 latmctx->initialized = !ret; in latm_decode_init()
|