/external/llvm-project/clang/lib/Headers/ |
D | __clang_hip_math.h | 62 char __tmp = *__tagp; 64 if (__tmp >= '0' && __tmp <= '7') 65 __r = (__r * 8u) + __tmp - '0'; 79 char __tmp = *__tagp; 81 if (__tmp >= '0' && __tmp <= '9') 82 __r = (__r * 10u) + __tmp - '0'; 96 char __tmp = *__tagp; 98 if (__tmp >= '0' && __tmp <= '9') 99 __r = (__r * 16u) + __tmp - '0'; 100 else if (__tmp >= 'a' && __tmp <= 'f') [all …]
|
D | __clang_cuda_intrinsics.h | 47 __Bits __tmp; \ 48 memcpy(&__tmp, &__val, sizeof(__val)); \ 49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \ 50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \ 52 memcpy(&__ret, &__tmp, sizeof(__tmp)); \ 79 long long __tmp; \ 80 _Static_assert(sizeof(__tmp) == sizeof(__val)); \ 81 memcpy(&__tmp, &__val, sizeof(__val)); \ 82 __tmp = ::__FnName(__tmp, __offset, __width); \ 84 memcpy(&__ret, &__tmp, sizeof(__ret)); \ [all …]
|
/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/libevent/WIN32-Code/ |
D | tree.h | 184 struct type *__tmp; \ 192 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 195 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 205 struct type __node, *__left, *__right, *__tmp; \ 213 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 214 if (__tmp == NULL) \ 216 if ((cmp)(elm, __tmp) < 0){ \ 217 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 223 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 224 if (__tmp == NULL) \ [all …]
|
/external/llvm-project/libclc/generic/lib/shared/ |
D | vload.cl | 91 TYPE __tmp; \ 92 VEC_LOAD##VEC_SIZE(__tmp, AS) \ 93 return __tmp; \ 97 TYPE __tmp; \ 98 VEC_LOAD##VEC_SIZE(__tmp, AS) \ 99 return __tmp; \
|
/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/llvm-project/libcxx/include/experimental/ |
D | coroutine | 141 coroutine_handle __tmp; 142 __tmp.__handle_ = __addr; 143 return __tmp; 221 coroutine_handle __tmp; 222 __tmp.__handle_ = __addr; 223 return __tmp; 252 coroutine_handle __tmp; 253 __tmp.__handle_ = __builtin_coro_promise( 256 return __tmp;
|
/external/libcxx/include/experimental/ |
D | coroutine | 143 coroutine_handle __tmp; 144 __tmp.__handle_ = __addr; 145 return __tmp; 223 coroutine_handle __tmp; 224 __tmp.__handle_ = __addr; 225 return __tmp; 254 coroutine_handle __tmp; 255 __tmp.__handle_ = __builtin_coro_promise( 258 return __tmp;
|
/external/mesa3d/src/mesa/main/ |
D | macros.h | 154 fi_type __tmp; \ 155 __tmp.f = (FLT); \ 156 if (__tmp.i < 0) \ 158 else if (__tmp.i >= IEEE_ONE) \ 161 __tmp.f = __tmp.f * (255.0F/256.0F) + 32768.0F; \ 162 UB = (GLubyte) __tmp.i; \ 167 fi_type __tmp; \ 168 __tmp.f = (FLT) * (255.0F/256.0F) + 32768.0F; \ 169 UB = (GLubyte) __tmp.i; \
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_maos_arrays.c | 56 int __tmp; \ 58 : "=%c" (__tmp), "=D" (dst), "=S" (__tmp) \
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_util.h | 44 __tmp = (gl_shader_stage)((stage_bits) &TU_STAGE_MASK); \ 45 stage = __builtin_ffs(__tmp) - 1, __tmp; __tmp &= ~(1 << (stage)))
|
/external/llvm-project/libcxx/include/ |
D | any | 559 any __tmp; 560 __rhs.__call(_Action::_Move, &__tmp); 562 __tmp.__call(_Action::_Move, this); 601 auto __tmp = _VSTD::any_cast<add_const_t<_RawValueType>>(&__v); 602 if (__tmp == nullptr) 604 return static_cast<_ValueType>(*__tmp); 616 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); 617 if (__tmp == nullptr) 619 return static_cast<_ValueType>(*__tmp); 631 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); [all …]
|
/external/libcxx/include/ |
D | any | 546 any __tmp; 547 __rhs.__call(_Action::_Move, &__tmp); 549 __tmp.__call(_Action::_Move, this); 588 auto __tmp = _VSTD::any_cast<add_const_t<_RawValueType>>(&__v); 589 if (__tmp == nullptr) 591 return static_cast<_ValueType>(*__tmp); 603 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); 604 if (__tmp == nullptr) 606 return static_cast<_ValueType>(*__tmp); 618 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v); [all …]
|
/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/mesa3d/src/util/ |
D | bitset.h | 154 for (BITSET_WORD __tmp = *(__set), *__foo = &__tmp; __foo != NULL; __foo = NULL) \ 156 (__i = __bitset_next_set(__i, &__tmp, __set, __size)) < __size;)
|
/external/libnl/include/netlink/ |
D | attr.h | 181 type __tmp = value; \ 182 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/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-project/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 | 298 do { __typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
/external/llvm-project/pstl/include/pstl/internal/ |
D | glue_numeric_impl.h | 199 auto __tmp = __unary_op(*__first); in transform_inclusive_scan() local 200 *__result = __tmp; in transform_inclusive_scan() 202 __binary_op, __unary_op, __tmp); in transform_inclusive_scan()
|
/external/mesa3d/src/gallium/frontends/lavapipe/ |
D | lvp_private.h | 202 __tmp = (gl_shader_stage)((stage_bits) & LVP_STAGE_MASK); \ 203 stage = __builtin_ffs(__tmp) - 1, __tmp; \ 204 __tmp &= ~(1 << (stage)))
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | STLExtras.h | 137 mapped_iterator __tmp = *this; variable 139 return __tmp; 142 mapped_iterator __tmp = *this; variable 144 return __tmp;
|