Home
last modified time | relevance | path

Searched refs:__val (Results 1 - 25 of 49) sorted by relevance

12

/third_party/musl/arch/i386/bits/
H A Dio.h1 static __inline void outb(unsigned char __val, unsigned short __port) in outb() argument
3 __asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port)); in outb()
6 static __inline void outw(unsigned short __val, unsigned short __port) in outw() argument
8 __asm__ volatile ("outw %0,%1" : : "a" (__val), "dN" (__port)); in outw()
11 static __inline void outl(unsigned int __val, unsigned short __port) in outl() argument
13 __asm__ volatile ("outl %0,%1" : : "a" (__val), "dN" (__port)); in outl()
18 unsigned char __val; in inb() local
19 __asm__ volatile ("inb %1,%0" : "=a" (__val) : "dN" (__port)); in inb()
20 return __val; in inb()
25 unsigned short __val; in inw() local
32 unsigned int __val; inl() local
[all...]
/third_party/musl/arch/x86_64/bits/
H A Dio.h1 static __inline void outb(unsigned char __val, unsigned short __port) in outb() argument
3 __asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port)); in outb()
6 static __inline void outw(unsigned short __val, unsigned short __port) in outw() argument
8 __asm__ volatile ("outw %0,%1" : : "a" (__val), "dN" (__port)); in outw()
11 static __inline void outl(unsigned int __val, unsigned short __port) in outl() argument
13 __asm__ volatile ("outl %0,%1" : : "a" (__val), "dN" (__port)); in outl()
18 unsigned char __val; in inb() local
19 __asm__ volatile ("inb %1,%0" : "=a" (__val) : "dN" (__port)); in inb()
20 return __val; in inb()
25 unsigned short __val; in inw() local
32 unsigned int __val; inl() local
[all...]
/third_party/musl/arch/x32/bits/
H A Dio.h1 static __inline void outb(unsigned char __val, unsigned short __port) in outb() argument
3 __asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port)); in outb()
6 static __inline void outw(unsigned short __val, unsigned short __port) in outw() argument
8 __asm__ volatile ("outw %0,%1" : : "a" (__val), "dN" (__port)); in outw()
11 static __inline void outl(unsigned int __val, unsigned short __port) in outl() argument
13 __asm__ volatile ("outl %0,%1" : : "a" (__val), "dN" (__port)); in outl()
18 unsigned char __val; in inb() local
19 __asm__ volatile ("inb %1,%0" : "=a" (__val) : "dN" (__port)); in inb()
20 return __val; in inb()
25 unsigned short __val; in inw() local
32 unsigned int __val; inl() local
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dglobal_state.h45 void **__val; \
46 __asm__("mrs %0, tpidr_el0" : "=r"(__val)); \
47 __val; \
52 void **__val; \
53 __asm__("mrc p15, 0, %0, c13, c0, 3" : "=r"(__val)); \
54 __val; \
61 register void **__val asm("v1"); \
67 : "=r"(__val)); \
68 __val; \
73 void **__val; \
[all...]
/third_party/elfutils/lib/
H A Dstdatomic-fbsd.h103 #define _Atomic(T) struct { volatile __typeof__(T) __val; }
114 #define ATOMIC_VAR_INIT(value) { .__val = (value) }
115 #define atomic_init(obj, value) ((void)((obj)->__val = (value)))
206 __atomic_is_lock_free(sizeof((obj)->__val), &(obj)->__val)
209 ((void)(obj), sizeof((obj)->__val) <= sizeof(void *))
292 __atomic_compare_exchange_n(&(object)->__val, expected, \
296 __atomic_compare_exchange_n(&(object)->__val, expected, \
299 __atomic_exchange_n(&(object)->__val, desired, order)
301 __atomic_fetch_add(&(object)->__val, operan
[all...]
/third_party/musl/porting/linux/user/src/thread/
H A Dsem_timedwait.c11 while (spins-- && sem->__val[0] <= 0 && !sem->__val[1]) a_spin(); in __sem_timedwait()
15 a_inc(sem->__val+1); in __sem_timedwait()
16 a_cas(sem->__val, 0, -1); in __sem_timedwait()
17 pthread_cleanup_push(cleanup, (void *)(sem->__val+1)); in __sem_timedwait()
18 r = __timedwait_cp(sem->__val, -1, CLOCK_REALTIME, at, sem->__val[2]); in __sem_timedwait()
/third_party/musl/src/thread/
H A Dsem_timedwait.c13 while (spins-- && !(sem->__val[0] & SEM_VALUE_MAX) && !sem->__val[1]) in __sem_timedwait()
17 int r, priv = sem->__val[2]; in __sem_timedwait()
18 a_inc(sem->__val+1); in __sem_timedwait()
19 a_cas(sem->__val, 0, 0x80000000); in __sem_timedwait()
20 pthread_cleanup_push(cleanup, (void *)(sem->__val+1)); in __sem_timedwait()
21 r = __timedwait_cp(sem->__val, 0x80000000, CLOCK_REALTIME, at, priv); in __sem_timedwait()
H A Dsem_post.c7 int val, new, waiters, priv = sem->__val[2]; in sem_post()
9 val = sem->__val[0]; in sem_post()
10 waiters = sem->__val[1]; in sem_post()
18 } while (a_cas(sem->__val, val, new) != val); in sem_post()
19 if (val<0) __wake(sem->__val, waiters>1 ? 1 : -1, priv); in sem_post()
H A Dsem_init.c11 sem->__val[0] = value; in sem_init()
12 sem->__val[1] = 0; in sem_init()
13 sem->__val[2] = pshared ? 0 : 128; in sem_init()
H A Dsem_trywait.c8 while ((val=sem->__val[0]) & SEM_VALUE_MAX) { in sem_trywait()
9 if (a_cas(sem->__val, val, val-1)==val) return 0; in sem_trywait()
H A Dsem_getvalue.c6 int val = sem->__val[0]; in sem_getvalue()
/third_party/libabigail/src/
H A Dabg-viz-common.cc63 units_to_string(units __val) in units_to_string() argument
66 switch (__val) in units_to_string()
82 color_to_string(color __val) in color_to_string() argument
85 switch (__val) in color_to_string()
107 typography::anchor_to_string(anchor __val) const in anchor_to_string()
110 switch (__val) in anchor_to_string()
H A Dabg-viz-svg.cc192 const std::string val("__val");
207 std::string text_strip = R"_delimiter_(<text x="__x" y="__y" fill="__color" __style>__val</text>
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
H A Dplatform.h13 typeof(*(p)) __val; \
16 __ptr->__val; \
/third_party/musl/libc-test/src/functionalext/supplement/stat/
H A Dfstatfs.c53 if (st.f_fsid.__val[0] != 0) { in fstatfs_0100()
54 t_error("%s st.f_fsid.__val[0] invalid\n"), __func__; in fstatfs_0100()
57 if (st.f_fsid.__val[1] != 0) { in fstatfs_0100()
58 t_error("%s st.f_fsid.__val[1] invalid\n"), __func__; in fstatfs_0100()
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b32/
H A Dmod.rs15 __val: [::c_ulong; 32],
35 __val: [::c_int; 4],
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b64/
H A Dmod.rs47 __val: [::c_ulong; 16],
121 __val: [::c_int; 8],
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/
H A Dmod.rs32 __val: [u32; 32],
34 __val: [u64; 16],
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
H A Dstatfs.h13 int __val[2]; member
/third_party/musl/porting/liteos_m/kernel/include/sys/
H A Dstatfs.h13 int __val[2]; member
/third_party/musl/porting/uniproton/kernel/include/sys/
H A Dstatfs.h13 int __val[2]; member
/third_party/musl/include/sys/
H A Dstatfs.h13 int __val[2]; member
/third_party/rust/crates/libc/src/unix/newlib/
H A Dgeneric.rs5 __val: [::c_ulong; 16],
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dstatfs.h12 int __val[2]; member
/third_party/musl/porting/uniproton/kernel/include/
H A Dsemaphore.h18 volatile int __val[4*sizeof(long)/sizeof(int)]; member

Completed in 6 milliseconds

12