Home
last modified time | relevance | path

Searched defs:s (Results 1 – 25 of 128) sorted by relevance

123456

/bionic/libc/include/sys/
Dwait.h39 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8) argument
40 #define WCOREDUMP(s) ((s) & 0x80) argument
41 #define WTERMSIG(s) ((s) & 0x7f) argument
42 #define WSTOPSIG(s) WEXITSTATUS(s) argument
44 #define WIFEXITED(s) (WTERMSIG(s) == 0) argument
45 #define WIFSTOPPED(s) (WTERMSIG(s) == 0x7f) argument
46 #define WIFSIGNALED(s) (WTERMSIG((s)+1) >= 2) argument
/bionic/libc/include/
Dtermios.h49 static __inline__ int tcgetattr(int fd, struct termios *s) in tcgetattr()
54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) in tcsetattr()
80 static __inline__ speed_t cfgetospeed(const struct termios *s) in cfgetospeed()
85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) in cfsetospeed()
91 static __inline__ speed_t cfgetispeed(const struct termios *s) in cfgetispeed()
96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed) in cfsetispeed()
102 static __inline__ void cfmakeraw(struct termios *s) in cfmakeraw()
/bionic/libc/private/isc/
Dmemcluster.h27 #define memget(s) __memget_debug(s, __FILE__, __LINE__) argument
28 #define memput(p, s) __memput_debug(p, s, __FILE__, __LINE__) argument
31 #define memget(s) __memget_record(s, __FILE__, __LINE__) argument
32 #define memput(p, s) __memput_record(p, s, __FILE__, __LINE__) argument
/bionic/libc/netbsd/net/
Dgetservbyport.c36 struct servent* s; in getservbyport() local
45 struct servent* s = getservent_r(rs); in getservbyport() local
Dgetservbyname.c37 struct servent* s; in getservbyname() local
46 struct servent* s = getservent_r(rs); in getservbyname() local
/bionic/libc/kernel/arch-mips/asm/
Dvga.h22 #define VGA_MAP_MEM(x, s) (0xb0000000L + (unsigned long)(x)) argument
30 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument
31 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
/bionic/libm/src/
Ds_nan.c72 _scan_nan(uint32_t *words, int num_words, const char *s)
100 nan(const char *s)
117 nanf(const char *s)
/bionic/libc/unistd/
Dpathconf.c54 __filesizebits( struct statfs* s ) in __filesizebits()
83 __link_max( struct statfs* s ) in __link_max()
110 __2_symlinks( struct statfs* s ) in __2_symlinks()
130 __name_max( struct statfs* s ) in __name_max()
/bionic/libc/kernel/common/linux/
Dlockdep.h26 #define lock_acquire(l, s, t, r, c, i) do { } while (0) argument
45 #define spin_acquire(l, s, t, i) do { } while (0) argument
47 #define rwlock_acquire(l, s, t, i) do { } while (0) argument
49 #define rwlock_acquire_read(l, s, t, i) do { } while (0) argument
51 #define mutex_acquire(l, s, t, i) do { } while (0) argument
54 #define rwsem_acquire(l, s, t, i) do { } while (0) argument
55 #define rwsem_acquire_read(l, s, t, i) do { } while (0) argument
Dvt_buffer.h25 #define scr_memcpyw(d, s, c) memcpy(d, s, c) argument
26 #define scr_memmovew(d, s, c) memmove(d, s, c) argument
/bionic/libc/string/
Dstrtok.c33 strtok(char *s, const char *delim) in strtok()
41 strtok_r(char *s, const char *delim, char **last) in strtok_r()
Dbcopy.c73 #define TLOOP(s) if (t) TLOOP1(s) in memcpy() argument
74 #define TLOOP1(s) do { s; } while (--t) in memcpy() argument
Dstrlen.c41 const char *s; in strlen() local
Dstrcat.c44 strcat(char *s, const char *append) in strcat()
/bionic/libc/kernel/arch-x86/asm/
Ddma-mapping_32.h27 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f) argument
29 #define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h) argument
/bionic/libc/stdlib/
Datol.c30 long atol(const char* s) in atol()
Datoll.c30 long long atoll(const char* s) in atoll()
Datoi.c30 int atoi(const char* s) in atoi()
/bionic/libc/wchar/
Dwcslen.c40 wcslen(const wchar_t *s) in wcslen()
Dwcschr.c33 wcschr(const wchar_t *s, wchar_t c) in wcschr()
Dwcsrchr.c33 wcsrchr(const wchar_t *s, wchar_t c) in wcsrchr()
Dwcsdup.c34 wcsdup(const wchar_t *s) in wcsdup()
/bionic/libc/include/net/
Dif_dl.h73 #define LLADDR(s) ((char *)((s)->sdl_data + (s)->sdl_nlen)) argument
74 #define CLLADDR(s) ((const char *)((s)->sdl_data + (s)->sdl_nlen)) argument
/bionic/libc/stdio/
Dgets.c44 char *s; in gets() local
Dtmpnam.c45 tmpnam(char *s) in tmpnam()

123456