/external/mesa3d/src/compiler/glsl/ |
D | list.h | 649 #define foreach_in_list(__type, __inst, __list) \ argument 650 for (__type *(__inst) = (__type *)(__list)->head_sentinel.next; \ 652 (__inst) = (__type *)(__inst)->next) 654 #define foreach_in_list_reverse(__type, __inst, __list) \ argument 655 for (__type *(__inst) = (__type *)(__list)->tail_sentinel.prev; \ 657 (__inst) = (__type *)(__inst)->prev) 662 #define foreach_in_list_safe(__type, __node, __list) \ argument 663 for (__type *__node = (__type *)(__list)->head_sentinel.next, \ 664 *__next = (__type *)__node->next; \ 666 __node = __next, __next = (__type *)__next->next) [all …]
|
/external/mesa3d/src/intel/compiler/ |
D | brw_cfg.h | 308 #define foreach_block_and_inst(__block, __type, __inst, __cfg) \ argument 310 foreach_inst_in_block (__type, __inst, __block) 315 #define foreach_block_and_inst_safe(__block, __type, __inst, __cfg) \ argument 317 foreach_inst_in_block_safe (__type, __inst, __block) 331 #define foreach_inst_in_block(__type, __inst, __block) \ argument 332 foreach_in_list(__type, __inst, &(__block)->instructions) 334 #define foreach_inst_in_block_safe(__type, __inst, __block) \ argument 335 for (__type *__inst = (__type *)__block->instructions.head_sentinel.next, \ 336 *__next = (__type *)__inst->next; \ 339 __next = (__type *)__next->next) [all …]
|
/external/libdrm/ |
D | util_double_list.h | 98 #define LIST_ENTRY(__type, __item, __field) \ argument 99 ((__type *)(((char *)(__item)) - offsetof(__type, __field))) 101 #define LIST_FIRST_ENTRY(__ptr, __type, __field) \ argument 102 LIST_ENTRY(__type, (__ptr)->next, __field) 104 #define LIST_LAST_ENTRY(__ptr, __type, __field) \ argument 105 LIST_ENTRY(__type, (__ptr)->prev, __field)
|
D | libdrm_lists.h | 76 #define DRMLISTENTRY(__type, __item, __field) \ argument 77 ((__type *)(((char *) (__item)) - offsetof(__type, __field)))
|
/external/u-boot/drivers/spi/ |
D | pic32_spi.c | 127 #define BUILD_SPI_FIFO_RW(__name, __type, __bwl) \ argument 130 __type val; \ 131 u32 mx = pic32_rx_max(priv, sizeof(__type)); \ 136 *(__type *)(priv->rx) = val; \ 137 priv->rx += sizeof(__type); \ 143 __type val; \ 144 u32 mx = pic32_tx_max(priv, sizeof(__type)); \ 147 val = (__type) ~0U; \ 149 val = *(__type *)(priv->tx); \ 151 priv->tx += sizeof(__type); \
|
/external/python/apitools/apitools/base/protorpclite/ |
D | messages.py | 1634 self.__type = None 1636 self.__type = message_type 1663 if self.__type is None: 1671 self.__type = message_type 1672 return self.__type 1786 self.__type = None 1788 self.__type = enum_type 1811 if self.__type: 1812 self.__type(value) 1820 if self.__type is None: [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTLS.h | 77 using FieldName##__type = Type; \ 91 static_cast<FieldName##__type>(pthread_getspecific(FieldName##__key)))
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_double_list.h | 103 #define LIST_ENTRY(__type, __item, __field) \ argument 104 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
|
/external/libchrome/base/third_party/nspr/ |
D | prtime.h | 74 #define NSPR_API(__type) extern __type argument
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_fft.cc | 510 #define STREAM_EXECUTOR_CUDA_DEFINE_FFT(__type, __fft_type1, __fft_type2, \ argument 513 const DeviceMemory<std::complex<__type>> &input, \ 514 DeviceMemory<std::complex<__type>> *output) { \ 519 const DeviceMemory<__type> &input, \ 520 DeviceMemory<std::complex<__type>> *output) { \ 524 const DeviceMemory<std::complex<__type>> &input, \ 525 DeviceMemory<__type> *output) { \
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
D | rocm_fft.cc | 557 #define STREAM_EXECUTOR_ROCM_DEFINE_FFT(__type, __fft_type1, __fft_type2, \ argument 560 const DeviceMemory<std::complex<__type>> &input, \ 561 DeviceMemory<std::complex<__type>> *output) { \ 566 const DeviceMemory<__type> &input, \ 567 DeviceMemory<std::complex<__type>> *output) { \ 572 const DeviceMemory<std::complex<__type>> &input, \ 573 DeviceMemory<__type> *output) { \
|
/external/elfutils/libelf/ |
D | libelf.h | 431 Elf_Type __type); 461 extern size_t elf32_fsize (Elf_Type __type, size_t __count, 465 extern size_t elf64_fsize (Elf_Type __type, size_t __count,
|
D | gelf.h | 159 extern size_t gelf_fsize (Elf *__elf, Elf_Type __type, size_t __count,
|
D | libelfP.h | 563 extern size_t __gelf_fsize_internal (Elf *__elf, Elf_Type __type,
|
/external/mesa3d/src/util/ |
D | list.h | 163 #define LIST_ENTRY(__type, __item, __field) \ argument 164 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
|
/external/clang/test/CodeGenCXX/ |
D | mangle.cpp | 190 typedef T __type; typedef 194 template<typename T> typename __enable_if<__is_scalar_type<T>::__value, void>::__type ft7() { } in ft7() 225 template<typename T> typename __enable_if<(__is_scalar_type<T>::__value), void>::__type ft8() { } in ft8() 238 template<typename T> struct __enable_if<true, T> { typedef T __type; }; typedef 242 typename __enable_if<!__is_scalar_type<T>::__value, void>::__type __fill_a() { }; in __fill_a()
|
/external/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_query.c | 31 #define LIST_FIRST_ENTRY(__type, __item, __field) \ argument 32 LIST_ENTRY(__type, (__item)->next, __field)
|
/external/python/pyasn1/pyasn1/type/ |
D | namedtype.py | 44 self.__type = asn1Object 89 return self.__type
|
/external/curl/tests/python_dependencies/impacket/ |
D | smb.py | 535 self.__type = share_type 542 return self.__type 548 …return '<SharedDevice instance: name=' + self.__name + ', type=' + str(self.__type) + ', comment="… 641 self.__type = nbt_type 645 …return '<SMBMachine instance: nbname="' + self.__nbname + '", type=' + hex(self.__type) + ', comme… 650 self.__type = domain_type 654 …return '<SMBDomain instance: nbgroup="' + self.__nbgroup + '", type=' + hex(self.__type) + ', mast…
|
/external/clang/lib/Headers/ |
D | intrin.h | 800 #define __ptr_to_addr_space(__addr_space_nbr, __type, __offset) \ argument 801 ((volatile __type __attribute__((__address_space__(__addr_space_nbr)))*) \
|
/external/libcxx/include/ |
D | compare | 618 for (auto __type : __types) 619 ++__seen[__type];
|