/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_scalbln.c | 36 int in; in scalbln() local 38 in = (int)n; in scalbln() 39 if (in != n) { in scalbln() 41 in = INT_MAX; in scalbln() 43 in = INT_MIN; in scalbln() 45 return (scalbn(x, in)); in scalbln() 51 int in; in scalblnf() local 53 in = (int)n; in scalblnf() 54 if (in != n) { in scalblnf() 56 in = INT_MAX; in scalblnf() [all …]
|
/bionic/libc/bionic/ |
D | statvfs.cpp | 33 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) { in __statfs_to_statvfs() argument 34 out->f_bsize = in.f_bsize; in __statfs_to_statvfs() 35 out->f_frsize = in.f_frsize; in __statfs_to_statvfs() 36 out->f_blocks = in.f_blocks; in __statfs_to_statvfs() 37 out->f_bfree = in.f_bfree; in __statfs_to_statvfs() 38 out->f_bavail = in.f_bavail; in __statfs_to_statvfs() 39 out->f_files = in.f_files; in __statfs_to_statvfs() 40 out->f_ffree = in.f_ffree; in __statfs_to_statvfs() 41 out->f_favail = in.f_ffree; in __statfs_to_statvfs() 42 out->f_fsid = in.f_fsid.__val[0] | (static_cast<uint64_t>(in.f_fsid.__val[1]) << 32); in __statfs_to_statvfs() [all …]
|
D | sigsetmask.c | 39 } in, out; in sigsetmask() local 41 sigemptyset(&in.the_sigset); in sigsetmask() 42 in.the_mask = mask; in sigsetmask() 44 n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset); in sigsetmask()
|
D | sigblock.c | 38 } in, out; in sigblock() local 40 sigemptyset(&in.the_sigset); in sigblock() 41 in.the_mask = mask; in sigblock() 43 n = sigprocmask(SIG_BLOCK, &in.the_sigset, &out.the_sigset); in sigblock()
|
/bionic/tests/ |
D | libgen_test.cpp | 23 static void TestBasename(const char* in, const char* expected_out) { in TestBasename() argument 24 char* writable_in = (in != NULL) ? strdup(in) : NULL; in TestBasename() 27 ASSERT_STREQ(expected_out, out) << in; in TestBasename() 28 ASSERT_EQ(0, errno) << in; in TestBasename() 32 static void TestDirname(const char* in, const char* expected_out) { in TestDirname() argument 33 char* writable_in = (in != NULL) ? strdup(in) : NULL; in TestDirname() 36 ASSERT_STREQ(expected_out, out) << in; in TestDirname() 37 ASSERT_EQ(0, errno) << in; in TestDirname() 68 static void TestBasename(const char* in, const char* expected_out, int expected_rc, in TestBasename() argument 71 int rc = basename_r(in, buf, buf_size); in TestBasename() [all …]
|
D | fcntl_test.cpp | 161 int in = open("/proc/cpuinfo", O_RDONLY); in TEST() local 162 ASSERT_NE(in, -1); in TEST() 166 ssize_t bytes_read = splice(in, 0, pipe_fds[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE); in TEST() 174 close(in); in TEST() 211 int in = open("/proc/version", O_RDONLY); in TEST() local 212 ASSERT_NE(in, -1); in TEST() 215 ssize_t bytes_read = splice(in, 0, pipe1[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE); in TEST()
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
D | inet_lnaof.c | 41 inet_lnaof(struct in_addr in) in inet_lnaof() argument 43 in_addr_t i = ntohl(in.s_addr); in inet_lnaof()
|
D | inet_ntoa.c | 41 inet_ntoa(struct in_addr in) in inet_ntoa() argument 46 p = (char *)∈ in inet_ntoa()
|
D | inet_netof.c | 40 inet_netof(struct in_addr in) in inet_netof() argument 42 in_addr_t i = ntohl(in.s_addr); in inet_netof()
|
/bionic/linker/ |
D | NOTICE | 4 you may not use this file except in compliance with the License. 9 Unless required by applicable law or agreed to in writing, software 20 Redistribution and use in source and binary forms, with or without 25 * Redistributions in binary form must reproduce the above copyright 26 notice, this list of conditions and the following disclaimer in 48 Redistribution and use in source and binary forms, with or without 53 * Redistributions in binary form must reproduce the above copyright 54 notice, this list of conditions and the following disclaimer in 76 Redistribution and use in source and binary forms, with or without 81 * Redistributions in binary form must reproduce the above copyright [all …]
|
/bionic/libstdc++/ |
D | NOTICE | 4 Redistribution and use in source and binary forms, with or without 9 * Redistributions in binary form must reproduce the above copyright 10 notice, this list of conditions and the following disclaimer in 32 Redistribution and use in source and binary forms, with or without 37 * Redistributions in binary form must reproduce the above copyright 38 notice, this list of conditions and the following disclaimer in 62 provided that the above copyright notice appear in all copies and 64 in supporting documentation. Hewlett-Packard Company makes no 74 provided that the above copyright notice appear in all copies and 76 in supporting documentation. Silicon Graphics makes no
|
/bionic/ |
D | HACKING.txt | 11 cos(3) in a separate library to save space in the days before shared 29 to jump to fopen(3), say, it lands in the right place). 38 What's in libc/? 50 # because it's architecture-specific. There will be a .mk file in here that 51 # drags in all the architecture-specific files. 57 # The majority of header files are actually in libc/include/, but many 58 # of them pull in a <machine/something.h> for things like limits, 75 # in external/kernel-headers/. These files must not be edited directly. The 98 # in our world. The *-compat.h files are automatically included 107 # current upstream source in one of the upstream directories or by [all …]
|
/bionic/libc/kernel/ |
D | README.TXT | 5 in the 'bionic/kernel/tools' directory. The tools process the original 6 unmodified kernel headers in order to get rid of many annoying 7 declarations and constructs that usually result in compilation failure. 13 They can be included from C++, or when compiling code in strict ANSI mode. 16 Description of the directories involved in generating the parsed kernel headers: 19 Contains the uapi kernel headers found in the android kernel. Note this 25 in 'external/kernel-headers/original/uapi/'.
|
/bionic/libstdc++/include/ |
D | cwctype_is_not_supported | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in 30 /* IMPORTANT: cwchar and cwctype are not supported. See comment in
|
D | cwchar | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in 30 /* IMPORTANT: cwchar and cwctype are not supported. See comment in
|
D | cstddef | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in 35 * The following 2 types are also declared in the 'std' namespace:
|
D | climits | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in
|
D | cstdint | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in
|
D | utility | 5 * Redistribution and use in source and binary forms, with or without 10 * * Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in
|
D | cfloat | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in
|
D | csignal | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in
|
D | cerrno | 6 * Redistribution and use in source and binary forms, with or without 11 * * Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in
|
/bionic/libdl/ |
D | NOTICE | 4 you may not use this file except in compliance with the License. 9 Unless required by applicable law or agreed to in writing, software
|
/bionic/libm/ |
D | NOTICE | 119 Redistribution and use in source and binary forms, with or without 124 2. Redistributions in binary form must reproduce the above copyright 125 notice, this list of conditions and the following disclaimer in the 145 you may not use this file except in compliance with the License. 150 Unless required by applicable law or agreed to in writing, software 161 Redistribution and use in source and binary forms, with or without 166 2. Redistributions in binary form must reproduce the above copyright 167 notice, this list of conditions and the following disclaimer in the 187 Redistribution and use in source and binary forms, with or without 192 2. Redistributions in binary form must reproduce the above copyright [all …]
|
/bionic/libc/ |
D | NOTICE | 4 Redistribution and use in source and binary forms, with or without 8 * Redistributions in binary form must reproduce the above copyright 9 notice, this list of conditions and the following disclaimer in the 29 strchr - find a character in a string 35 Redistribution and use in source and binary forms, with or without 39 * Redistributions in binary form must reproduce the above copyright 40 notice, this list of conditions and the following disclaimer in the 63 Redistribution and use in source and binary forms, with or without 68 2. Redistributions in binary form must reproduce the above copyright 69 notice, this list of conditions and the following disclaimer in the [all …]
|