/third_party/musl/arch/x86_64/bits/ |
D | io.h | 1 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 [all …]
|
/third_party/musl/arch/i386/bits/ |
D | io.h | 1 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 [all …]
|
/third_party/musl/arch/x32/bits/ |
D | io.h | 1 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 [all …]
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
D | global_state.h | 45 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/musl/src/thread/ |
D | sem_timedwait.c | 16 while (spins-- && sem->__val[0] <= 0 && !sem->__val[1]) a_spin(); in sem_timedwait() 20 a_inc(sem->__val+1); in sem_timedwait() 21 a_cas(sem->__val, 0, -1); in sem_timedwait() 22 pthread_cleanup_push(cleanup, (void *)(sem->__val+1)); in sem_timedwait() 23 r = __timedwait_cp(sem->__val, -1, CLOCK_REALTIME, at, sem->__val[2]); in sem_timedwait()
|
D | sem_post.c | 6 int val, waiters, priv = sem->__val[2]; in sem_post() 8 val = sem->__val[0]; in sem_post() 9 waiters = sem->__val[1]; in sem_post() 14 } while (a_cas(sem->__val, val, val+1+(val<0)) != val); in sem_post() 15 if (val<0 || waiters) __wake(sem->__val, 1, priv); in sem_post()
|
D | sem_init.c | 11 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()
|
D | sem_trywait.c | 7 while ((val=sem->__val[0]) > 0) { in sem_trywait() 8 int new = val-1-(val==1 && sem->__val[1]); in sem_trywait() 9 if (a_cas(sem->__val, val, new)==val) return 0; in sem_trywait()
|
D | sem_getvalue.c | 5 int val = sem->__val[0]; in sem_getvalue()
|
/third_party/ejdb/src/jql/ |
D | jqp.c | 160 YYSTYPE *__val; member 340 yy->__val += count; in yyPush() 341 while (yy->__valslen <= yy->__val - yy->__vals) in yyPush() 343 long offset= yy->__val - yy->__vals; in yyPush() 346 yy->__val= yy->__vals + offset; in yyPush() 349 YY_LOCAL(void) yyPop(yycontext *yy, char *text, int count) { yy->__val -= count; } in yyPop() 350 YY_LOCAL(void) yySet(yycontext *yy, char *text, int count) { yy->__val[count]= yy->__; } in yySet() 422 #define v yy->__val[-1] in yy_4_NUMPK_ARR() 423 #define fv yy->__val[-2] in yy_4_NUMPK_ARR() 424 #define s yy->__val[-3] in yy_4_NUMPK_ARR() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | platform.h | 13 typeof(*(p)) __val; \ 16 __ptr->__val; \
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | fstatfs.c | 53 if (st.f_fsid.__val[0] != 0) { in fstatfs_0100() 57 if (st.f_fsid.__val[1] != 0) { in fstatfs_0100()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/ndk_musl_include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | statfs.h | 12 int __val[2]; member
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | statfs.h | 13 int __val[2]; member
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|
/third_party/musl/include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|
/third_party/musl/ndk_musl_include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|
/third_party/musl/porting/liteos_m/user/include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | semaphore.h | 18 volatile int __val[4*sizeof(long)/sizeof(int)]; member
|