/third_party/musl/arch/i386/bits/ |
H A D | io.h | 37 static __inline void outsb(unsigned short __port, const void *__buf, unsigned long __n) in outsb() argument 40 : "+S" (__buf), "+c" (__n) in outsb() 44 static __inline void outsw(unsigned short __port, const void *__buf, unsigned long __n) in outsw() argument 47 : "+S" (__buf), "+c" (__n) in outsw() 51 static __inline void outsl(unsigned short __port, const void *__buf, unsigned long __n) in outsl() argument 54 : "+S" (__buf), "+c"(__n) in outsl() 58 static __inline void insb(unsigned short __port, void *__buf, unsigned long __n) in insb() argument 61 : "+D" (__buf), "+c" (__n) in insb() 65 static __inline void insw(unsigned short __port, void *__buf, unsigned long __n) in insw() argument 68 : "+D" (__buf), "+c" (__n) in insw() 72 insl(unsigned short __port, void *__buf, unsigned long __n) insl() argument [all...] |
/third_party/musl/arch/x86_64/bits/ |
H A D | io.h | 37 static __inline void outsb(unsigned short __port, const void *__buf, unsigned long __n) in outsb() argument 40 : "+S" (__buf), "+c" (__n) in outsb() 44 static __inline void outsw(unsigned short __port, const void *__buf, unsigned long __n) in outsw() argument 47 : "+S" (__buf), "+c" (__n) in outsw() 51 static __inline void outsl(unsigned short __port, const void *__buf, unsigned long __n) in outsl() argument 54 : "+S" (__buf), "+c"(__n) in outsl() 58 static __inline void insb(unsigned short __port, void *__buf, unsigned long __n) in insb() argument 61 : "+D" (__buf), "+c" (__n) in insb() 65 static __inline void insw(unsigned short __port, void *__buf, unsigned long __n) in insw() argument 68 : "+D" (__buf), "+c" (__n) in insw() 72 insl(unsigned short __port, void *__buf, unsigned long __n) insl() argument [all...] |
/third_party/musl/arch/x32/bits/ |
H A D | io.h | 37 static __inline void outsb(unsigned short __port, const void *__buf, unsigned long __n) in outsb() argument 40 : "+S" (__buf), "+c" (__n) in outsb() 44 static __inline void outsw(unsigned short __port, const void *__buf, unsigned long __n) in outsw() argument 47 : "+S" (__buf), "+c" (__n) in outsw() 51 static __inline void outsl(unsigned short __port, const void *__buf, unsigned long __n) in outsl() argument 54 : "+S" (__buf), "+c"(__n) in outsl() 58 static __inline void insb(unsigned short __port, void *__buf, unsigned long __n) in insb() argument 61 : "+D" (__buf), "+c" (__n) in insb() 65 static __inline void insw(unsigned short __port, void *__buf, unsigned long __n) in insw() argument 68 : "+D" (__buf), "+c" (__n) in insw() 72 insl(unsigned short __port, void *__buf, unsigned long __n) insl() argument [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_ra.h | 113 #define ra_foreach_src_n(__srcreg, __n, __instr) \ 114 foreach_src_n(__srcreg, __n, __instr) \ 126 #define ra_foreach_dst_n(__dstreg, __n, __instr) \ 127 foreach_dst_n(__dstreg, __n, __instr) \
|
H A D | ir3.h | 1601 #define foreach_src_n(__srcreg, __n, __instr) \ 1605 for (unsigned __cnt = (__instr)->srcs_count, __n = 0; __n < __cnt; \ 1606 __n++) \ 1607 if ((__srcreg = (__instr)->srcs[__n])) 1613 #define foreach_dst_n(__dstreg, __n, __instr) \ 1617 for (unsigned __cnt = (__instr)->dsts_count, __n = 0; __n < __cnt; \ 1618 __n++) \ 1619 if ((__dstreg = (__instr)->dsts[__n])) [all...] |
H A D | ir3_postsched.c | 90 #define foreach_sched_node(__n, __list) \ 91 list_for_each_entry (struct ir3_postsched_node, __n, __list, dag.link)
|
H A D | ir3_sched.c | 172 #define foreach_sched_node(__n, __list) \ 173 list_for_each_entry (struct ir3_sched_node, __n, __list, dag.link)
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 268 const wchar_t *__restrict __src, size_t __n) 277 const wchar_t *__restrict __src, size_t __n) 284 extern int wcsncmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n) 294 size_t __n) throw (); 323 size_t __n, __locale_t __loc) throw (); 334 const wchar_t *__restrict __s2, size_t __n) throw (); 343 size_t __n, __locale_t __loc) throw (); 398 extern wchar_t *wmemchr (const wchar_t *__s, wchar_t __c, size_t __n) 403 extern int wmemcmp (const wchar_t *__s1, const wchar_t *__s2, size_t __n) 408 const wchar_t *__restrict __s2, size_t __n) thro [all...] |
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_build_pm4.h | 71 unsigned __n = (num); \ 72 memcpy(__cs_buf + __cs_num, (values), __n * 4); \ 73 __cs_num += __n; \
|
/third_party/mesa3d/src/gallium/tests/trivial/ |
H A D | compute.c | 59 int __i, __n; \ 61 __n = ctx->screen->get_compute_param(ctx->screen, \ 66 for (__i = 0; __i < __n / sizeof(*__v); ++__i) \
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
H A D | mod.rs | 3473 pub fn __system_property_find_nth(__n: ::c_uint) -> *const prop_info; in __system_property_find_nth() 3494 pub fn arc4random_buf(__buf: *mut ::c_void, __n: ::size_t); in arc4random_buf()
|