/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
H A D | completion.h | 47 typedef struct completion { struct 56 /* This inline function should be used to reinitialize a completion structure so it can 78 * @ingroup completion 79 * @brief Initialize a completion. 82 * This API is used to initialize a specified completion. 85 * <li>The input parameter x must point to valid memory, otherwise, initilize a completion would failed.</li> 88 * @param x [IN] Pointer to the completion to be initialized,which must point to valid memory. 92 * <ul><li>completion.h: the header file that contains the API declaration.</li></ul> 95 extern void linux_init_completion(struct completion *x); 98 * @ingroup completion [all...] |
/third_party/jerryscript/jerry-core/ecma/operations/ |
H A D | ecma-iterator-object.c | 66 ecma_value_t completion = ecma_builtin_helper_def_prop (new_array_p, in ecma_create_array_from_iter_element() local 72 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_create_array_from_iter_element() 407 * and the operation is called with normal completion 417 ecma_value_t completion = ECMA_VALUE_EMPTY; in ecma_op_iterator_close() local 421 completion = jcontext_take_exception (); in ecma_op_iterator_close() 430 ecma_free_value (completion); in ecma_op_iterator_close() 437 if (ecma_is_value_empty (completion)) in ecma_op_iterator_close() 442 jcontext_raise_exception (completion); in ecma_op_iterator_close() 452 if (!ecma_is_value_empty (completion)) in ecma_op_iterator_close() 463 jcontext_raise_exception (completion); in ecma_op_iterator_close() [all...] |
H A D | ecma-objects-arguments.c | 184 ecma_value_t completion = ecma_op_object_define_own_property (obj_p, in ecma_op_create_arguments_object() local 188 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_create_arguments_object() 190 completion = ecma_op_object_define_own_property (obj_p, in ecma_op_create_arguments_object() 193 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_create_arguments_object() 206 ecma_value_t completion = ecma_op_create_mutable_binding (lex_env_p, in ecma_op_create_arguments_object() local 209 JERRY_ASSERT (ecma_is_value_empty (completion)); in ecma_op_create_arguments_object() 211 completion = ecma_op_set_mutable_binding (lex_env_p, in ecma_op_create_arguments_object() 216 JERRY_ASSERT (ecma_is_value_empty (completion)); in ecma_op_create_arguments_object() 284 ecma_value_t completion = ecma_op_set_mutable_binding (lex_env_p, in ecma_op_arguments_object_define_own_property() local 289 JERRY_ASSERT (ecma_is_value_empty (completion)); in ecma_op_arguments_object_define_own_property() [all...] |
H A D | ecma-conversion.c | 561 ecma_value_t completion; in ecma_op_from_property_descriptor() local 582 completion = ecma_op_object_define_own_property (obj_p, in ecma_op_from_property_descriptor() 585 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_from_property_descriptor() 590 completion = ecma_op_object_define_own_property (obj_p, in ecma_op_from_property_descriptor() 593 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_from_property_descriptor() 613 completion = ecma_op_object_define_own_property (obj_p, in ecma_op_from_property_descriptor() 616 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_from_property_descriptor() 628 completion = ecma_op_object_define_own_property (obj_p, in ecma_op_from_property_descriptor() 631 JERRY_ASSERT (ecma_is_value_true (completion)); in ecma_op_from_property_descriptor() 637 completion in ecma_op_from_property_descriptor() [all...] |
H A D | ecma-get-put-value.c | 269 ecma_value_t completion = ecma_op_object_put (binding_obj_p, in ecma_op_put_value_lex_env_base() local 274 if (ECMA_IS_VALUE_ERROR (completion)) in ecma_op_put_value_lex_env_base() 276 return completion; in ecma_op_put_value_lex_env_base() 279 JERRY_ASSERT (ecma_is_value_boolean (completion)); in ecma_op_put_value_lex_env_base() 306 ecma_value_t completion = ecma_op_object_put (ecma_builtin_get_global (), in ecma_op_put_value_lex_env_base() local 311 JERRY_ASSERT (ecma_is_value_boolean (completion)); in ecma_op_put_value_lex_env_base()
|
H A D | ecma-lex-env.c | 194 ecma_value_t completion = ecma_builtin_helper_def_prop (binding_obj_p, in ecma_op_create_mutable_binding() local 200 if (ECMA_IS_VALUE_ERROR (completion)) in ecma_op_create_mutable_binding() 202 return completion; in ecma_op_create_mutable_binding() 206 JERRY_ASSERT (ecma_is_value_boolean (completion)); in ecma_op_create_mutable_binding() 259 ecma_value_t completion = ecma_op_object_put (binding_obj_p, in ecma_op_set_mutable_binding() local 264 if (ECMA_IS_VALUE_ERROR (completion)) in ecma_op_set_mutable_binding() 266 return completion; in ecma_op_set_mutable_binding() 269 JERRY_ASSERT (ecma_is_value_boolean (completion)); in ecma_op_set_mutable_binding()
|
H A D | ecma-promise-object.c | 561 ecma_value_t completion = ECMA_VALUE_UNDEFINED; in ecma_op_create_promise_object() local 568 completion = ecma_op_function_call (ecma_get_object_from_value (executor), in ecma_op_create_promise_object() 577 completion = ecma_call_builtin_executor (ecma_get_object_from_value (executor), in ecma_op_create_promise_object() 589 if (ECMA_IS_VALUE_ERROR (completion)) in ecma_op_create_promise_object() 592 completion = jcontext_take_exception (); in ecma_op_create_promise_object() 595 &completion, in ecma_op_create_promise_object() 600 ecma_free_value (completion); in ecma_op_create_promise_object()
|
H A D | ecma-array-object.c | 954 ecma_value_t completion = ecma_op_to_number (new_value); in ecma_op_array_object_set_length() local 956 if (ECMA_IS_VALUE_ERROR (completion)) in ecma_op_array_object_set_length() 958 return completion; in ecma_op_array_object_set_length() 961 JERRY_ASSERT (!ECMA_IS_VALUE_ERROR (completion) in ecma_op_array_object_set_length() 962 && ecma_is_value_number (completion)); in ecma_op_array_object_set_length() 964 ecma_number_t new_len_num = ecma_get_number_from_value (completion); in ecma_op_array_object_set_length() 966 ecma_free_value (completion); in ecma_op_array_object_set_length()
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A D | linux_completion.c | 32 #include "linux/completion.h" 40 void linux_init_completion(struct completion *x) in linux_init_completion() 63 void linux_complete(struct completion *x) in linux_complete() 87 STATIC BOOL NoNeedWait(struct completion *x) in NoNeedWait() 99 void linux_wait_for_completion(struct completion *x) in linux_wait_for_completion() 134 unsigned long linux_wait_for_completion_timeout(struct completion *x, unsigned long timeout) in linux_wait_for_completion_timeout() 185 void linux_complete_all(struct completion *x) in linux_complete_all() 213 int linux_completion_done(struct completion *x) in linux_completion_done()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcParallelShaderCompileTests.cpp | 287 int completion = 0; in iterate() local 289 while (completion != 8 && deGetMicroseconds() < shLoopStart + 1000000) in iterate() 291 completion = 0; in iterate() 297 completion++; in iterate() 300 if (completion != 8) in iterate() 303 "Failed reading completion status for parallel shader compiling"); in iterate() 329 int completion = 0; in iterate() local 331 while (completion != 8 && deGetMicroseconds() < prLoopStart + 1000000) in iterate() 333 completion = 0; in iterate() 339 completion in iterate() [all...] |
/third_party/node/deps/npm/node_modules/are-we-there-yet/lib/ |
H A D | tracker-group.js | 9 completion = {} 42 this.completion[unit.id] = unit.completed() 45 this.emit('change', unit.name, this.completion[unit.id], unit) 59 valPerWeight * this.weight[trackerId] * this.completion[trackerId] 104 trackerGroup.completion[tracker.id] = completed
|
/third_party/node/deps/npm/lib/utils/ |
H A D | completion.sh | 2 ###-begin-npm-completion-### 4 # npm command completion script 6 # Installation: npm completion >> ~/.bashrc (or ~/.zshrc) 7 # Or, maybe: npm completion > /usr/local/etc/bash_completion.d/npm 24 npm completion -- "${words[@]}" \ 42 npm completion -- "${words[@]}" \ 59 npm completion -- "${words[@]}" \ 70 ###-end-npm-completion-###
|
/third_party/rust/crates/clap/clap_complete_fig/tests/snapshots/ |
H A D | aliases.fig.js | 1 const completion: Fig.Spec = { 33 export default completion;
|
H A D | basic.fig.js | 1 const completion: Fig.Spec = { 54 export default completion;
|
H A D | feature_sample.fig.js | 1 const completion: Fig.Spec = { 75 export default completion;
|
H A D | special_commands.fig.js | 1 const completion: Fig.Spec = { 143 export default completion;
|
H A D | sub_subcommands.fig.js | 1 const completion: Fig.Spec = { 141 export default completion;
|
H A D | quoting.fig.js | 1 const completion: Fig.Spec = { 136 export default completion;
|
H A D | value_hint.fig.js | 1 const completion: Fig.Spec = { 133 export default completion;
|
/third_party/mesa3d/src/imagination/vulkan/ |
H A D | pvr_queue.c | 94 for (uint32_t i = 0; i < ARRAY_SIZE(queue->completion); i++) in pvr_queue_init() 95 queue->completion[i] = NULL; in pvr_queue_init() 150 for (uint32_t i = 0; i < ARRAY_SIZE(queue->completion); i++) { in pvr_queue_finish() 151 if (queue->completion[i]) in pvr_queue_finish() 152 vk_sync_destroy(&queue->device->vk, queue->completion[i]); in pvr_queue_finish() 174 for (int i = 0U; i < ARRAY_SIZE(queue->completion); i++) { in pvr_QueueWaitIdle() 177 if (!queue->completion[i]) in pvr_QueueWaitIdle() 181 queue->completion[i], in pvr_QueueWaitIdle() 265 /* Replace the completion fences. */ in pvr_process_graphics_cmd() 313 /* Replace the completion fence in pvr_process_compute_cmd() [all...] |
/third_party/curl/scripts/ |
H A D | completion.pl | 45 print "# curl fish completion\n\n"; 56 # curl zsh completion 156 completion.pl - Generates tab-completion files for various shells 160 completion.pl [options...]
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-number.c | 87 ecma_value_t completion = ecma_op_create_number_object (ecma_make_integer_value (0)); in ecma_builtin_number_dispatch_construct() local 88 return completion; in ecma_builtin_number_dispatch_construct()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_create_addr_space.tex | 95 On successful completion, the \Func{find\_proc\_info}() call-back must 128 On successful completion, the \Func{get\_dyn\_info\_list\_addr}() 147 On successful completion, the \Func{access\_mem}() 166 On successful completion, the \Func{access\_reg}() call-back must 186 On successful completion, the \Func{access\_fpreg}() call-back must 206 On successful completion, the \Func{resume}() call-back must return 232 On successful completion, the \Func{get\_proc\_name}() call-back must 239 On successful completion, \Func{unw\_create\_addr\_space}() returns a
|
/third_party/node/deps/npm/test/lib/commands/ |
H A D | help.js | 20 // return a sorted list of uniq pages in order to test completion 84 t.test('npm help completion', async t => { 87 const noArgs = await help.completion({ conf: { argv: { remain: [] } } }) 89 const threeArgs = await help.completion({ conf: { argv: { remain: ['one', 'two', 'three'] } } })
|
/third_party/node/lib/internal/readline/ |
H A D | interface.js | 662 this[kWriteToOutput](`Tab completion error: ${inspect(err)}`); 717 const completion = completions[i]; 718 if (completion === '' || lineIndex === maxColumns) { 725 if (completion !== '') { 726 output += completion; 1320 // If tab completion enabled, do that...
|