Home
last modified time | relevance | path

Searched refs:init (Results 26 - 50 of 4754) sorted by relevance

12345678910>>...191

/third_party/node/test/async-hooks/
H A Dtest-enable-disable.js17 // invocations until then, including the "init" and "before" of the first
49 // hook1.init.uid-5
50 // hook3.init.uid-5
59 // hook1.init.uid-6
60 // hook3.init.uid-6
61 // hook2.init.uid-6
88 const initHooks = require('./init-hooks');
95 // the type of the first Immediate since it will miss its `init` invocation.
148 // onfirstImmediate is called after all "init" and "before" callbacks of the
166 checkInvocations(as1[0], { init
[all...]
H A Dtest-immediate.js6 const initHooks = require('./init-hooks');
21 checkInvocations(imd1, { init: 1 },
29 checkInvocations(imd1, { init: 1, before: 1 },
40 checkInvocations(imd1, { init: 1, before: 1 },
42 checkInvocations(imd2, { init: 1 },
47 checkInvocations(imd1, { init: 1, before: 1, after: 1, destroy: 1 },
49 checkInvocations(imd2, { init: 1, before: 1 },
59 checkInvocations(imd1, { init: 1, before: 1, after: 1, destroy: 1 },
61 checkInvocations(imd2, { init: 1, before: 1, after: 1, destroy: 1 },
H A Dtest-pipewrap.js9 const initHooks = require('./init-hooks');
39 checkInvocations(processwrap, { init: 1 },
45 checkInvocations(x, { init: 1 }, 'pipe wrap when sleep.spawn was called');
49 checkInvocations(processwrap, { init: 1, before: 1 },
57 { init: 1, before: 1, after: 1 },
71 { init: 1, before: 1, after: 1 },
84 checkInvocations(pipe1, { init: 1, before: 1, after: 1 },
86 checkInvocations(pipe2, { init: 1, before: ioEvents, after: ioEvents },
88 checkInvocations(pipe3, { init: 1, before: 2, after: 2 },
H A Dtest-timers.setTimeout.js6 const initHooks = require('./init-hooks');
21 checkInvocations(t1, { init: 1 }, 't1: when first timer installed');
26 checkInvocations(t1, { init: 1, before: 1 }, 't1: when first timer fired');
32 checkInvocations(t1, { init: 1, before: 1 },
34 checkInvocations(t2, { init: 1 },
43 checkInvocations(t1, { init: 1, before: 1, after: 1 },
45 checkInvocations(t2, { init: 1, before: 1 },
57 checkInvocations(t1, { init: 1, before: 1, after: 1, destroy: 1 },
59 checkInvocations(t2, { init: 1, before: 1, after: 1, destroy: 1 },
H A Dtest-pipeconnectwrap.js6 const initHooks = require('./init-hooks');
49 checkInvocations(a, { init: 1 }, 'after net.connect');
70 checkInvocations(pipeserver, { init: 1, before: 1, after: 1 },
72 checkInvocations(pipe1, { init: 1 }, 'pipe1, client connected');
73 checkInvocations(pipeconnect, { init: 1, before: 1 },
75 checkInvocations(pipe2, { init: 1 }, 'pipe2, client connected');
87 checkInvocations(pipeserver, { init: 1, before: 1, after: 1, destroy: 1 },
89 checkInvocations(pipe1, { init: 1, before: 2, after: 2, destroy: 1 },
91 checkInvocations(pipeconnect, { init: 1, before: 1, after: 1, destroy: 1 },
93 checkInvocations(pipe2, { init
[all...]
H A Dtest-signalwrap.js10 const initHooks = require('./init-hooks');
29 checkInvocations(signal1, { init: 1 }, 'when SIGUSR2 handler is set up');
42 signal1, { init: 1, before: 1 },
50 signal1, { init: 1, before: 2, after: 1 },
70 signal1, { init: 1, before: 2, after: 1 },
73 signal2, { init: 1 },
84 signal1, { init: 1, before: 2, after: 2, destroy: 1 },
87 signal2, { init: 1, before: 1 },
98 signal1, { init: 1, before: 2, after: 2, destroy: 1 },
102 signal2, { init
[all...]
H A Dtest-zlib.zlib-binding.deflate.js6 const initHooks = require('./init-hooks');
24 checkInvocations(hdl, { init: 1 }, 'when created handle');
35 handle.init(
44 checkInvocations(hdl, { init: 1 }, 'when initialized handle');
49 checkInvocations(hdl, { init: 1 }, 'when invoked write() on handle');
54 checkInvocations(hdl, { init: 1, before: 1 },
59 checkInvocations(hdl, { init: 1, before: 2, after: 1 },
71 checkInvocations(hdl, { init: 1, before: 2, after: 2 }, 'when process exits');
/third_party/lwip/src/netif/
H A Dzepif.c89 struct zepif_init init; member
209 err = udp_sendto(state->pcb, q, state->init.zep_dst_ip_addr, state->init.zep_dst_udp_port); in zepif_linkoutput()
235 memcpy(&state->init, init_state, sizeof(struct zepif_init)); in zepif_init()
237 if (state->init.zep_src_udp_port == 0) { in zepif_init()
238 state->init.zep_src_udp_port = ZEPIF_DEFAULT_UDP_PORT; in zepif_init()
240 if (state->init.zep_dst_udp_port == 0) { in zepif_init()
241 state->init.zep_dst_udp_port = ZEPIF_DEFAULT_UDP_PORT; in zepif_init()
244 if (state->init.zep_dst_ip_addr == NULL) { in zepif_init()
246 state->init in zepif_init()
[all...]
/third_party/node/lib/internal/
H A Dpromise_hooks.js18 init: [],
25 const hookSet = ArrayPrototypeSlice(hooks.init);
29 const init = hookSet[i];
31 init(promise, parent);
75 const init = maybeFastPath(hooks.init, initAll);
79 setPromiseHooks(init, before, after, settled);
100 const onInit = makeUseHook('init');
105 function createHook({ init, before, after, settled } = kEmptyObject) {
108 if (init) ArrayPrototypePus
[all...]
/third_party/rust/crates/syn/examples/lazy-static/lazy-static/src/
H A Dlib.rs25 init: Expr,
37 let init: Expr = input.parse()?; in parse()
43 init, in parse()
54 init, in lazy_static()
78 if let Expr::Tuple(ref init) = init { in lazy_static()
79 if init.elems.is_empty() { in lazy_static()
80 init.span() in lazy_static()
114 let init_ptr = quote_spanned! {init.span()=> in lazy_static()
115 Box::into_raw(Box::new(#init)) in lazy_static()
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dfill_window_sse.c153 ulg init; in fill_window_sse() local
159 init = s->window_size - curr; in fill_window_sse()
160 if (init > WIN_INIT) in fill_window_sse()
161 init = WIN_INIT; in fill_window_sse()
162 zmemzero(s->window + curr, (unsigned)init); in fill_window_sse()
163 s->high_water = curr + init; in fill_window_sse()
170 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window_sse()
171 if (init > s->window_size - s->high_water) in fill_window_sse()
172 init = s->window_size - s->high_water; in fill_window_sse()
173 zmemzero(s->window + s->high_water, (unsigned)init); in fill_window_sse()
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dfill_window_sse.c153 ulg init; in fill_window_sse() local
159 init = s->window_size - curr; in fill_window_sse()
160 if (init > WIN_INIT) in fill_window_sse()
161 init = WIN_INIT; in fill_window_sse()
162 zmemzero(s->window + curr, (unsigned)init); in fill_window_sse()
163 s->high_water = curr + init; in fill_window_sse()
170 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window_sse()
171 if (init > s->window_size - s->high_water) in fill_window_sse()
172 init = s->window_size - s->high_water; in fill_window_sse()
173 zmemzero(s->window + s->high_water, (unsigned)init); in fill_window_sse()
[all...]
/third_party/node/lib/internal/webstreams/
H A Dqueuingstrategies.js76 * }} init
78 constructor(init) {
79 validateObject(init, 'init');
80 if (init.highWaterMark === undefined)
81 throw new ERR_MISSING_OPTION('init.highWaterMark');
86 highWaterMark: +init.highWaterMark,
131 * }} init
133 constructor(init) {
134 validateObject(init, 'ini
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cTestPackages.hpp42 void init(void);
54 void init(void);
66 void init(void);
80 void init(void);
94 void init(void);
106 void init(void);
118 void init(void);
130 void init(void);
H A Dgl3cTestPackages.cpp71 void TestCaseWrapper::init(tcu::TestCase* testCase, const std::string& path) in init() function in gl3cts::TestCaseWrapper
76 testCase->init(); in init()
130 void init(void) in init() function in gl3cts::GL30ShaderTests
148 void GL30TestPackage::init(void) in init() function in gl3cts::GL30TestPackage
150 // Call init() in parent - this creates context. in init()
151 TestPackage::init(); in init()
189 void GL31TestPackage::init(void) in init() function in gl3cts::GL31TestPackage
191 // Call init() in parent - this creates context. in init()
192 GL30TestPackage::init(); in init()
220 void GL32TestPackage::init(voi function in gl3cts::GL32TestPackage
250 void init(void) init() function in gl3cts::GL33ShaderTests
281 void GL33TestPackage::init(void) init() function in gl3cts::GL33TestPackage
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStatistic.h67 return init(); in operator =()
72 return init(); in operator ++()
76 init(); in operator ++()
82 return init(); in operator --()
86 init(); in operator --()
94 return init(); in operator +=()
101 return init(); in operator -=()
137 Statistic &init() { in init() function in llvm::Statistic
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-cff2-table.hh141 void init () in init() function
143 top_dict_values_t<>::init (); in init()
161 val.init (); in process_op()
192 void init () in init() function
194 dict_values_t<op_str_t>::init (); in init()
195 privateDictInfo.init (); in init()
231 void init () in init() function
233 dict_values_t<VAL>::init (); in init()
250 void init (const byte_str_t &str) in init() function
252 num_interp_env_t::init (st in init()
400 void init (hb_face_t *face) init() function
[all...]
/third_party/musl/src/thread/
H A Dpthread_once.c11 hidden int __pthread_once_full(pthread_once_t *control, void (*init)(void)) in __pthread_once_full() argument
14 * 0 - we're the first or the other cancelled; run init in __pthread_once_full()
15 * 1 - another thread is running init; wait in __pthread_once_full()
16 * 2 - another thread finished running init; just return in __pthread_once_full()
17 * 3 - another thread is running init, waiters present; wait */ in __pthread_once_full()
22 init(); in __pthread_once_full()
40 int __pthread_once(pthread_once_t *control, void (*init)(void)) in __pthread_once() argument
42 /* Return immediately if init finished before, use load aquire to ensure that in __pthread_once()
43 * effects of the init routine are visible to the caller. */ in __pthread_once()
47 return __pthread_once_full(control, init); in __pthread_once()
50 __pthread_once(pthread_once_t *control, void (*init)(void)) __pthread_once() argument
[all...]
/third_party/musl/porting/linux/user/src/thread/
H A Dpthread_once.c11 hidden int __pthread_once_full(pthread_once_t *control, void (*init)(void)) in __pthread_once_full() argument
14 * 0 - we're the first or the other cancelled; run init in __pthread_once_full()
15 * 1 - another thread is running init; wait in __pthread_once_full()
16 * 2 - another thread finished running init; just return in __pthread_once_full()
17 * 3 - another thread is running init, waiters present; wait */ in __pthread_once_full()
22 init(); in __pthread_once_full()
40 int __pthread_once(pthread_once_t *control, void (*init)(void)) in __pthread_once() argument
42 /* Return immediately if init finished before, use load aquire to ensure that in __pthread_once()
43 * effects of the init routine are visible to the caller. */ in __pthread_once()
47 return __pthread_once_full(control, init); in __pthread_once()
50 __pthread_once(pthread_once_t *control, void (*init)(void)) __pthread_once() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
H A Dmem_intrin.h11 int memcpy_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
12 int memmove_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
13 int memset_test(uint8_t *buf, uint8_t *buf2, uint8_t init, SizeT length);
16 int memcpy_test_fixed_len_##NBYTES(uint8_t init); \
17 int memmove_test_fixed_len_##NBYTES(uint8_t init); \
18 int memset_test_fixed_len_##NBYTES(uint8_t init);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStatistic.h76 return init(); in operator =()
81 return init(); in operator ++()
85 init(); in operator ++()
91 return init(); in operator --()
95 init(); in operator --()
103 return init(); in operator +=()
110 return init(); in operator -=()
120 init(); in updateMax()
124 TrackingStatistic &init() { in init() function in llvm::TrackingStatistic
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp52 cl::init(true), cl::Hidden);
57 cl::init(true), cl::Hidden);
61 cl::init(true), cl::Hidden);
65 cl::init(true), cl::Hidden);
70 cl::init(false), cl::Hidden);
75 cl::init(true), cl::Hidden);
80 cl::init(true), cl::Hidden);
88 cl::init(true));
92 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
98 cl::init(tru
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp32 cl::init(true), cl::desc("Enable Hexagon constant-extender optimization"));
35 cl::init(true), cl::desc("Enable RDF-based optimizations"));
41 cl::Hidden, cl::ZeroOrMore, cl::init(false),
45 cl::Hidden, cl::ZeroOrMore, cl::init(false),
48 static cl::opt<bool> DisableHCP("disable-hcp", cl::init(false), cl::Hidden,
52 cl::Hidden, cl::init(false), cl::desc("Disable store widening"));
55 cl::init(true), cl::Hidden, cl::ZeroOrMore,
58 static cl::opt<bool> EnableEarlyIf("hexagon-eif", cl::init(true), cl::Hidden,
61 static cl::opt<bool> EnableGenInsert("hexagon-insert", cl::init(true),
64 static cl::opt<bool> EnableCommGEP("hexagon-commgep", cl::init(tru
[all...]
/third_party/curl/lib/
H A Ddynbuf.c49 s->init = DYNINIT; in Curl_dyn_init()
54 * free the buffer and re-init the necessary fields. It doesn't touch the
55 * 'init' field and thus this buffer can be reused to add data to again.
75 DEBUGASSERT(s->init == DYNINIT); in dyn_nappend()
130 DEBUGASSERT(s->init == DYNINIT); in Curl_dyn_reset()
144 DEBUGASSERT(s->init == DYNINIT); in Curl_dyn_tail()
168 DEBUGASSERT(s->init == DYNINIT); in Curl_dyn_addn()
181 DEBUGASSERT(s->init == DYNINIT); in Curl_dyn_add()
195 DEBUGASSERT(s->init == DYNINIT); in Curl_dyn_vaddf()
228 DEBUGASSERT(s->init in Curl_dyn_addf()
[all...]
/third_party/jerryscript/tests/jerry-test-suite/12/12.06/12.06.03/
H A D12.06.03-009.js15 var init; variable
17 for (init = (129 - 8) / 11; init != 11; )
19 init = 33;
22 assert(init == 11);

Completed in 9 milliseconds

12345678910>>...191