/third_party/gettext/gettext-runtime/intl/ |
D | windows-once.c | 30 if (once_control->inited <= 0) in glwthread_once() 37 once_control->inited = 0; in glwthread_once() 39 once_control->inited = 1; in glwthread_once() 49 while (once_control->inited < 0) in glwthread_once() 51 if (once_control->inited <= 0) in glwthread_once() 57 if (!(once_control->inited > 0)) in glwthread_once()
|
D | windows-once.h | 28 volatile int inited; member
|
/third_party/mingw-w64/mingw-w64-crt/crt/ |
D | cxa_atexit.c | 36 static int inited = 0; variable 41 if (!inited) in __cxa_atexit() 68 if (!inited) in __cxa_thread_atexit() 91 if (inited == 0) { in tls_callback() 107 inited = 1; in tls_callback() 138 if (inited == 1) { in tls_callback() 139 inited = 0; in tls_callback()
|
/third_party/node/test/sequential/ |
D | test-perf-hooks.js | 17 const inited = performance.now(); constant 18 assert(inited < 15000); 86 bootstrapComplete: { around: inited, delay: 2500 }, 100 bootstrapComplete: { around: inited, delay: 2500 }, 102 loopStart: { around: inited, delay: 2500 }, 115 bootstrapComplete: { around: inited, delay: 2500 }, 117 loopStart: { around: inited, delay: 2500 },
|
/third_party/glib/gio/ |
D | gnetworking.c | 64 static gsize inited = 0; in g_networking_init() local 66 if (g_once_init_enter (&inited)) in g_networking_init() 73 g_once_init_leave (&inited, 1); in g_networking_init()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/pbutils/ |
D | pbutils.c | 98 static gboolean inited; /* FALSE */ in gst_pb_utils_init() local 100 if (inited) { in gst_pb_utils_init() 106 inited = TRUE; in gst_pb_utils_init()
|
/third_party/uboot/u-boot-2020.01/fs/btrfs/ |
D | hash.c | 16 static int inited = 0; in btrfs_hash_init() local 18 if (!inited) { in btrfs_hash_init() 20 inited = 1; in btrfs_hash_init()
|
/third_party/flutter/skia/third_party/externals/sdl/src/core/linux/ |
D | SDL_ime.c | 45 static SDL_bool inited = SDL_FALSE; in InitIME() local 51 if (inited == SDL_TRUE) in InitIME() 54 inited = SDL_TRUE; in InitIME()
|
/third_party/ffmpeg/libavfilter/ |
D | f_realtime.c | 32 unsigned inited; member 44 if (!s->inited) { in filter_frame() 45 s->inited = 1; in filter_frame()
|
/third_party/ffmpeg/libavcodec/ |
D | cngdec.c | 37 int inited; member 100 p->inited = 0; in cng_decode_flush() 128 if (p->inited) { in cng_decode_frame() 135 p->inited = 1; in cng_decode_frame()
|
/third_party/ffmpeg/libavdevice/ |
D | sdl2.c | 52 int inited; member 153 if (!sdl->inited) in sdl2_write_trailer() 173 sdl->inited = 1; in sdl2_write_header() 203 if (!sdl->inited){ in sdl2_write_header() 234 sdl->inited = 1; in sdl2_write_header()
|
/third_party/gstreamer/gstplugins_good/ext/vpx/ |
D | gstvpxenc.c | 910 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 927 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 944 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 956 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 969 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 982 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 994 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 1007 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 1020 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() 1033 if (gst_vpx_enc->inited) { in gst_vpx_enc_set_property() [all …]
|
D | gstvpxenc.h | 104 gboolean inited; member
|
/third_party/python/Lib/ |
D | mimetypes.py | 54 inited = False variable 67 if not inited: 347 global inited, _db 348 inited = True # so that MimeTypes.__init__() doesn't call us again
|
/third_party/boost/libs/intrusive/test/ |
D | bounded_pointer.hpp | 78 assert(bounded_allocator< mut_val_t >::inited()); in base() 213 assert(inited()); in allocate() 227 assert(inited()); in deallocate() 243 static bool inited() in inited() function in bounded_allocator 250 assert(inited()); in is_clear()
|
/third_party/uboot/u-boot-2020.01/drivers/input/ |
D | tegra-kbc.c | 47 unsigned char inited; /* 1 if keyboard has been inited */ member 158 if (!priv->inited) { in kbd_wait_for_fifo_init() 169 priv->inited = 1; in kbd_wait_for_fifo_init()
|
/third_party/uboot/u-boot-2020.01/drivers/net/ |
D | netconsole.c | 179 int inited = 0; in nc_send_packet() local 211 inited = 1; in nc_send_packet() 219 if (inited) { in nc_send_packet()
|
/third_party/glib/tests/gobject/ |
D | performance-threaded.c | 55 static gsize inited = 0; in register_types() local 56 if (g_once_init_enter (&inited)) in register_types() 69 g_once_init_leave (&inited, 1); in register_types()
|
/third_party/boost/boost/intrusive/ |
D | list.hpp | 271 …BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_ins… in push_back() 289 …BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_ins… in push_front() 828 …BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT(!safemode_or_autounlink || node_algorithms::inited(to_ins… in insert() 1273 BOOST_INTRUSIVE_INVARIANT_ASSERT(!node_algorithms::inited(value_traits::to_node_ptr(value))); in s_iterator_to() 1292 BOOST_INTRUSIVE_INVARIANT_ASSERT(!node_algorithms::inited(value_traits::to_node_ptr(r))); in s_iterator_to() 1307 …BOOST_INTRUSIVE_INVARIANT_ASSERT(!node_algorithms::inited(this->priv_value_traits().to_node_ptr(va… in iterator_to() 1323 …BOOST_INTRUSIVE_INVARIANT_ASSERT(!node_algorithms::inited(this->priv_value_traits().to_node_ptr(r)… in iterator_to()
|
D | circular_list_algorithms.hpp | 83 BOOST_INTRUSIVE_FORCEINLINE static bool inited(const const_node_ptr &this_node) in inited() function in boost::intrusive::circular_list_algorithms 218 bool this_inited = inited(this_node); in swap_nodes() 219 bool other_inited = inited(other_node); in swap_nodes()
|
/third_party/uboot/u-boot-2020.01/drivers/dfu/ |
D | dfu_virt.c | 46 dfu->inited = 0; in dfu_fill_entity_virt()
|
D | dfu_ram.c | 83 dfu->inited = 0; in dfu_fill_entity_ram()
|
D | dfu.c | 257 dfu->inited = 0; in dfu_transaction_cleanup() 264 if (dfu->inited) in dfu_transaction_initiate() 281 dfu->inited = 1; in dfu_transaction_initiate()
|
/third_party/uboot/u-boot-2020.01/arch/sandbox/cpu/ |
D | sdl.c | 36 bool inited; member 63 if (!sdl.inited) { in sandbox_sdl_ensure_init() 72 sdl.inited = true; in sandbox_sdl_ensure_init()
|
/third_party/gstreamer/gstplugins_bad/gst/librfb/ |
D | rfbdecoder.h | 61 gboolean inited; member
|