Home
last modified time | relevance | path

Searched refs:__type (Results 1 – 21 of 21) sorted by relevance

/external/mesa3d/src/compiler/glsl/
Dlist.h649 #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/
Dbrw_cfg.h308 #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/
Dutil_double_list.h98 #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)
Dlibdrm_lists.h76 #define DRMLISTENTRY(__type, __item, __field) \ argument
77 ((__type *)(((char *) (__item)) - offsetof(__type, __field)))
/external/u-boot/drivers/spi/
Dpic32_spi.c127 #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/
Dmessages.py1634 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/
DIceTLS.h77 using FieldName##__type = Type; \
91 static_cast<FieldName##__type>(pthread_getspecific(FieldName##__key)))
/external/virglrenderer/src/gallium/auxiliary/util/
Du_double_list.h103 #define LIST_ENTRY(__type, __item, __field) \ argument
104 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
/external/libchrome/base/third_party/nspr/
Dprtime.h74 #define NSPR_API(__type) extern __type argument
/external/tensorflow/tensorflow/stream_executor/cuda/
Dcuda_fft.cc510 #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/
Drocm_fft.cc557 #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/
Dlibelf.h431 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,
Dgelf.h159 extern size_t gelf_fsize (Elf *__elf, Elf_Type __type, size_t __count,
DlibelfP.h563 extern size_t __gelf_fsize_internal (Elf *__elf, Elf_Type __type,
/external/mesa3d/src/util/
Dlist.h163 #define LIST_ENTRY(__type, __item, __field) \ argument
164 ((__type *)(((char *)(__item)) - offsetof(__type, __field)))
/external/clang/test/CodeGenCXX/
Dmangle.cpp190 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/
Dnv30_query.c31 #define LIST_FIRST_ENTRY(__type, __item, __field) \ argument
32 LIST_ENTRY(__type, (__item)->next, __field)
/external/python/pyasn1/pyasn1/type/
Dnamedtype.py44 self.__type = asn1Object
89 return self.__type
/external/curl/tests/python_dependencies/impacket/
Dsmb.py535 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/
Dintrin.h800 #define __ptr_to_addr_space(__addr_space_nbr, __type, __offset) \ argument
801 ((volatile __type __attribute__((__address_space__(__addr_space_nbr)))*) \
/external/libcxx/include/
Dcompare618 for (auto __type : __types)
619 ++__seen[__type];