Home
last modified time | relevance | path

Searched refs:__n (Results 1 – 16 of 16) sorted by relevance

/third_party/musl/arch/x86_64/bits/
Dio.h37 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()
[all …]
/third_party/musl/arch/i386/bits/
Dio.h37 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()
[all …]
/third_party/musl/arch/x32/bits/
Dio.h37 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()
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgsttracerutils.h112 GList *__l, *__n; \
115 for (__n = __l; __n; __n = g_list_next (__n)) { \
116 h = (GstTracerHook *) __n->data; \
120 for (__n = __l; __n; __n = g_list_next (__n)) { \
121 h = (GstTracerHook *) __n->data; \
/third_party/mesa3d/src/freedreno/ir3/
Dir3_ra.h113 #define ra_foreach_src_n(__srcreg, __n, __instr) \ argument
114 foreach_src_n(__srcreg, __n, __instr) \
126 #define ra_foreach_dst_n(__dstreg, __n, __instr) \ argument
127 foreach_dst_n(__dstreg, __n, __instr) \
Dir3.h1601 #define foreach_src_n(__srcreg, __n, __instr) \ argument
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) \ argument
1617 for (unsigned __cnt = (__instr)->dsts_count, __n = 0; __n < __cnt; \
1618 __n++) \
1619 if ((__dstreg = (__instr)->dsts[__n]))
1648 #define foreach_ssa_srcp_n(__srcp, __n, __instr) \ argument
1650 for (unsigned __cnt = __ssa_src_cnt(__instr), __n = 0; __n < __cnt; \
[all …]
Dir3_postsched.c90 #define foreach_sched_node(__n, __list) \ argument
91 list_for_each_entry (struct ir3_postsched_node, __n, __list, dag.link)
Dir3_sched.c172 #define foreach_sched_node(__n, __list) \ argument
173 list_for_each_entry (struct ir3_sched_node, __n, __list, dag.link)
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp268 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) throw ();
[all …]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_build_pm4.h71 unsigned __n = (num); \
72 memcpy(__cs_buf + __cs_num, (values), __n * 4); \
73 __cs_num += __n; \
/third_party/python/Misc/
Dgdbinit88 set $__n = PyUnicode_AsUTF8(f->f_code->co_name)
91 printf "): %s\n", $__n
/third_party/mesa3d/src/gallium/tests/trivial/
Dcompute.c59 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/
Dmod.rs3473 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()
/third_party/libabigail/tests/data/test-diff-dwarf-abixml/
Dtest0-pr19026-libvtkIOSQL-6.1.so.1.abi12335 …<parameter type-id='type-id-4' name='__n' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../.…
12349 …<parameter type-id='type-id-4' name='__n' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../.…
12363 …<parameter type-id='type-id-4' name='__n' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../.…
12377 …<parameter type-id='type-id-4' name='__n' filepath='/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../.…
/third_party/libabigail/tests/data/test-read-dwarf/
Dtest16-pr18904.so.abi14348 …<parameter type-id='type-id-170' name='__n' filepath='/export/users/iverbin/gcc_build_host/x86_64-…
20927 …<parameter type-id='type-id-44' name='__n' filepath='/export/users/iverbin/gcc_build_host/x86_64-p…
Dtest22-pr19097-libstdc++.so.6.0.17.so.abi53780 …<parameter type-id='type-id-867' name='__n' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig…
53786 …<parameter type-id='type-id-867' name='__n' filepath='/tmp/legendre/spack-stage/spack-stage-wfh0ig…