/external/u-boot/arch/mips/include/asm/ |
D | posix_types.h | 58 unsigned long __tmp = __fd / __NFDBITS; in __FD_SET() local 60 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET() 66 unsigned long __tmp = __fd / __NFDBITS; in __FD_CLR() local 68 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR() 74 unsigned long __tmp = __fd / __NFDBITS; in __FD_ISSET() local 76 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET() 86 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO() local 92 __tmp[ 0] = 0; __tmp[ 1] = 0; in __FD_ZERO() 93 __tmp[ 2] = 0; __tmp[ 3] = 0; in __FD_ZERO() 94 __tmp[ 4] = 0; __tmp[ 5] = 0; in __FD_ZERO() [all …]
|
/external/u-boot/arch/sh/include/asm/ |
D | posix_types.h | 55 unsigned long __tmp = __fd / __NFDBITS; in __FD_SET() local 57 __fdsetp->fds_bits[__tmp] |= (1UL<<__rem); in __FD_SET() 63 unsigned long __tmp = __fd / __NFDBITS; in __FD_CLR() local 65 __fdsetp->fds_bits[__tmp] &= ~(1UL<<__rem); in __FD_CLR() 72 unsigned long __tmp = __fd / __NFDBITS; in __FD_ISSET() local 74 return (__p->fds_bits[__tmp] & (1UL<<__rem)) != 0; in __FD_ISSET() 84 unsigned long *__tmp = __p->fds_bits; in __FD_ZERO() local 90 __tmp[ 0] = 0; __tmp[ 1] = 0; in __FD_ZERO() 91 __tmp[ 2] = 0; __tmp[ 3] = 0; in __FD_ZERO() 92 __tmp[ 4] = 0; __tmp[ 5] = 0; in __FD_ZERO() [all …]
|
/external/u-boot/arch/riscv/include/asm/ |
D | encoding.h | 151 #define read_csr(reg) ({ unsigned long __tmp; \ 152 asm volatile ("csrr %0, " #reg : "=r"(__tmp)); \ 153 __tmp; }) 162 #define swap_csr(reg, _val) ({ unsigned long __tmp; \ 165 asm volatile ("csrrw %0, " #reg ", %1" : "=r"(__tmp) : "i"(val)); \ 167 asm volatile ("csrrw %0, " #reg ", %1" : "=r"(__tmp) : "r"(val)); \ 168 __tmp; }) 170 #define set_csr(reg, _bit) ({ unsigned long __tmp; \ 173 asm volatile ("csrrs %0, " #reg ", %1" : "=r"(__tmp) : "i"(bit)); \ 175 asm volatile ("csrrs %0, " #reg ", %1" : "=r"(__tmp) : "r"(bit)); \ [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/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 | 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 | 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/u-boot/include/linux/ |
D | typecheck.h | 20 ({ typeof(type) __tmp = function; \ 21 (void)__tmp; \
|
D | kernel.h | 240 do { typeof(a) __tmp = (a); (a) = (b); (b) = __tmp; } while (0)
|
/external/u-boot/arch/arm/include/asm/ |
D | secure.h | 22 typeof(_fn) *__tmp = (__fn - gd->reloc_off); \ 23 __tmp; \
|
/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 | 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 …]
|
D | filesystem | 680 basic_string<_ECharT> __tmp(__b, __e); 681 _Narrower()(back_inserter(__dest), __tmp.data(), 682 __tmp.data() + __tmp.length()); 691 basic_string<_ECharT> __tmp; 693 __tmp.push_back(*__b); 694 _Narrower()(back_inserter(__dest), __tmp.data(), 695 __tmp.data() + __tmp.length()); 924 basic_string<_ECharT> __tmp; 925 __tmp += __x; 926 _PathCVT<_ECharT>::__append_source(__pn_, __tmp); [all …]
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_maos_arrays.c | 56 int __tmp; \ 58 : "=%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/swiftshader/third_party/llvm-7.0/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]
|