/third_party/jerryscript/jerry-ext/include/jerryscript-ext/ |
D | arg.impl.h | 100 uintptr_t extra_info; \ 106 .extra_info = u.extra_info \ 246 .extra_info = (uintptr_t) size in jerryx_arg_string() 291 .extra_info = (uintptr_t) size in jerryx_arg_utf8_string() 351 .extra_info = (uintptr_t) info_p in jerryx_arg_native_pointer() 376 … uintptr_t extra_info, /**< the extra parameter, specific to the transform function */ in jerryx_arg_custom() argument 383 .extra_info = extra_info in jerryx_arg_custom() 411 .extra_info = (uintptr_t) object_props in jerryx_arg_object_properties() 439 .extra_info = (uintptr_t) array_items_p in jerryx_arg_array()
|
D | arg.h | 72 uintptr_t extra_info; /**< extra information, specific to func */ member 176 jerryx_arg_custom (void *dest, uintptr_t extra_info, jerryx_arg_transform_func_t func);
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-generator-prototype.c | 94 if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT_RUNNING) in ecma_builtin_generator_prototype_object_do() 99 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT_COMPLETE… in ecma_builtin_generator_prototype_object_do() 108 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_GENERATOR_ITERATE_AND_YIEL… in ecma_builtin_generator_prototype_object_do() 136 …executable_object_p->extended_object.u.class_prop.extra_info &= (uint16_t) ~ECMA_GENERATOR_ITERATE… in ecma_builtin_generator_prototype_object_do() 161 …bool done = (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT… in ecma_builtin_generator_prototype_object_do() 183 … executable_object_p->extended_object.u.class_prop.extra_info |= ECMA_GENERATOR_ITERATE_AND_YIELD; in ecma_builtin_generator_prototype_object_do()
|
D | ecma-builtin-array-iterator-prototype.c | 126 uint8_t iterator_type = ext_obj_p->u.pseudo_array.extra_info; in ecma_builtin_array_iterator_prototype_object_next()
|
/third_party/jerryscript/jerry-ext/arg/ |
D | arg-transform-functions.c | 188 uintptr_t extra_info; \ 189 } u = { .extra_info = c_arg_p->extra_info }; \ 269 jerry_size_t target_buf_size = (jerry_size_t) c_arg_p->extra_info; in jerryx_arg_string_to_buffer_common_routine() 458 expected_info_p = (const jerry_object_native_info_t *) c_arg_p->extra_info; in jerryx_arg_transform_native_pointer() 483 … jerryx_arg_object_props_t *object_props = (const jerryx_arg_object_props_t *) c_arg_p->extra_info; in jerryx_arg_transform_object_props() 504 …t jerryx_arg_array_items_t *array_items_p = (const jerryx_arg_array_items_t *) c_arg_p->extra_info; in jerryx_arg_transform_array_items()
|
D | arg.c | 26 JERRYX_STATIC_ASSERT (sizeof (jerryx_arg_int_option_t) <= sizeof (((jerryx_arg_t *) 0)->extra_info),
|
/third_party/skia/third_party/externals/icu/source/tools/tzcode/ |
D | tzselect.ksh | 249 extra_info= 258 extra_info=" 277 echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
|
/third_party/icu/icu4c/source/tools/tzcode/ |
D | tzselect.ksh | 249 extra_info= 258 extra_info=" 277 echo >&2 "Therefore TZ='$TZ' will be used.$extra_info"
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-arg.c | 195 int expected_num = (int) c_arg_p->extra_info; in my_custom_transform() 731 uintptr_t *extra_info = (uintptr_t *) (c_arg_p->extra_info); in jerry_arg_to_double_or_bool_t() local 735 bool last_parameter = (extra_info[2] == 1); in jerry_arg_to_double_or_bool_t() 740 (jerryx_arg_coerce_t) extra_info[0], in jerry_arg_to_double_or_bool_t() 763 (jerryx_arg_coerce_t) extra_info[0], in jerry_arg_to_double_or_bool_t() 764 (jerryx_arg_optional_t) extra_info[1]); in jerry_arg_to_double_or_bool_t()
|
/third_party/tzdata/ |
D | tzselect.ksh | 635 extra_info= 644 extra_info=" 669 say >&2 "TZ='$TZ' will be used.$extra_info"
|
/third_party/jerryscript/jerry-core/ecma/base/ |
D | ecma-globals.h | 850 uint16_t extra_info; /**< extra information for the object member 894 uint8_t extra_info; /**< extra information about the object. member 1794 …((((ecma_extended_object_t *) object_p)->u.class_prop.extra_info & ECMA_ARRAYBUFFER_EXTERNAL_MEMOR… 1858 #define ECMA_EXECUTABLE_OBJECT_IS_SUSPENDED(extra_info) \ argument 1859 (!((extra_info) & (ECMA_EXECUTABLE_OBJECT_COMPLETED | ECMA_EXECUTABLE_OBJECT_RUNNING)))
|
D | ecma-gc.c | 437 …ECMA_EXECUTABLE_OBJECT_IS_SUSPENDED (executable_object_p->extended_object.u.class_prop.extra_info)) in ecma_gc_mark_executable_object() 444 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_GENERATOR_ITERATE_AND_YIEL… in ecma_gc_mark_executable_object() 874 …JERRY_ASSERT (!(executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJ… in ecma_gc_free_executable_object() 878 …if (executable_object_p->extended_object.u.class_prop.extra_info & ECMA_EXECUTABLE_OBJECT_COMPLETE… in ecma_gc_free_executable_object()
|
/third_party/jerryscript/jerry-core/ecma/operations/ |
D | ecma-promise-object.c | 92 return ((ecma_extended_object_t *) obj_p)->u.class_prop.extra_info; in ecma_promise_get_flags() 108 ((ecma_extended_object_t *) obj_p)->u.class_prop.extra_info ^= flags_to_invert; in ecma_promise_set_state() 280 …((ecma_extended_object_t *) promise_obj_p)->u.class_prop.extra_info |= ECMA_PROMISE_ALREADY_RESOLV… in ecma_promise_reject_handler() 320 …((ecma_extended_object_t *) promise_obj_p)->u.class_prop.extra_info |= ECMA_PROMISE_ALREADY_RESOLV… in ecma_promise_resolve_handler() 538 ext_object_p->u.class_prop.extra_info = ECMA_PROMISE_IS_PENDING; in ecma_op_create_promise_object()
|
D | ecma-iterator-object.c | 139 uint8_t extra_info) /**< extra information */ in ecma_op_create_iterator_object() argument 157 ext_obj_p->u.pseudo_array.extra_info = extra_info; in ecma_op_create_iterator_object()
|
D | ecma-container-object.c | 391 map_obj_p->u.class_prop.extra_info = ECMA_CONTAINER_FLAGS_EMPTY; in ecma_op_container_create() 396 map_obj_p->u.class_prop.extra_info |= ECMA_CONTAINER_FLAGS_WEAK; in ecma_op_container_create() 673 if ((map_object_p->u.class_prop.extra_info & ECMA_CONTAINER_FLAGS_WEAK) != 0 in ecma_op_container_has() 782 if ((map_object_p->u.class_prop.extra_info & ECMA_CONTAINER_FLAGS_WEAK) != 0 in ecma_op_container_set() 799 if ((map_object_p->u.class_prop.extra_info & ECMA_CONTAINER_FLAGS_WEAK) != 0) in ecma_op_container_set() 1161 uint8_t iterator_kind = ext_obj_p->u.pseudo_array.extra_info; in ecma_op_container_iterator_next()
|
D | ecma-arraybuffer-object.c | 55 ext_object_p->u.class_prop.extra_info = ECMA_ARRAYBUFFER_INTERNAL_MEMORY; in ecma_arraybuffer_new_object() 86 array_object_p->extended_object.u.class_prop.extra_info = ECMA_ARRAYBUFFER_EXTERNAL_MEMORY; in ecma_arraybuffer_new_object_external()
|
D | ecma-iterator-object.h | 48 uint8_t iterator_type, uint8_t extra_info);
|
D | ecma-typedarray-object.c | 479 return (ecma_typedarray_type_t) ext_object_p->u.pseudo_array.extra_info; in ecma_get_typedarray_id() 565 ext_object_p->u.pseudo_array.extra_info = (uint8_t) typedarray_id; in ecma_typedarray_create_object_with_length() 605 ext_object_p->u.pseudo_array.extra_info = (uint8_t) typedarray_id; in ecma_typedarray_create_object_with_buffer()
|
/third_party/node/deps/v8/tools/debug_helper/ |
D | get-object-properties.cc | 566 auto extra_info = in GetHeapObjectPropertiesNotCompressed() local 568 brief = JoinWithSpace(brief, extra_info.first); in GetHeapObjectPropertiesNotCompressed() 571 for (size_t i = 0; i < extra_info.second.size(); i++) { in GetHeapObjectPropertiesNotCompressed() 575 extra_info.second[i]->GetPublicView()->name) == 0) { in GetHeapObjectPropertiesNotCompressed() 576 props[j] = std::move(extra_info.second[i]); in GetHeapObjectPropertiesNotCompressed() 582 props.push_back(std::move(extra_info.second[i])); in GetHeapObjectPropertiesNotCompressed()
|
/third_party/jerryscript/jerry-core/vm/ |
D | opcodes.c | 611 executable_object_p->extended_object.u.class_prop.extra_info = 0; in opfunc_create_executable_object() 691 …CMA_EXECUTABLE_OBJECT_IS_SUSPENDED (executable_object_p->extended_object.u.class_prop.extra_info)); in opfunc_resume_executable_object() 693 executable_object_p->extended_object.u.class_prop.extra_info |= ECMA_EXECUTABLE_OBJECT_RUNNING; in opfunc_resume_executable_object() 705 …executable_object_p->extended_object.u.class_prop.extra_info &= (uint16_t) ~ECMA_EXECUTABLE_OBJECT… in opfunc_resume_executable_object() 712 … executable_object_p->extended_object.u.class_prop.extra_info |= ECMA_EXECUTABLE_OBJECT_COMPLETED; in opfunc_resume_executable_object()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
D | frame_enc.c | 503 if (pic->extra_info != NULL) { in StoreSideInfo() 504 uint8_t* const info = &pic->extra_info[it->x_ + it->y_ * enc->mb_w_]; in StoreSideInfo() 541 if (pic->extra_info != NULL) { in StoreSideInfo() 543 memset(pic->extra_info, 0, in StoreSideInfo() 544 enc->mb_w_ * enc->mb_h_ * sizeof(*pic->extra_info)); in StoreSideInfo()
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | cwebp.c | 133 pic->extra_info = in AllocExtraInfo() 134 (uint8_t*)WebPMalloc(mb_w * mb_h * sizeof(*pic->extra_info)); in AllocExtraInfo() 272 if (pic->extra_info != NULL) { in PrintMapInfo() 279 const int c = pic->extra_info[x + y * mb_w]; in PrintMapInfo() 1228 WebPFree(picture.extra_info); in main()
|
/third_party/jerryscript/docs/ |
D | 09.EXT-REFERENCE-ARG.md | 22 uintptr_t extra_info; 103 Additional parameters can be provided to the function through `c_arg_p->extra_info`. 768 uintptr_t extra_info, 774 - `extra_info` - the extra parameter data, specific to the transform function.
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
D | encode.h | 334 uint8_t* extra_info; // if not NULL, points to an array of size member
|
/third_party/node/deps/v8/src/diagnostics/ |
D | gdb-jit.cc | 1250 bool extra_info = desc_->has_scope_info(); in WriteBodyInternal() local 1254 w->Write<uint8_t>(extra_info ? DW_CHILDREN_YES : DW_CHILDREN_NO); in WriteBodyInternal() 1266 if (extra_info) { in WriteBodyInternal()
|