Home
last modified time | relevance | path

Searched refs:__e (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/amd/addrlib/src/core/
Daddrcommon.h84 #define ADDR_ASSERT(__e) \ argument
86 ADDR_ANALYSIS_ASSUME(__e); \
87 if ( !((__e) ? TRUE : FALSE)) { ADDR_DBG_BREAK(); } \
90 #define ADDR_ASSERT(__e) if ( !((__e) ? TRUE : FALSE)) { ADDR_DBG_BREAK(); } argument
97 #define ADDR_ASSERT(__e) { ADDR_ANALYSIS_ASSUME(__e); } argument
99 #define ADDR_ASSERT(__e) argument
183 #define ADDR_C_ASSERT(__e) static_assert(__e, "") argument
189 # define ADDR_C_ASSERT(__e) do { \ argument
190 (void) sizeof(char [1 - 2*!(__e)]); \
/third_party/mesa3d/src/vulkan/util/
Dvk_util.h98 #define vk_foreach_struct(__e, __start) \ argument
101 for (VkBaseOutStructure *__e = __iter.pos; \
102 __e; __e = vk_pnext_iterator_next(&__iter))
104 #define vk_foreach_struct_const(__e, __start) \ argument
108 for (const VkBaseInStructure *__e = (VkBaseInStructure *)__iter.pos; \
109 __e; __e = (VkBaseInStructure *)vk_pnext_iterator_next(&__iter))
/third_party/mesa3d/src/intel/tools/
Dintel_context.h88 for (unsigned __e = 0; __e < ARRAY_SIZE(__regs); __e++) \
89 *(data)++ = __regs[__e]; \
/third_party/typescript/tests/baselines/reference/
DglobalThis.symbols2 var __e = Math.E; // should not generate 'this.Math.E'
3 >__e : Symbol(__e, Decl(globalThis.ts, 0, 3))
DglobalThis.js2 var __e = Math.E; // should not generate 'this.Math.E' variable
5 var __e = Math.E; // should not generate 'this.Math.E'
DglobalThis.types2 var __e = Math.E; // should not generate 'this.Math.E'
3 >__e : number
/third_party/python/Lib/test/support/
Dtestresult.py25 self.__e = None
43 self.__e = e = self.__ET.SubElement(self.__suite, 'testcase')
49 e = self.__e
50 self.__e = None
/third_party/typescript/tests/cases/compiler/
DglobalThis.ts1 var __e = Math.E; // should not generate 'this.Math.E' variable
/third_party/elfutils/lib/
Dstdatomic-fbsd.h320 __typeof__(*__ep) __e = *__ep; \
323 __e, desired)) == __e); \
/third_party/rust/crates/serde/test_suite/tests/expand/
Dgeneric_struct.expanded.rs473 __e: __E, in deserialize()
478 let __field0: T = match <T as _serde::Deserialize>::deserialize(__e) { in deserialize()
552 __e: __E, in deserialize_in_place()
557 _serde::Deserialize::deserialize_in_place(__e, &mut self.place.0) in deserialize_in_place()
/third_party/gstreamer/gstreamer/gst/
Dgstcaps.c119 GstCapsArrayElement __e={s, f}; \
120 if (gst_structure_set_parent_refcount (__e.structure, &GST_MINI_OBJECT_REFCOUNT(caps)) && \
121 …(!__e.features || gst_caps_features_set_parent_refcount (__e.features, &GST_MINI_OBJECT_REFCOUNT(c…
122 g_array_append_val (GST_CAPS_ARRAY (caps), __e); \
/third_party/rust/crates/serde/serde_derive/src/
Dde.rs840 try!(#func(__e)) in deserialize_newtype_struct()
845 try!(#path(__e)) in deserialize_newtype_struct()
860 … fn visit_newtype_struct<__E>(self, __e: __E) -> _serde::__private::Result<Self::Value, __E::Error> in deserialize_newtype_struct()
880 … fn visit_newtype_struct<__E>(self, __e: __E) -> _serde::__private::Result<Self::Value, __E::Error> in deserialize_newtype_struct_in_place()
884 _serde::Deserialize::deserialize_in_place(__e, &mut self.place.0) in deserialize_newtype_struct_in_place()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp2771 explicit exception_ptr(void* __e) noexcept;
12891 pointer_to(__make_not_void<element_type>& __e) in pointer_to()
12892 { return _Ptr::pointer_to(__e); } in pointer_to()
25705 error_code(_ErrorCodeEnum __e) noexcept in error_code()
25706 { *this = make_error_code(__e); } in error_code()
25723 operator=(_ErrorCodeEnum __e) noexcept in operator =()
25724 { return *this = make_error_code(__e); } in operator =()
25753 make_error_code(errc __e) noexcept in make_error_code() argument
25754 { return error_code(static_cast<int>(__e), generic_category()); } in make_error_code()
25766 operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e) in operator <<() argument
[all …]