/third_party/musl/arch/x86_64/bits/ |
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() [all …]
|
/third_party/musl/arch/i386/bits/ |
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() [all …]
|
/third_party/musl/arch/x32/bits/ |
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() [all …]
|
/third_party/python/Lib/ |
D | xdrlib.py | 54 self.__buf = BytesIO() 57 return self.__buf.getvalue() 63 self.__buf.write(struct.pack('>L', x)) 67 self.__buf.write(struct.pack('>l', x)) 72 if x: self.__buf.write(b'\0\0\0\1') 73 else: self.__buf.write(b'\0\0\0\0') 89 self.__buf.write(struct.pack('>f', x)) 93 self.__buf.write(struct.pack('>d', x)) 101 self.__buf.write(data) 139 self.__buf = data [all …]
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | crypt.h | 10 char __buf[256]; member
|
/third_party/musl/include/ |
D | crypt.h | 10 char __buf[256]; member
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | crypt.h | 10 char __buf[256]; member
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | crypt.h | 10 char __buf[256]; member
|
/third_party/ltp/include/lapi/ |
D | sem.h | 19 struct seminfo *__buf; /* buffer for IPC_INFO */ member
|
/third_party/ltp/testcases/kernel/syscalls/ipc/semctl/ |
D | semctl09.c | 145 arg.__buf = &info; in verify_semctl()
|
/third_party/ltp/testcases/kernel/syscalls/ipc/semop/ |
D | semop02.c | 100 arr.__buf = &ipc_buf; in setup()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | mkntfs.c | 3046 char *__buf = NULL; in insert_file_link_in_dir_index() 3048 file_name->file_name_length, &__buf, 0); in insert_file_link_in_dir_index() 3053 __buf); in insert_file_link_in_dir_index() 3054 free(__buf); in insert_file_link_in_dir_index() 3059 char *__buf = NULL; in insert_file_link_in_dir_index() 3061 ie->key.file_name.file_name_length + 1, &__buf, in insert_file_link_in_dir_index() 3067 __buf); in insert_file_link_in_dir_index() 3068 free(__buf); in insert_file_link_in_dir_index()
|
/third_party/musl/porting/liteos_m/user/src/internal/ |
D | syscall.h | 380 hidden void __procfdname(char __buf[static 15+3*sizeof(int)], unsigned);
|
/third_party/musl/src/internal/ |
D | syscall.h | 401 hidden void __procfdname(char __buf[static 15+3*sizeof(int)], unsigned);
|
/third_party/musl/porting/linux/user/src/internal/ |
D | syscall.h | 395 hidden void __procfdname(char __buf[static 15+3*sizeof(int)], unsigned);
|
/third_party/toybox/toys/pending/ |
D | ipcs.c | 47 struct seminfo *__buf; member
|
/third_party/ltp/testcases/kernel/mce-test/stress/tools/page-poisoning/ |
D | page-poisoning.c | 101 struct semid_info *__buf; member
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_direct.c | 51 struct seminfo *__buf; /* Buffer for IPC_INFO (Linux specific) */ member
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 2059 typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes); 2067 typedef __ssize_t __io_write_fn (void *__cookie, const char *__buf, 2278 extern void setbuf (FILE *__restrict __stream, char *__restrict __buf) throw (); 2282 extern int setvbuf (FILE *__restrict __stream, char *__restrict __buf, 2289 extern void setbuffer (FILE *__restrict __stream, char *__restrict __buf, 6336 extern int random_r (struct random_data *__restrict __buf, 6339 extern int srandom_r (unsigned int __seed, struct random_data *__buf) 6344 struct random_data *__restrict __buf) 6348 struct random_data *__restrict __buf) 6685 extern char *gcvt (double __value, int __ndigit, char *__buf) [all …]
|
/third_party/rust/crates/libc/src/unix/linux_like/android/ |
D | mod.rs | 3494 pub fn arc4random_buf(__buf: *mut ::c_void, __n: ::size_t); in arc4random_buf()
|