/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
D | fsetpos.c | 35 fpos_t pos; in fsetpos_0100() 36 pos = (fpos_t)a; in fsetpos_0100() 60 fpos_t pos; in fsetpos_0200() 62 pos = (fpos_t)a; in fsetpos_0200() 86 fpos_t pos; in fsetpos_0300() 88 pos = (fpos_t)a; in fsetpos_0300() 112 fpos_t pos; in fsetpos_0400() 114 pos = (fpos_t)a; in fsetpos_0400()
|
D | fgetpos.c | 31 fpos_t pos; in fgetpos_0100() 55 fpos_t pos; in fgetpos_0200()
|
/third_party/musl/ndk_musl_include/ |
D | stdio.h | 58 } fpos_t; typedef 84 int fgetpos(FILE *__restrict, fpos_t *__restrict); 85 int fsetpos(FILE *, const fpos_t *); 211 #define fpos64_t fpos_t
|
/third_party/musl/include/ |
D | stdio.h | 60 } fpos_t; typedef 86 int fgetpos(FILE *__restrict, fpos_t *__restrict); 87 int fsetpos(FILE *, const fpos_t *); 216 #define fpos64_t fpos_t
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | stdio.h | 58 } fpos_t; typedef 84 int fgetpos(FILE *__restrict, fpos_t *__restrict); 85 int fsetpos(FILE *, const fpos_t *); 214 #define fpos64_t fpos_t
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | stdio.h | 58 } fpos_t; typedef 84 int fgetpos(FILE *__restrict, fpos_t *__restrict); 85 int fsetpos(FILE *, const fpos_t *); 214 #define fpos64_t fpos_t
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | stdio.h | 60 } fpos_t; typedef 86 int fgetpos(FILE *__restrict, fpos_t *__restrict); 87 int fsetpos(FILE *, const fpos_t *); 215 #define fpos64_t fpos_t
|
/third_party/musl/porting/linux/user/include/ |
D | stdio.h | 60 } fpos_t; typedef 86 int fgetpos(FILE *__restrict, fpos_t *__restrict); 87 int fsetpos(FILE *, const fpos_t *); 216 #define fpos64_t fpos_t
|
/third_party/musl/libc-test/src/api/ |
D | stdio.c | 8 T(fpos_t) in f() 42 {int(*p)(FILE*restrict,fpos_t*restrict) = fgetpos;} in f() 56 {int(*p)(FILE*,const fpos_t*) = fsetpos;} in f()
|
/third_party/rust/crates/libc/src/windows/ |
D | mod.rs | 272 pub enum fpos_t {} // FIXME: fill this out with a struct enum 273 impl ::Copy for fpos_t {} implementation 274 impl ::Clone for fpos_t { implementation 275 fn clone(&self) -> fpos_t { in clone() argument 327 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; in fgetpos() 328 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/musl/src/stdio/ |
D | fsetpos.c | 3 int fsetpos(FILE *f, const fpos_t *pos) in fsetpos()
|
D | fgetpos.c | 3 int fgetpos(FILE *restrict f, fpos_t *restrict pos) in fgetpos()
|
/third_party/rust/crates/libc/src/solid/ |
D | mod.rs | 415 pub enum fpos_t {} enum 416 impl ::Copy for fpos_t {} implementation 417 impl ::Clone for fpos_t { implementation 418 fn clone(&self) -> fpos_t { in clone() argument 504 pub fn fgetpos(arg1: *mut FILE, arg2: *mut fpos_t) -> c_int; in fgetpos() 505 pub fn fsetpos(arg1: *mut FILE, arg2: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/rust/crates/libc/src/vxworks/ |
D | mod.rs | 1030 pub enum fpos_t {} // FIXME: fill this out with a struct enum 1031 impl ::Copy for fpos_t {} implementation 1032 impl ::Clone for fpos_t { implementation 1033 fn clone(&self) -> fpos_t { in clone() argument 1117 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; in fgetpos() 1118 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | windows.txt | 203 fpos_t
|
D | unix.txt | 529 fpos_t
|
/third_party/rust/crates/libc/src/unix/ |
D | mod.rs | 425 pub enum fpos_t {} // FIXME: fill this out with a struct enum 426 impl ::Copy for fpos_t {} implementation 427 impl ::Clone for fpos_t { implementation 428 fn clone(&self) -> fpos_t { in clone() argument 501 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; in fgetpos() 503 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/rust/crates/libc/src/ |
D | wasi.rs | 76 pub struct fpos_t { 482 pub fn fgetpos(f: *mut FILE, pos: *mut fpos_t) -> c_int; in fgetpos() 483 pub fn fsetpos(f: *mut FILE, pos: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/skia/third_party/externals/libpng/contrib/libtests/ |
D | timepng.c | 273 fpos_t pos; in add_one_file()
|
/third_party/skia/third_party/externals/libpng/contrib/tools/ |
D | pngfix.c | 873 fpos_t data_pos; /* Position of first byte of chunk data */ 1208 file_getpos(struct file *file, fpos_t *pos) in file_getpos() 1219 file_setpos(struct file *file, const fpos_t *pos) in file_setpos() 1555 fpos_t chunk_data_pos; /* Position of first byte of chunk data */ 2621 fpos_t start_pos; in zlib_check()
|
/third_party/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 3355 pub enum fpos_t {} // FIXME: fill this out with a struct enum 3356 impl ::Copy for fpos_t {} implementation 3357 impl ::Clone for fpos_t { implementation 3358 fn clone(&self) -> fpos_t { in clone() argument 3400 pub fn fgetpos(stream: *mut FILE, ptr: *mut fpos_t) -> c_int; in fgetpos() 3401 pub fn fsetpos(stream: *mut FILE, ptr: *const fpos_t) -> c_int; in fsetpos()
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 2019 fpos_t = __darwin_off_t variable 2046 ('_seek', CFUNCTYPE(fpos_t, c_void_p, c_longlong, c_int)), 2055 ('_offset', fpos_t),
|
/third_party/node/test/cctest/ |
D | test_environment.cc | 95 fpos_t pos_;
|
/third_party/elfutils/tests/ |
D | run-show-die-info.sh | 901 Name : fpos_t
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.def | 718 /// int fgetpos(FILE *stream, fpos_t *pos); 835 /// int fsetpos(FILE *stream, const fpos_t *pos);
|