/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-metrics.h | 225 #define lws_metrics_caliper_compose(_name) \ 226 lws_metric_caliper_t _name; 227 #define lws_metrics_caliper_bind(_name, _mt) \ 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) \ 234 lws_metric_caliper_t _name = { .mt = _mt, .us_start = lws_now_usecs() } 235 #define lws_metrics_caliper_report(_name, _go_nog [all...] |
H A D | lws-fault-injection.h | 230 #define lws_fi_user_wsi_fi(_wsi, _name) _lws_fi_user_wsi_fi(_wsi, _name) 231 #define lws_fi_user_context_fi(_ctx, _name) _lws_fi_user_context_fi(_ctx, _name) 232 #define lws_fi_user_ss_fi(_h, _name) _lws_fi_user_ss_fi(_h, _name) 233 #define lws_fi_user_sspc_fi(_h, _name) _lws_fi_user_sspc_fi(_h, _name) 246 #define lws_fi_user_wsi_fi(_wsi, _name) (0) 247 #define lws_fi_user_context_fi(_wsi, _name) ( [all...] |
/third_party/mesa3d/src/amd/vulkan/radix_sort/shaders/ |
H A D | bufref.h | 50 #define RS_BUFREF_DEFINE(_layout, _name, _devaddr) RS_RESTRICT _layout _name = _layout(_devaddr) 56 #define RS_BUFREF_DEFINE_AT_OFFSET_UINT32(_layout, _name, _devaddr_u32vec2, _offset) \ 57 RS_RESTRICT _layout _name; \ 65 _name = _layout(devaddr); \ 68 #define RS_BUFREF_DEFINE_AT_OFFSET_UINT32(_layout, _name, _devaddr, _offset) \ 69 RS_RESTRICT _layout _name = _layout(_devaddr + _offset) 76 #define RS_BUFREF_DEFINE_AT_OFFSET_U32VEC2(_layout, _name, _devaddr_u32vec2, _offset_u32vec2) \ 77 RS_RESTRICT _layout _name; \ 85 _name [all...] |
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_dump_defines.c | 66 #define DEFINE_UTIL_STR_CONTINUOUS(_name) \ 68 util_str_##_name(unsigned value, boolean shortened) \ 71 return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_short_names), util_##_name##_short_names); \ 73 return util_dump_enum_continuous(value, ARRAY_SIZE(util_##_name##_names), util_##_name##_names); \ 81 #define DEFINE_UTIL_STR_CONTINUOUS_COUNT(_name, _count) \ 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_name [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_vla.h | 35 #define NIR_VLA(_type, _name, _length) \ 36 _type *_name = alloca((_length) * sizeof *_name) 44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name) 53 #define NIR_VLA_ZERO(_type, _name, _length) \ 54 NIR_VLA_FILL(_type, _name, _length, 0)
|
/third_party/libwebsockets/lib/system/metrics/ |
H A D | private-lib-system-metrics.h | 81 #define lws_metrics_hist_bump_priv(_mt, _name) \ 82 lws_metrics_hist_bump_(lws_metrics_priv_to_pub(_mt), _name) 83 #define lws_metrics_hist_bump_priv_wsi(_wsi, _hist, _name) \ 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) \ 86 lws_metrics_hist_bump_(lws_metrics_priv_to_pub(_ss->context->_hist), _name) 89 #define lws_metrics_hist_bump_priv(_mt, _name) 90 #define lws_metrics_hist_bump_priv_wsi(_wsi, _hist, _name) 91 #define lws_metrics_hist_bump_priv_ss(_ss, _hist, _name)
|
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/ |
H A D | argument.js | 26 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/ |
H A D | setjmp.S | 18 .macro func _name 19 .global \_name 20 .type \_name, %function 21 \_name: 23 .macro endfunc _name 24 .size \_name, .-\_name
|
/third_party/jerryscript/targets/curie_bsp/source/ |
H A D | setjmp.S | 16 .macro func _name 17 .global \_name 18 .type \_name, %function 19 \_name: 21 .macro endfunc _name 22 .size \_name, .-\_name
|
/third_party/python/Doc/tools/extensions/ |
H A D | peg_highlight.py | 24 _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),
|
H A D | asdl_highlight.py | 19 _name = r"([^\W\d]\w*)" variable in ASDLLexer 31 r"(module)" + _text_ws + _name, 41 _name + _text_ws + "(=)", 44 (_name, Name.Class),
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_get_proc_name.tex | 8 \begin{Name}{3}{unw\_get\_proc\_name}{David Mosberger-Tang}{Programming Library}{unw\_get\_proc\_name}unw\_get\_proc\_name -- get name of current procedure 15 \Type{int} \Func{unw\_get\_proc\_name}(\Type{unw\_cursor\_t~*}\Var{cp}, \Type{char~*}\Var{bufp}, \Type{size\_t} \Var{len}, \Type{unw\_word\_t~*}\Var{offp});\\ 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}() ma [all...] |
/third_party/mesa3d/src/vulkan/util/ |
H A D | vk_alloc.h | 187 #define VK_MULTIALLOC(_name) \ 188 struct vk_multialloc _name = { 0, } 222 #define VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, _size) \ 223 _type *_name; \ 224 vk_multialloc_add_size(_ma, &_name, _type, _size); 226 #define VK_MULTIALLOC_DECL(_ma, _type, _name, _count) \ 227 VK_MULTIALLOC_DECL_SIZE(_ma, _type, _name, (_count) * sizeof(_type));
|
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/ |
H A D | disasm.c | 352 #define CASE(_name, _srcs) \ 353 [ppir_codegen_vec4_mul_op_##_name] = { \ 354 .name = #_name, \ 418 #define CASE(_name, _srcs) \ 419 [ppir_codegen_vec4_acc_op_##_name] = { \ 420 .name = #_name, \ 480 #define CASE(_name, _srcs) \ 481 [ppir_codegen_float_mul_op_##_name] = { \ 482 .name = #_name, \ 541 #define CASE(_name, _src [all...] |
/third_party/mesa3d/src/util/ |
H A D | driconf.h | 72 #define DRI_CONF_OPT_B(_name, def, _desc) { \ 75 .name = #_name, \ 81 #define DRI_CONF_OPT_I(_name, def, min, max, _desc) { \ 84 .name = #_name, \ 91 #define DRI_CONF_OPT_F(_name, def, min, max, _desc) { \ 94 .name = #_name, \ 101 #define DRI_CONF_OPT_E(_name, def, min, max, _desc, values) { \ 104 .name = #_name, \ 112 #define DRI_CONF_OPT_S(_name, def, _desc) { \ 115 .name = #_name, \ [all...] |
/third_party/python/Lib/multiprocessing/ |
H A D | shared_memory.py | 67 _name = None variable in SharedMemory 100 self._name = name 109 self._name = name 120 resource_tracker.register(self._name, "shared_memory") 154 self._name = temp_name 158 self._name = name 212 reported_name = self._name 214 if self._name.startswith("/"): 215 reported_name = self._name[1:] 242 if _USE_POSIX and self._name [all...] |
H A D | context.py | 198 return self._name 258 return self._actual_context._name 303 _name = 'fork' variable in .ForkContext 307 _name = 'spawn' variable in .SpawnContext 311 _name = 'forkserver' variable in .ForkServerContext 344 _name = 'spawn' variable in .SpawnContext
|
H A D | process.py | 93 self._name = name or type(self).__name__ + '-' + \ 191 return self._name 196 self._name = name 276 info = [type(self).__name__, 'name=%r' % self._name] 368 self._name = name 401 self._name = 'MainProcess'
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | textfile.cpp | 23 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/freedreno/ |
H A D | freedreno_query.c | 108 #define _Q(_name, _query_type, _type, _result_type) { \ 109 .name = _name, .query_type = _query_type, \ 115 #define FQ(_name, _query_type, _type, _result_type) \ 116 _Q(_name, FD_QUERY_##_query_type, _type, _result_type) 118 #define PQ(_name, _query_type, _type, _result_type) \ 119 _Q(_name, PIPE_QUERY_##_query_type, _type, _result_type)
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_tex_sample.c | 167 #define LP_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ 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) \ 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) \ 314 lp_llvm_image_##_name( const struct lp_sampler_dynamic_state *base, \ 321 _index, #_name, _emit_load ); \
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_llvm_sample.c | 250 #define DRAW_LLVM_TEXTURE_MEMBER(_name, _index, _emit_load) \ 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) \ 278 draw_llvm_sampler_##_name( const struct lp_sampler_dynamic_state *base, \ 284 sampler_unit, _index, #_name, _emit_load ); \ 294 #define DRAW_LLVM_IMAGE_MEMBER(_name, _index, _emit_load) \ 296 draw_llvm_image_##_name( const struct lp_sampler_dynamic_state *base, \ 303 _index, #_name, _emit_load ); \
|
/third_party/FreeBSD/sys/kern/ |
H A D | bus_if.h | 327 typedef device_t bus_add_child_t(device_t _dev, u_int _order, const char *_name, 345 * @param _name devclass name for new device or @c NULL if not 352 const char *_name, int _unit) in BUS_ADD_CHILD() 356 return ((bus_add_child_t *) _m)(_dev, _order, _name, _unit); in BUS_ADD_CHILD() 444 const char *_name, int *_unitp); 450 * @param _name the name of the device's new devclass 455 const char *_name, int *_unitp) in BUS_HINT_DEVICE_UNIT() 459 ((bus_hint_device_unit_t *) _m)(_dev, _child, _name, _unitp); in BUS_HINT_DEVICE_UNIT() 351 BUS_ADD_CHILD(device_t _dev, u_int _order, const char *_name, int _unit) BUS_ADD_CHILD() argument 454 BUS_HINT_DEVICE_UNIT(device_t _dev, device_t _child, const char *_name, int *_unitp) BUS_HINT_DEVICE_UNIT() argument
|
/third_party/python/Lib/ |
H A D | operator.py | 309 __slots__ = ('_name', '_args', '_kwargs') 312 self._name = name 313 if not isinstance(self._name, str): 319 return getattr(obj, self._name)(*self._args, **self._kwargs) 322 args = [repr(self._name)] 331 return self.__class__, (self._name,) + self._args 334 return partial(self.__class__, self._name, **self._kwargs), self._args
|
/third_party/NuttX/include/nuttx/fs/ |
H A D | fs.h | 47 #define FSMAP_ENTRY(_l, _name, _mop, _is_mtd_support, _is_bdfs) \ 50 _name, \
|