Searched refs:ldiv_t (Results 1 - 12 of 12) sorted by relevance
/third_party/musl/src/stdlib/ |
H A D | ldiv.c | 3 ldiv_t ldiv(long num, long den) in ldiv() 5 return (ldiv_t){ num/den, num%den }; in ldiv()
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | stdlib.h | 64 typedef struct { long quot, rem; } ldiv_t; typedef 68 ldiv_t ldiv (long, long);
|
/third_party/musl/porting/liteos_m/user/include/ |
H A D | stdlib.h | 63 typedef struct { long quot, rem; } ldiv_t; typedef 67 ldiv_t ldiv (long, long);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | stdlib.h | 66 typedef struct { long quot, rem; } ldiv_t; typedef 70 ldiv_t ldiv (long, long);
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | stdlib.h | 64 typedef struct { long quot, rem; } ldiv_t; typedef 68 ldiv_t ldiv (long, long);
|
/third_party/musl/libc-test/src/api/ |
H A D | stdlib.c | 14 T(ldiv_t) in f() 44 {ldiv_t(*p)(long,long) = ldiv;} in f()
|
/third_party/musl/porting/linux/user/include/ |
H A D | stdlib.h | 65 typedef struct { long quot, rem; } ldiv_t; typedef 69 ldiv_t ldiv (long, long);
|
/third_party/musl/include/ |
H A D | stdlib.h | 66 typedef struct { long quot, rem; } ldiv_t; typedef 70 ldiv_t ldiv (long, long);
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/ |
H A D | ldiv.c | 33 ldiv_t ret; in ldiv_0100()
|
/third_party/python/Lib/lib2to3/tests/data/ |
H A D | infinite_recursion.py | 2070 class ldiv_t(Structure): class 2072 ldiv_t._fields_ = [ 2076 assert sizeof(ldiv_t) == 8, sizeof(ldiv_t) 2077 assert alignment(ldiv_t) == 4, alignment(ldiv_t) 2601 '__sbuf', 'X509_STORE_CTX', '__darwin_blksize_t', 'ldiv_t',
|
/third_party/rust/crates/libc/src/solid/ |
H A D | mod.rs | 142 pub struct ldiv_t { structure names 560 pub fn ldiv(arg1: c_long, arg2: c_long) -> ldiv_t; in ldiv()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | 5724 } ldiv_t; 6663 extern ldiv_t ldiv (long int __numer, long int __denom) 6812 using ::ldiv_t; 6861 inline ldiv_t 9641 using std::ldiv_t; [all...] |
Completed in 33 milliseconds