Searched refs:in (Results 1 - 25 of 103) sorted by relevance

12345

/seL4-test-master/projects/musllibc/src/network/
H A Din6addr_any.c1 #include <netinet/in.h>
H A Din6addr_loopback.c1 #include <netinet/in.h>
H A Dinet_ntoa.c4 char *inet_ntoa(struct in_addr in) argument
7 unsigned char *a = (void *)&in;
H A Dinet_legacy.c2 #include <netinet/in.h>
18 in_addr_t inet_lnaof(struct in_addr in) argument
20 uint32_t h = in.s_addr;
26 in_addr_t inet_netof(struct in_addr in) argument
28 uint32_t h = in.s_addr;
H A Dgethostbyname.c6 #include <netinet/in.h>
H A Dhtonl.c1 #include <netinet/in.h>
H A Dhtons.c1 #include <netinet/in.h>
H A Dntohl.c1 #include <netinet/in.h>
H A Dntohs.c1 #include <netinet/in.h>
H A Dinet_addr.c2 #include <netinet/in.h>
/seL4-test-master/projects/musllibc/src/linux/
H A Dadjtime.c7 int adjtime(const struct timeval *in, struct timeval *out) argument
10 if (in) {
11 if (in->tv_sec > 1000 || in->tv_usec > 1000000000) {
15 tx.offset = in->tv_sec*1000000 + in->tv_usec;
/seL4-test-master/projects/musllibc/src/stat/
H A Dstatvfs.c29 static void fixup(struct statvfs *out, const struct statfs *in) argument
32 out->f_bsize = in->f_bsize;
33 out->f_frsize = in->f_frsize ? in->f_frsize : in->f_bsize;
34 out->f_blocks = in->f_blocks;
35 out->f_bfree = in->f_bfree;
36 out->f_bavail = in->f_bavail;
37 out->f_files = in->f_files;
38 out->f_ffree = in
[all...]
/seL4-test-master/projects/musllibc/src/thread/powerpc/
H A D__set_thread_area.s5 # mov pointer in reg3 into r2
/seL4-test-master/tools/seL4/misc/
H A Dstyle-cmake.sh29 case "$CF_VERSION" in
/seL4-test-master/tools/nanopb/examples/using_double_on_avr/
H A Ddouble_conversion.c18 conversion_t in; local
19 in.f = value;
25 sign = (in.i >> 31) & 1;
26 exponent = ((in.i >> 23) & 0xFF) - 127;
27 mantissa = in.i & 0x7FFFFF;
74 /* Figure if value is in range representable by floats. */
/seL4-test-master/projects/musllibc/tools/
H A Dinstall.sh4 # file atomically in the new location, rather than overwriting
18 case "$name" in
32 case "$dst" in
33 */) printf "%s: %s ends in /\n", "$0" "$dst" 1>&2 ; exit 1 ;;
41 case "$2" in
H A Dmusl-clang.in12 case "$x" in
/seL4-test-master/tools/riscv-pk/scripts/
H A Dmk-install-dirs.sh20 case "$pathcomp" in
H A Dinstall-sh7 # later released in X11R6 (xc/config/util/install.sh) with the
14 # deal in the Software without restriction, including without limitation the
19 # The above copyright notice and this permission notice shall be included in
29 # Except as contained in this notice, the name of the X Consortium shall not
30 # be used in advertising or otherwise to promote the sale, use or other deal-
31 # ings in this Software without prior written authorization from the X Consor-
35 # FSF changes to this file are in the public domain.
58 # Put in absolute file names if you don't have them in your path;
132 case $1 in
[all...]
/seL4-test-master/projects/musllibc/include/
H A Difaddrs.h9 #include <netinet/in.h>
/seL4-test-master/tools/riscv-pk/
H A Dconfigure27 case `(set -o) 2>/dev/null` in #(
60 case $arg in #(
85 # We need space, tab and new line, in precisely that order. Quoting is
91 # Find who we are. Look in the path if we contain no directory separator.
93 case $0 in #((
96 for as_dir in $PATH
107 # in which case we are not to be found in the path.
116 # Unset variables that we do not need and which cause bugs (e.g. in
117 # pre-3.0 UWIN ksh). But do not cause bugs in bas
[all...]
/seL4-test-master/kernel/manual/parts/
H A Dipc.tex22 The message words are sent to or received from a thread by placing them in its \emph{message registers}.
29 %FIXME: seL4_TCB_SetIPCBuffer is only mentioned in the API reference!
41 manner in which capabilities were received. It is described in
57 \ipcparam{seL4\_CPtr[]}{(in)}{caps}{Capabilities to transfer}
72 \texttt{badges} and \texttt{caps} use the same area of memory in
78 \texttt{seL4\_IPCBuffer} as defined in \autoref{tbl:ipcbuffer}. The
82 \texttt{msg} field to transfer arguments. However, it leaves room in
87 transferred via message registers and arguments 3 and 4 would be in
89 This allows the user-level object-invocation stubs to copy the arguments passed in physica
[all...]
/seL4-test-master/projects/musllibc/src/locale/
H A Diconv.c154 size_t iconv(iconv_t cd0, char **restrict in, size_t *restrict inb, char **restrict out, size_t *restrict outb) argument
171 if (!in || !*in || !*inb) return 0;
175 for (; *inb; *in+=l, *inb-=l) {
176 c = *(unsigned char *)*in;
181 l = mbrtowc_utf8(&wc, *in, *inb, &st);
192 c = *(wchar_t *)*in;
198 c = get_32((void *)*in, type);
208 c = get_16((void *)*in, type);
214 d = get_16((void *)(*in
[all...]
/seL4-test-master/projects/seL4_libs/libsel4platsupport/src/sel4_arch/x86_64/
H A Dcrt0.S16 * This file will only be linked in if:
46 # the return value is in rax
/seL4-test-master/projects/musllibc/include/arpa/
H A Dinet.h9 #include <netinet/in.h>

Completed in 112 milliseconds

12345