/external/mesa3d/src/glx/ |
D | packrender.h | 159 int8_t __tmp = (a); \ 160 memcpy((pc + (offset)), &__tmp, 1); \ 165 int16_t __tmp = (a); \ 166 memcpy((pc + (offset)), &__tmp, 2); \ 171 int32_t __tmp = (a); \ 172 memcpy((pc + (offset)), &__tmp, 4); \ 177 float __tmp = (a); \ 178 memcpy((pc + (offset)), &__tmp, 4); \ 183 double __tmp = (a); \ 184 memcpy((pc + (offset)), &__tmp, 8); \
|
/external/clang/lib/Headers/ |
D | __clang_cuda_intrinsics.h | 60 __Bits __tmp; \ 61 memcpy(&__in, &__tmp, sizeof(__in)); \ 62 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \ 63 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \ 65 memcpy(&__out, &__tmp, sizeof(__tmp)); \ 75 long long __tmp; \ 76 _Static_assert(sizeof(__tmp) == sizeof(__in)); \ 77 memcpy(&__tmp, &__in, sizeof(__in)); \ 78 __tmp = ::__FnName(__tmp, __offset, __width); \ 80 memcpy(&__out, &__tmp, sizeof(__out)); \
|
/external/openssh/openbsd-compat/ |
D | sys-tree.h | 191 struct type *__tmp; \ 199 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 202 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 212 struct type __node, *__left, *__right, *__tmp; \ 220 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 221 if (__tmp == NULL) \ 223 if ((cmp)(elm, __tmp) < 0){ \ 224 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 230 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 231 if (__tmp == NULL) \ [all …]
|
/external/libcxx/include/experimental/ |
D | any | 487 any __tmp; 488 __rhs.__call(_Action::_Move, &__tmp); 490 __tmp.__call(_Action::_Move, this); 518 _Tp * __tmp = any_cast<_Tp>(&__v); 519 if (__tmp == nullptr) 521 return *__tmp; 533 _Tp * __tmp = any_cast<_Tp>(&__v); 534 if (__tmp == nullptr) 536 return *__tmp; 548 _Tp * __tmp = any_cast<_Tp>(&__v); [all …]
|
D | filesystem | 601 basic_string<_ECharT> __tmp(__b, __e); 602 _Narrower()(back_inserter(__dest), __tmp.data(), 603 __tmp.data() + __tmp.length()); 611 basic_string<_ECharT> __tmp; 613 __tmp.push_back(*__b); 614 _Narrower()(back_inserter(__dest), __tmp.data(), 615 __tmp.data() + __tmp.length()); 847 basic_string<_ECharT> __tmp; 848 __tmp += __x; 849 _PathCVT<_ECharT>::__append_source(__pn_, __tmp); [all …]
|
/external/mesa3d/src/mesa/main/ |
D | macros.h | 152 fi_type __tmp; \ 153 __tmp.f = (FLT); \ 154 if (__tmp.i < 0) \ 156 else if (__tmp.i >= IEEE_ONE) \ 159 __tmp.f = __tmp.f * (255.0F/256.0F) + 32768.0F; \ 160 UB = (GLubyte) __tmp.i; \ 165 fi_type __tmp; \ 166 __tmp.f = (FLT) * (255.0F/256.0F) + 32768.0F; \ 167 UB = (GLubyte) __tmp.i; \
|
/external/mesa3d/src/util/ |
D | bitset.h | 131 #define BITSET_FOREACH_SET(__i, __tmp, __set, __size) \ argument 132 for (__tmp = *(__set), __i = 0; \ 133 (__i = __bitset_next_set(__i, &__tmp, __set, __size)) < __size;)
|
/external/libcxx/include/ |
D | any | 540 any __tmp; 541 __rhs.__call(_Action::_Move, &__tmp); 543 __tmp.__call(_Action::_Move, this); 581 auto __tmp = _VSTD::any_cast<add_const_t<_RawValueType>>(&__v); 582 if (__tmp == nullptr) 584 return static_cast<_ValueType>(*__tmp); 595 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); 596 if (__tmp == nullptr) 598 return static_cast<_ValueType>(*__tmp); 609 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); [all …]
|
D | iterator | 650 reference operator*() const {_Iter __tmp = current; return *--__tmp;} 656 reverse_iterator operator++(int) {reverse_iterator __tmp(*this); --current; return __tmp;} 660 reverse_iterator operator--(int) {reverse_iterator __tmp(*this); ++current; return __tmp;} 1076 move_iterator operator++(int) {move_iterator __tmp(*this); ++__i; return __tmp;} 1080 move_iterator operator--(int) {move_iterator __tmp(*this); --__i; return __tmp;} 1336 {__wrap_iter __tmp(*this); ++(*this); return __tmp;} 1347 {__wrap_iter __tmp(*this); --(*this); return __tmp;}
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_maos_arrays.c | 55 int __tmp; \ 57 : "=%c" (__tmp), "=D" (dst), "=S" (__tmp) \
|
D | radeon_dma.c | 41 int __tmp; \ 43 : "=%c" (__tmp), "=D" (dst), "=S" (__tmp) \
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | STLExtras.h | 97 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; } variable 98 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; } variable
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Alpha/ |
D | 2006-07-03-ASMFormalLowering.ll | 8 %__tmp = alloca i32, align 4 ; <i32*> [#uses=1] 9 …stl_c $1,$2\0A\09beq $1,$$Lxadd_0\0A\09mb", "=&r,=*&r,=*m,m,r"( i32* %__tmp, i32* %__mem, i32*…
|
/external/mesa3d/src/mesa/tnl/ |
D | t_pipeline.c | 197 unsigned short __tmp; in _tnl_run_pipeline() local 236 START_FAST_MATH(__tmp); in _tnl_run_pipeline() 246 END_FAST_MATH(__tmp); in _tnl_run_pipeline()
|
/external/libnl/include/netlink/ |
D | attr.h | 161 type __tmp = value; \ 162 NLA_PUT(msg, attrtype, sizeof(type), &__tmp); \
|
/external/mesa3d/src/mesa/tnl_dd/ |
D | t_dd_triemit.h | 12 int __tmp; \ 14 : "=%c" (j), "=D" (vb), "=S" (__tmp) \
|
/external/llvm/include/llvm/ADT/ |
D | STLExtras.h | 151 mapped_iterator __tmp = *this; variable 153 return __tmp; 156 mapped_iterator __tmp = *this; variable 158 return __tmp;
|
/external/swiftshader/third_party/LLVM/test/Transforms/LowerInvoke/ |
D | 2003-12-10-Crash.ll | 17 %__tmp.0 = phi i32* [ null, %invoke_cont.0 ], [ null, %then ] ; <i32*> [#uses=0]
|
/external/llvm/test/Transforms/LowerInvoke/ |
D | 2003-12-10-Crash.ll | 17 %__tmp.0 = phi i32* [ null, %invoke_cont.0 ], [ null, %then ] ; <i32*> [#uses=0]
|
/external/mesa3d/src/gallium/drivers/freedreno/ |
D | freedreno_util.h | 447 do { __typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_dma.c | 41 int __tmp; \ 43 : "=%c" (__tmp), "=D" (dst), "=S" (__tmp) \
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | STLExtras.h | 165 mapped_iterator __tmp = *this; variable 167 return __tmp; 170 mapped_iterator __tmp = *this; variable 172 return __tmp;
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_private.h | 841 __tmp = (gl_shader_stage)((stage_bits) & RADV_STAGE_MASK); \ 842 stage = __builtin_ffs(__tmp) - 1, __tmp; \ 843 __tmp &= ~(1 << (stage)))
|
/external/libusb/examples/getopt/ |
D | getopt.c | 279 char __tmp = __getopt_nonoption_flags[ch1]; \ 281 __getopt_nonoption_flags[ch2] = __tmp; \
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_private.h | 1371 __tmp = (gl_shader_stage)((stage_bits) & ANV_STAGE_MASK); \ 1372 stage = __builtin_ffs(__tmp) - 1, __tmp; \ 1373 __tmp &= ~(1 << (stage)))
|