Home
last modified time | relevance | path

Searched refs:lazy (Results 1 - 25 of 83) sorted by relevance

1234

/third_party/mesa3d/src/gallium/frontends/clover/util/
H A Dlazy.hpp98 class lazy { class
110 lazy(T x) : obj(new detail::strict_lazy<T>(x)) { in lazy() function in clover::lazy
118 lazy(F &&f) : obj(new detail::deferred_lazy< in lazy() function in clover::lazy
126 lazy() : lazy([]() { in lazy() function in clover::lazy
132 lazy(const lazy &other) : obj(obj->clone()) { in lazy() function in clover::lazy
135 lazy(lazy &&other) : obj(NULL) { in lazy() function in clover::lazy
139 ~lazy() { in ~lazy()
[all...]
/third_party/skia/tests/
H A DTLazyTest.cpp12 SkTLazy<int> lazy; in DEF_TEST() local
14 REPORTER_ASSERT(r, !lazy.isValid()); in DEF_TEST()
15 REPORTER_ASSERT(r, lazy.getMaybeNull() == nullptr); in DEF_TEST()
18 SkTLazy<int> lazy_copy(lazy); // NOLINT(performance-unnecessary-copy-initialization) in DEF_TEST()
23 lazy.init(42); in DEF_TEST()
25 REPORTER_ASSERT(r, lazy.isValid()); in DEF_TEST()
26 REPORTER_ASSERT(r, 42 == *lazy.get()); in DEF_TEST()
29 SkTLazy<int> lazy_copy(lazy); // NOLINT(performance-unnecessary-copy-initialization) in DEF_TEST()
32 REPORTER_ASSERT(r, lazy.get() != lazy_copy.get()); in DEF_TEST()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DFieldOptions.php58 * eager or lazy parsing regardless of the value of this option. However,
60 * using lazy parsing on this field is worth the additional bookkeeping
68 * a lazy sub-message. That is, calling IsInitialized() on the outer message
71 * parsed in order to perform the check, defeating the purpose of lazy
78 * Generated from protobuf field <code>optional bool lazy = 5 [default = false];</code>
80 protected $lazy = null; variable
131 * @type bool $lazy
137 * eager or lazy parsing regardless of the value of this option. However,
139 * using lazy parsing on this field is worth the additional bookkeeping
147 * a lazy su
389 $this->lazy = $var; global() variable
[all...]
/third_party/mesa3d/src/gallium/frontends/clover/core/
H A Devent.hpp32 #include "util/lazy.hpp"
124 const lazy<cl_ulong> &time_queued() const;
125 const lazy<cl_ulong> &time_submit() const;
126 const lazy<cl_ulong> &time_start() const;
127 const lazy<cl_ulong> &time_end() const;
142 lazy<cl_ulong> _time_queued, _time_submit, _time_start, _time_end;
H A Devent.cpp187 const lazy<cl_ulong> &
192 const lazy<cl_ulong> &
197 const lazy<cl_ulong> &
202 const lazy<cl_ulong> &
/third_party/node/deps/openssl/openssl/ms/
H A Duplink-ia64.pl26 .proc lazy$i#
27 lazy$i:
46 .endp lazy$i#
55 for ($i=1;$i<=$N;$i++) { print " data8 \@fptr(lazy$i#)\n"; }
H A Duplink.c105 __declspec(naked) static void lazy##i (void) { \
114 __declspec(naked) static void lazy##i (void) { \
/third_party/openssl/ms/
H A Duplink-ia64.pl26 .proc lazy$i#
27 lazy$i:
46 .endp lazy$i#
55 for ($i=1;$i<=$N;$i++) { print " data8 \@fptr(lazy$i#)\n"; }
H A Duplink.c105 __declspec(naked) static void lazy##i (void) { \
114 __declspec(naked) static void lazy##i (void) { \
/third_party/node/deps/v8/include/v8-include/
H A Dv8-metrics.h123 bool lazy, bool success, size_t code_size_in_bytes, in WasmModuleCompiled()
130 lazy(lazy), in WasmModuleCompiled()
140 bool lazy = false; member
/third_party/jsframework/runtime/main/reactivity/
H A Dwatcher.js24 * - {Boolean} lazy
42 this.dirty = this.lazy;
51 this.value = this.lazy
116 if (this.lazy) {
143 * Evaluate the value of the watcher. This only gets called for lazy watchers.
/third_party/ntfs-3g/libfuse-lite/
H A Dmount_util.c109 int fuse_mnt_umount(const char *progname, const char *mnt, int lazy) in fuse_mnt_umount() argument
128 if (lazy) { in fuse_mnt_umount()
347 int fuse_mnt_umount(const char *progname, const char *mnt, int lazy) in fuse_mnt_umount() argument
353 res = umount2(mnt, lazy ? 2 : 0); in fuse_mnt_umount()
371 if (lazy) { in fuse_mnt_umount()
H A Dfusermount.c646 umount2(mnt, 2); /* lazy umount */ in mount_fuse()
667 int fusermount(int unmount, int quiet, int lazy, const char *opts, in fusermount() argument
686 res = fuse_mnt_umount(progname, mnt, lazy); in fusermount()
688 res = umount2(mnt, lazy ? 2 : 0); in fusermount()
/third_party/libfuse/lib/
H A Dmount_util.c148 static int exec_umount(const char *progname, const char *rel_mnt, int lazy) in exec_umount() argument
179 if (lazy) { in exec_umount()
205 const char *rel_mnt, int lazy) in fuse_mnt_umount()
210 res = umount2(rel_mnt, lazy ? 2 : 0); in fuse_mnt_umount()
217 return exec_umount(progname, rel_mnt, lazy); in fuse_mnt_umount()
204 fuse_mnt_umount(const char *progname, const char *abs_mnt, const char *rel_mnt, int lazy) fuse_mnt_umount() argument
/third_party/node/deps/v8/src/parsing/
H A Dparse-info.cc12 #include "src/compiler-dispatcher/lazy-compile-dispatcher.h"
99 REPLMode repl_mode, ScriptType type, bool lazy) { in ForToplevelCompile()
103 type, lazy); in ForToplevelCompile()
147 bool lazy) { in SetFlagsForToplevelCompile()
149 set_allow_lazy_parsing(lazy); in SetFlagsForToplevelCompile()
150 set_allow_lazy_compile(lazy); in SetFlagsForToplevelCompile()
97 ForToplevelCompile( Isolate* isolate, bool is_user_javascript, LanguageMode language_mode, REPLMode repl_mode, ScriptType type, bool lazy) ForToplevelCompile() argument
144 SetFlagsForToplevelCompile( bool is_collecting_type_profile, bool is_user_javascript, LanguageMode language_mode, REPLMode repl_mode, ScriptType type, bool lazy) SetFlagsForToplevelCompile() argument
H A Dparse-info.h73 ScriptType type, bool lazy);
75 // Set-up flags for a compiling a particular function (either a lazy compile
146 bool lazy);
/third_party/rust/crates/lazy-static.rs/src/
H A Dlib.rs1 // Copyright 2016 lazy-static.rs Developers
48 if you have multiple lazy statics that depend on each other in their initialization.
50 Apart from the lazy initialization, the resulting "static ref" variables
105 pub mod lazy; in times_two() modules
117 pub mod lazy; modules
148 fn initialize(lazy: &Self) { in initialize()
149 let _ = &**lazy; in initialize()
181 /// Support trait for enabling a few common operation on lazy static values.
183 /// This is implemented by each defined lazy static, and
187 fn initialize(lazy
[all...]
/third_party/skia/docs/examples/
H A DImage_isLazyGenerated_a.cpp27 SkString lazy(image->isLazyGenerated() ? "is lazy" : "not lazy"); in REG_FIDDLE()
32 canvas->drawString(lazy, 2, 5, paint); in REG_FIDDLE()
/third_party/libfuse/util/
H A Dfusermount.c435 static int unmount_fuse_locked(const char *mnt, int quiet, int lazy) in unmount_fuse_locked() argument
440 int umount_flags = (lazy ? UMOUNT_DETACH : 0) | UMOUNT_NOFOLLOW; in unmount_fuse_locked()
480 static int unmount_fuse(const char *mnt, int quiet, int lazy) in unmount_fuse() argument
485 res = unmount_fuse_locked(mnt, quiet, lazy); in unmount_fuse()
528 static int unmount_fuse(const char *mnt, int quiet, int lazy) in unmount_fuse() argument
531 return fuse_mnt_umount(progname, mnt, mnt, lazy); in unmount_fuse()
1334 " -z lazy unmount\n", in usage()
1354 static int lazy = 0; in main() local
1367 {"lazy", no_argument, NULL, 'z'}, in main()
1404 lazy in main()
[all...]
/third_party/skia/gm/
H A Dmakecolorspace.cpp87 // Use the lazy images on the first iteration, and concrete (raster/GPU) images on the second in DEF_SIMPLE_GM_BG()
89 for (bool lazy : {true, false}) { in DEF_SIMPLE_GM_BG()
108 if (!lazy || image565->makeRasterImage()) { in DEF_SIMPLE_GM_BG()
117 if (!lazy || imageGray->makeRasterImage()) { in DEF_SIMPLE_GM_BG()
129 // We draw a 3x3 grid. The three rows are lazy (encoded), raster, and GPU (or another copy of in DEF_SIMPLE_GM_CAN_FAIL()
/third_party/rust/crates/once_cell/tests/
H A Dit.rs187 let lazy: Lazy<std::sync::Mutex<Foo>> = <_>::default(); in lazy_default()
191 assert_eq!(lazy.lock().unwrap().0, 42); in lazy_default()
194 lazy.lock().unwrap().0 = 21; in lazy_default()
196 assert_eq!(lazy.lock().unwrap().0, 21); in lazy_default()
537 let lazy: Lazy<std::sync::Mutex<Foo>> = <_>::default(); in lazy_default()
541 assert_eq!(lazy.lock().unwrap().0, 42); in lazy_default()
544 lazy.lock().unwrap().0 = 21; in lazy_default()
546 assert_eq!(lazy.lock().unwrap().0, 21); in lazy_default()
/third_party/pulseaudio/src/pulsecore/
H A Dcore-scache.c131 e->lazy = false; in scache_add_item()
260 e->lazy = true; in pa_scache_add_file_lazy()
322 if (e->lazy && !e->memchunk.memblock) { in pa_scache_play_item()
372 if (e->lazy) in pa_scache_play_item()
449 if (!e->lazy || !e->memchunk.memblock) in pa_scache_unload_unused()
H A Dcore-scache.h44 bool lazy; member
/third_party/node/deps/v8/include/
H A Dv8-metrics.h113 bool lazy = false; member
129 bool lazy = false; member
/third_party/mesa3d/.gitlab-ci/bin/
H A Dci_run_n_monitor.py193 pjob = project.jobs.get(job.id, lazy=True)
204 pjob = project.jobs.get(job.id, lazy=True)

Completed in 13 milliseconds

1234