Home
last modified time | relevance | path

Searched refs:_name (Results 1 – 25 of 174) sorted by relevance

1234567

/third_party/libwebsockets/include/libwebsockets/
Dlws-metrics.h225 #define lws_metrics_caliper_compose(_name) \ argument
226 lws_metric_caliper_t _name;
227 #define lws_metrics_caliper_bind(_name, _mt) \ argument
228 { if (_name.mt) { \
230 lws_metrics_priv_to_pub(_name.mt)->name); \
232 _name.mt = _mt; _name.us_start = lws_now_usecs(); }
233 #define lws_metrics_caliper_declare(_name, _mt) \ argument
234 lws_metric_caliper_t _name = { .mt = _mt, .us_start = lws_now_usecs() }
235 #define lws_metrics_caliper_report(_name, _go_nogo) \ argument
236 { if (_name.us_start) { lws_metric_event(_name.mt, _go_nogo, \
[all …]
Dlws-fault-injection.h230 #define lws_fi_user_wsi_fi(_wsi, _name) _lws_fi_user_wsi_fi(_wsi, _name) argument
231 #define lws_fi_user_context_fi(_ctx, _name) _lws_fi_user_context_fi(_ctx, _name) argument
232 #define lws_fi_user_ss_fi(_h, _name) _lws_fi_user_ss_fi(_h, _name) argument
233 #define lws_fi_user_sspc_fi(_h, _name) _lws_fi_user_sspc_fi(_h, _name) argument
246 #define lws_fi_user_wsi_fi(_wsi, _name) (0) argument
247 #define lws_fi_user_context_fi(_wsi, _name) (0) argument
248 #define lws_fi_user_ss_fi(_h, _name) (0) argument
249 #define lws_fi_user_sspc_fi(_h, _name) (0) argument
/third_party/mesa3d/src/amd/vulkan/radix_sort/shaders/
Dbufref.h50 #define RS_BUFREF_DEFINE(_layout, _name, _devaddr) RS_RESTRICT _layout _name = _layout(_devaddr) argument
56 #define RS_BUFREF_DEFINE_AT_OFFSET_UINT32(_layout, _name, _devaddr_u32vec2, _offset) \ argument
57 RS_RESTRICT _layout _name; \
65 _name = _layout(devaddr); \
68 #define RS_BUFREF_DEFINE_AT_OFFSET_UINT32(_layout, _name, _devaddr, _offset) \ argument
69 RS_RESTRICT _layout _name = _layout(_devaddr + _offset)
76 #define RS_BUFREF_DEFINE_AT_OFFSET_U32VEC2(_layout, _name, _devaddr_u32vec2, _offset_u32vec2) \ argument
77 RS_RESTRICT _layout _name; \
85 _name = _layout(devaddr); \
88 #define RS_BUFREF_DEFINE_AT_OFFSET_U32VEC2(_layout, _name, _devaddr, _offset_u32vec2) \ argument
[all …]
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_dump_defines.c66 #define DEFINE_UTIL_STR_CONTINUOUS(_name) \ argument
68 util_str_##_name(unsigned value, boolean shortened) \
71 …return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_short_names), util_##_name##_sho…
73 … return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_names), util_##_name##_names); \
81 #define DEFINE_UTIL_STR_CONTINUOUS_COUNT(_name, _count) \ argument
83 util_str_##_name(unsigned value, boolean shortened) \
85 STATIC_ASSERT(ARRAY_SIZE(util_##_name##_names) == _count); \
86 STATIC_ASSERT(ARRAY_SIZE(util_##_name##_short_names) == _count); \
88 …return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_short_names), util_##_name##_sho…
90 … return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_names), util_##_name##_names); \
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_vla.h35 #define NIR_VLA(_type, _name, _length) \ argument
36 _type *_name = alloca((_length) * sizeof *_name)
44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ argument
45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name)
53 #define NIR_VLA_ZERO(_type, _name, _length) \ argument
54 NIR_VLA_FILL(_type, _name, _length, 0)
/third_party/libwebsockets/lib/system/metrics/
Dprivate-lib-system-metrics.h81 #define lws_metrics_hist_bump_priv(_mt, _name) \ argument
82 lws_metrics_hist_bump_(lws_metrics_priv_to_pub(_mt), _name)
83 #define lws_metrics_hist_bump_priv_wsi(_wsi, _hist, _name) \ argument
84 lws_metrics_hist_bump_(lws_metrics_priv_to_pub(_wsi->a.context->_hist), _name)
85 #define lws_metrics_hist_bump_priv_ss(_ss, _hist, _name) \ argument
86 lws_metrics_hist_bump_(lws_metrics_priv_to_pub(_ss->context->_hist), _name)
89 #define lws_metrics_hist_bump_priv(_mt, _name) argument
90 #define lws_metrics_hist_bump_priv_wsi(_wsi, _hist, _name) argument
91 #define lws_metrics_hist_bump_priv_ss(_ss, _hist, _name) argument
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
Dargument.js26 this._name = name.slice(1, -1);
30 this._name = name.slice(1, -1);
34 this._name = name;
38 if (this._name.length > 3 && this._name.slice(-3) === '...') {
40 this._name = this._name.slice(0, -3);
51 return this._name;
/third_party/jerryscript/targets/nuttx-stm32f4/
Dsetjmp.S18 .macro func _name argument
19 .global \_name
20 .type \_name, %function
21 \_name:
23 .macro endfunc _name argument
24 .size \_name, .-\_name
/third_party/jerryscript/targets/curie_bsp/source/
Dsetjmp.S16 .macro func _name argument
17 .global \_name
18 .type \_name, %function
19 \_name:
21 .macro endfunc _name argument
22 .size \_name, .-\_name
/third_party/typescript/tests/baselines/reference/
DemitClassDeclarationWithGetterSetterInES6.symbols5 _name: string;
6 >_name : Symbol(C._name, Decl(emitClassDeclarationWithGetterSetterInES6.ts, 0, 9))
11 return this._name;
12 >this._name : Symbol(C._name, Decl(emitClassDeclarationWithGetterSetterInES6.ts, 0, 9))
14 >_name : Symbol(C._name, Decl(emitClassDeclarationWithGetterSetterInES6.ts, 0, 9))
DemitClassDeclarationWithGetterSetterInES6.types5 _name: string;
6 >_name : string
11 return this._name;
12 >this._name : string
14 >_name : string
DcrashRegressionTest.types36 this._templateStorage.templateSources[this._name] = value;
37 >this._templateStorage.templateSources[this._name] = value : string
38 >this._templateStorage.templateSources[this._name] : string
44 >this._name : any
46 >_name : any
/third_party/libunwind/libunwind/doc/
Dunw_get_proc_name.tex8 \begin{Name}{3}{unw\_get\_proc\_name}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_na…
15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \T…
19 The \Func{unw\_get\_proc\_name}() routine returns the name of the
27 address 0x40003000, then invoking \Func{unw\_get\_proc\_name}() on a
36 dynamic symbol table. In such cases, \Func{unw\_get\_proc\_name}()
45 On successful completion, \Func{unw\_get\_proc\_name}() returns 0.
51 \Func{unw\_get\_proc\_name}() is thread-safe. If cursor \Var{cp} is
65 In addition, \Func{unw\_get\_proc\_name}() may return any error
/third_party/mesa3d/src/util/
Ddriconf.h72 #define DRI_CONF_OPT_B(_name, def, _desc) { \ argument
75 .name = #_name, \
81 #define DRI_CONF_OPT_I(_name, def, min, max, _desc) { \ argument
84 .name = #_name, \
91 #define DRI_CONF_OPT_F(_name, def, min, max, _desc) { \ argument
94 .name = #_name, \
101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \ argument
104 .name = #_name, \
112 #define DRI_CONF_OPT_S(_name, def, _desc) { \ argument
115 .name = #_name, \
[all …]
/third_party/rust/crates/serde/serde/src/ser/
Dfmt.rs70 _name: &'static str, in serialize_unit_variant()
77 fn serialize_newtype_struct<T: ?Sized>(self, _name: &'static str, value: &T) -> fmt::Result in serialize_newtype_struct()
105 _name: &'static str, in serialize_newtype_variant()
126 _name: &'static str, in serialize_tuple_struct()
134 _name: &'static str, in serialize_tuple_variant()
148 _name: &'static str, in serialize_struct()
156 _name: &'static str, in serialize_struct_variant()
/third_party/python/Doc/tools/extensions/
Dpeg_highlight.py24 _name = r"([^\W\d]\w*)" variable in PEGLexer
55 (_name + _text_ws + "(=)", bygroups(None, None, None),),
56 …(_name + _text_ws + r"(\[[\w\d_\*]+?\])" + _text_ws + "(=)", bygroups(None, None, None, None, None…
73 r"^\s*" + _name + r"\s*" + r"(\[.*\])?" + r"\s*" + r"(\(.+\))?" + r"\s*(:)",
76 (_name, Name.Function),
Dasdl_highlight.py19 _name = r"([^\W\d]\w*)" variable in ASDLLexer
31 r"(module)" + _text_ws + _name,
41 _name + _text_ws + "(=)",
44 (_name, Name.Class),
/third_party/python/Lib/multiprocessing/
Dshared_memory.py66 _name = None variable in SharedMemory
99 self._name = name
108 self._name = name
120 register(self._name, "shared_memory")
154 self._name = temp_name
158 self._name = name
209 reported_name = self._name
211 if self._name.startswith("/"):
212 reported_name = self._name[1:]
239 if _USE_POSIX and self._name:
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/members/instance_and_static_members/
Dinstance_and_static_members_1.ts26 private _name: string; property in Person
29 this._name = name;
33 this._name = name;
36 return this._name;
/third_party/rust/crates/bindgen/bindgen/
Dcallbacks.rs35 fn will_parse_macro(&self, _name: &str) -> MacroParsingBehavior { in will_parse_macro()
50 fn int_macro(&self, _name: &str, _value: i64) -> Option<IntKind> { in int_macro()
56 fn str_macro(&self, _name: &str, _value: &[u8]) {} in str_macro()
65 fn func_macro(&self, _name: &str, _value: &[&[u8]]) {} in func_macro()
107 _name: &str, in blocklisted_type_implements_trait()
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
Ddisasm.c352 #define CASE(_name, _srcs) \ argument
353 [ppir_codegen_vec4_mul_op_##_name] = { \
354 .name = #_name, \
418 #define CASE(_name, _srcs) \ argument
419 [ppir_codegen_vec4_acc_op_##_name] = { \
420 .name = #_name, \
480 #define CASE(_name, _srcs) \ argument
481 [ppir_codegen_float_mul_op_##_name] = { \
482 .name = #_name, \
541 #define CASE(_name, _srcs) \ argument
[all …]
/third_party/mesa3d/src/vulkan/util/
Dvk_alloc.h187 #define VK_MULTIALLOC(_name) \ argument
188 struct vk_multialloc _name = { 0, }
222 #define VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, _size) \ argument
223 _type *_name; \
224 vk_multialloc_add_size(_ma, &_name, _type, _size);
226 #define VK_MULTIALLOC_DECL(_ma, _type, _name, _count) \ argument
227 VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, (_count) * sizeof(_type));
/third_party/icu/icu4c/source/test/intltest/
Dtextfile.cpp23 TextFile::TextFile(const char* _name, const char* _encoding, UErrorCode& ec) : in TextFile() argument
30 if (U_FAILURE(ec) || _name == 0 || _encoding == 0) { in TextFile()
38 name = uprv_malloc(uprv_strlen(_name) + 1); in TextFile()
44 uprv_strcpy(name, _name); in TextFile()
47 name = (char*) _name; in TextFile()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_tex_sample.c167 #define LP_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument
169 lp_llvm_texture_##_name( const struct lp_sampler_dynamic_state *base, \
177 _index, #_name, _emit_load ); \
236 #define LP_LLVM_SAMPLER_MEMBER(_name, _index, _emit_load) \ argument
238 lp_llvm_sampler_##_name( const struct lp_sampler_dynamic_state *base, \
244 sampler_unit, _index, #_name, _emit_load ); \
312 #define LP_LLVM_IMAGE_MEMBER(_name, _index, _emit_load) \ argument
314 lp_llvm_image_##_name( const struct lp_sampler_dynamic_state *base, \
321 _index, #_name, _emit_load ); \
/third_party/mesa3d/src/gallium/auxiliary/draw/
Ddraw_llvm_sample.c250 #define DRAW_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ argument
252 draw_llvm_texture_##_name( const struct lp_sampler_dynamic_state *base, \
260 _index, #_name, _emit_load ); \
276 #define DRAW_LLVM_SAMPLER_MEMBER(_name, _index, _emit_load) \ in DRAW_LLVM_TEXTURE_MEMBER() argument
278 draw_llvm_sampler_##_name( const struct lp_sampler_dynamic_state *base, \ in DRAW_LLVM_TEXTURE_MEMBER()
284 sampler_unit, _index, #_name, _emit_load ); \ in DRAW_LLVM_TEXTURE_MEMBER()
294 #define DRAW_LLVM_IMAGE_MEMBER(_name, _index, _emit_load) \ argument
296 draw_llvm_image_##_name( const struct lp_sampler_dynamic_state *base, \
303 _index, #_name, _emit_load ); \

1234567