Home
last modified time | relevance | path

Searched refs:_type (Results 1 - 25 of 153) sorted by relevance

1234567

/third_party/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h204 #define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type
206 , typename p0##_type, typename p1##_type
208 , typename p0##_type, typename p1##_type, typename p2##_type
210 , typename p0##_type, typename p1##_type, typename p2##_type, \
211 typename p3##_type
[all...]
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_dump.h120 #define trace_dump_arg(_type, _arg) \
123 trace_dump_##_type(_arg); \
134 #define trace_dump_arg_struct(_type, _arg) \
137 trace_dump_##_type(&_arg); \
141 #define trace_dump_ret(_type, _arg) \
144 trace_dump_##_type(_arg); \
148 #define trace_dump_array(_type, _obj, _size) \
155 trace_dump_##_type((_obj)[idx]); \
164 #define trace_dump_struct_array(_type, _obj, _size) \
171 trace_dump_##_type(
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_physical_device_features.py146 for _type in doc.findall('./types/type'):
147 if _type.attrib.get('name') != 'VkPhysicalDeviceFeatures':
152 for p in _type.findall('./member'):
173 for _type in doc.findall('./types/type'):
174 if _type.attrib.get('category') != 'struct':
176 if _type.attrib.get('structextends') != 'VkPhysicalDeviceFeatures2,VkDeviceCreateInfo':
178 if _type.attrib.get('name') in provisional_structs:
182 for elem in _type:
189 for p in _type.findall('./member'):
199 feat = Feature(name=_type
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_vla.h35 #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/mesa3d/src/vulkan/util/
H A Dvk_alloc.h211 #define vk_multialloc_add_size(_ma, _ptr, _type, _size) \
213 _type **_tmp = (_ptr); \
216 (_size), alignof(_type)); \
219 #define vk_multialloc_add(_ma, _ptr, _type, _count) \
220 vk_multialloc_add_size(_ma, _ptr, _type, (_count) * sizeof(**(_ptr)));
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, _nam
[all...]
H A Dvk_cmd_queue_gen.py504 for _type in doc.findall('./types/type'):
505 if _type.attrib.get('category') != 'struct':
509 for p in _type.findall('./member'):
525 types[_type.attrib['name']] = EntrypointType(name=_type.attrib['name'], enum=type_enum, members=members, extended_by=[])
527 for _type in doc.findall('./types/type'):
528 if _type.attrib.get('category') != 'struct':
530 if _type.attrib.get('structextends') is None:
532 for extended in _type.attrib.get('structextends').split(','):
533 types[extended].extended_by.append(types[_type
[all...]
/third_party/node/deps/v8/testing/
H A Dgtest-support.h37 #define TRACED_FOREACH(_type, _var, _container) \
38 for (_type const _var : _container) \
47 #define TRACED_FORRANGE(_type, _var, _low, _high) \
48 for (_type _var##_i = _low; _var##_i <= _high; ++_var##_i) \
50 for (_type const _var = _var##_i; !_var##_done;) \
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_llvm.h197 #define draw_jit_context_planes(_gallivm, _type, _ptr) \
198 lp_build_struct_get2(_gallivm, _type, _ptr, DRAW_JIT_CTX_PLANES, "planes")
222 #define draw_jit_header_id(_gallivm, _type, _ptr) \
223 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_VERTEX_ID, "id")
225 #define draw_jit_header_clip_pos(_gallivm, _type, _ptr) \
226 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_CLIP_POS, "clip_pos")
228 #define draw_jit_header_data(_gallivm, _type, _ptr) \
229 lp_build_struct_get_ptr2(_gallivm, _type, _ptr, DRAW_JIT_VERTEX_DATA, "data")
232 #define draw_jit_vbuffer_stride(_gallivm, _type, _ptr) \
233 lp_build_struct_get2(_gallivm, _type, _pt
[all...]
/third_party/python/Include/internal/
H A Dpycore_initconfig.h25 (PyStatus){._type = _PyStatus_TYPE_OK,}
29 ._type = _PyStatus_TYPE_ERROR, \
36 ._type = _PyStatus_TYPE_EXIT, \
39 (err._type == _PyStatus_TYPE_ERROR)
41 (err._type == _PyStatus_TYPE_EXIT)
43 (err._type != _PyStatus_TYPE_OK)
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_query.c108 #define _Q(_name, _query_type, _type, _result_type) { \
110 .type = PIPE_DRIVER_QUERY_TYPE_##_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/compiler/
H A Dglsl_types.h382 static const glsl_type *const NAME##_type;
385 static const glsl_type *const struct_##NAME##_type;
1354 #define DECL_TYPE(NAME, ...) static const glsl_type _##NAME##_type;
1356 #define STRUCT_TYPE(NAME) static const glsl_type _struct_##NAME##_type;
1480 #define DEFAULT_CONSTRUCTORS(_type, _name) \
1481 type(_type), name(_name), location(-1), component(-1), offset(-1), \
1484 glsl_struct_field(const struct glsl_type *_type, in glsl_struct_field()
1487 : DEFAULT_CONSTRUCTORS(_type, _name) in glsl_struct_field()
1493 glsl_struct_field(const struct glsl_type *_type, const char *_name) in glsl_struct_field()
1494 : DEFAULT_CONSTRUCTORS(_type, _nam in glsl_struct_field()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DYAMLTraits.h1637 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type) \
1638 struct _type { \
1639 _type() = default; \
1640 _type(const _base v) : value(v) {} \
1641 _type(const _type &v) = default; \
1642 _type &operator=(const _type &rhs) = default; \
1643 _type &operator=(const _base &rhs) { value = rhs; return *this; } \
1645 bool operator==(const _type
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DYAMLTraits.h1284 #define LLVM_YAML_STRONG_TYPEDEF(_base, _type) \
1285 struct _type { \
1286 _type() = default; \
1287 _type(const _base v) : value(v) {} \
1288 _type(const _type &v) = default; \
1289 _type &operator=(const _type &rhs) = default; \
1290 _type &operator=(const _base &rhs) { value = rhs; return *this; } \
1292 bool operator==(const _type
1470 typedef typename T::value_type _type; global() typedef
[all...]
/third_party/python/Lib/tkinter/
H A Dmessagebox.py70 # Rename _icon and _type options to allow overriding them in options
71 def _show(title=None, message=None, _icon=None, _type=None, **options):
73 if _type and "type" not in options: options["type"] = _type
/third_party/node/deps/v8/src/codegen/ppc/
H A Dmacro-assembler-ppc.h300 template <class _type>
302 switch (sizeof(_type)) { in SignedExtend()
320 template <class _type>
322 switch (sizeof(_type)) { in ZeroExtend()
339 template <class _type>
341 if (std::is_signed<_type>::value) { in ExtendValue()
342 SignedExtend<_type>(dst, value); in ExtendValue()
344 ZeroExtend<_type>(dst, value); in ExtendValue()
348 template <class _type>
350 switch (sizeof(_type)) { in LoadReserve()
[all...]
/third_party/node/test/async-hooks/
H A Dtest-callback-error.js14 new async_hooks.AsyncResource(`${arg}_type`);
21 const resource = new async_hooks.AsyncResource(`${arg}_type`);
30 new async_hooks.AsyncResource(`${arg}_type`);
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_dump_state.c169 #define util_dump_arg(_stream, _type, _arg) \
172 util_dump_##_type(_stream, _arg); \
176 #define util_dump_ret(_stream, _type, _arg) \
179 util_dump_##_type(_stream, _arg); \
183 #define util_dump_array(_stream, _type, _obj, _size) \
189 util_dump_##_type(_stream, (_obj)[idx]); \
195 #define util_dump_struct_array(_stream, _type, _obj, _size) \
201 util_dump_##_type(_stream, &(_obj)[idx]); \
207 #define util_dump_member(_stream, _type, _obj, _member) \
210 util_dump_##_type(_strea
[all...]
/third_party/FreeBSD/sbin/newfs_msdos/
H A Dmkfs_msdos.h65 #define AOPT(_opt, _type, _name, _min, _desc) _type _name;
/third_party/node/lib/internal/bootstrap/switches/
H A Dis_main_thread.js49 // Note stream._type is used for test-module-load-list.js
54 stream._type = 'tty';
61 stream._type = 'fs';
87 stream._type = 'pipe';
/third_party/skia/bench/
H A DRectBench.cpp273 RectBench(2), fMode(mode), _type(type) { in BlitMaskBench()
293 if (_type == KMaskShader) {
302 switch (_type) {
330 kMaskType _type;
/third_party/mesa3d/src/mesa/main/
H A Dformat_parser.py396 _type = VOID
400 if _type == VOID:
401 _type = c.type
402 assert c.type == _type
403 return _type
/third_party/skia/third_party/externals/freetype/include/freetype/internal/
H A Dpsaux.h278 #define T1_NEW_SIMPLE_FIELD( _ident, _type, _fname, _dict ) \
280 _ident, T1CODE, _type, \
297 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \
299 _ident, T1CODE, _type, \
308 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \
310 _ident, T1CODE, _type, \
/third_party/FreeBSD/sys/kern/
H A Dbus_if.h27 int _type, int *_rid,
44 * @param _type the type of resource to allocate
61 device_t _child, int _type, in BUS_ALLOC_RESOURCE()
70 return ((bus_alloc_resource_t *) _m)(_dev, _child, _type, _rid, _start, _end, _count, _flags); in BUS_ALLOC_RESOURCE()
60 BUS_ALLOC_RESOURCE(device_t _dev, device_t _child, int _type, int *_rid, rman_res_t _start, rman_res_t _end, rman_res_t _count, u_int _flags) BUS_ALLOC_RESOURCE() argument
/third_party/rust/crates/rust-openssl/openssl-sys/src/
H A Dx509_vfy.rs139 _type: c_int, in X509_LOOKUP_add_dir()
146 _type as c_long, in X509_LOOKUP_add_dir()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
H A Dx509_vfy.rs23 pub fn X509_load_cert_file(ctx: *mut X509_LOOKUP, file: *const c_char, _type: c_int) -> c_int; in X509_load_cert_file()
24 pub fn X509_load_crl_file(ctx: *mut X509_LOOKUP, file: *const c_char, _type: c_int) -> c_int; in X509_load_crl_file()

Completed in 20 milliseconds

1234567