Home
last modified time | relevance | path

Searched refs:ap (Results 1 – 25 of 58) sorted by relevance

123

/l4re-core-master/uclibc/lib/contrib/uclibc/test/tls/
A Dtst-tls1.c23 int *ap, *bp; in do_test() local
28 ap = TLS_LE (bar); in do_test()
29 *ap = 1; in do_test()
34 ap = TLS_IE (foo); in do_test()
37 result |= *ap + *bp != 1; in do_test()
38 if (*ap != 0) in do_test()
52 ap = TLS_LD (foo); in do_test()
55 result |= *ap + *bp != 1; in do_test()
56 if (*ap != 0) in do_test()
70 ap = TLS_GD (foo); in do_test()
[all …]
A Dtst-tls2.c22 int *ap, *bp; in do_test() local
27 ap = TLS_LE (bar); in do_test()
28 *ap = 1; in do_test()
33 ap = TLS_IE (foo); in do_test()
36 result |= *ap + *bp != 1; in do_test()
37 if (*ap != 0) in do_test()
51 ap = TLS_LD (foo); in do_test()
54 result |= *ap + *bp != 1; in do_test()
55 if (*ap != 0) in do_test()
69 ap = TLS_GD (foo); in do_test()
[all …]
A Dtst-tlsmod1.c22 int *ap, *bp, *cp; in in_dso() local
27 ap = TLS_IE (foo); in in_dso()
29 printf (" = %d\n", *ap + *bp); in in_dso()
30 result |= *ap + *bp != 3; in in_dso()
31 if (*ap != 1) in in_dso()
33 printf ("foo = %d\n", *ap); in in_dso()
45 ap = TLS_GD (foo); in in_dso()
48 printf (" = %d\n", *ap + *bp + *cp); in in_dso()
49 result |= *ap + *bp + *cp != 6; in in_dso()
50 if (*ap != 1) in in_dso()
[all …]
A Dtst-tls3.c26 int *ap, *bp, *cp; in do_test() local
31 ap = TLS_LE (baz); in do_test()
32 *ap = 3; in do_test()
37 ap = TLS_IE (foo); in do_test()
38 *ap = 1; in do_test()
45 ap = TLS_GD (foo); in do_test()
48 printf (" = %d\n", *ap + *bp + *cp); in do_test()
49 result |= *ap + *bp + *cp != 6; in do_test()
50 if (*ap != 1) in do_test()
52 printf ("foo = %d\n", *ap); in do_test()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/rpc/
A Dauth_none.c78 struct authnone_private_s *ap; in authnone_create_once() local
82 ap = &authnone_private; in authnone_create_once()
84 ap->no_client.ah_cred = ap->no_client.ah_verf = _null_auth; in authnone_create_once()
85 ap->no_client.ah_ops = (struct auth_ops *) &ops; in authnone_create_once()
87 xdrmem_create(xdrs, ap->marshalled_client, in authnone_create_once()
89 (void) xdr_opaque_auth(xdrs, &ap->no_client.ah_cred); in authnone_create_once()
91 ap->mcnt = XDR_GETPOS (xdrs); in authnone_create_once()
110 struct authnone_private_s *ap; in libc_hidden_def() local
114 ap = (struct authnone_private_s *) client; in libc_hidden_def()
115 if (ap == NULL) in libc_hidden_def()
[all …]
A Drpc_prot.c59 xdr_opaque_auth (XDR *xdrs, struct opaque_auth *ap) in xdr_opaque_auth() argument
62 if (xdr_enum (xdrs, &(ap->oa_flavor))) in xdr_opaque_auth()
63 return xdr_bytes (xdrs, &ap->oa_base, in xdr_opaque_auth()
64 &ap->oa_length, MAX_AUTH_BYTES); in xdr_opaque_auth()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/c6x/
A Dsyscall.c31 va_list ap; in syscall() local
33 va_start( ap, __sysno); in syscall()
34 a = va_arg( ap, long); in syscall()
35 b = va_arg( ap, long); in syscall()
36 c = va_arg( ap, long); in syscall()
37 d = va_arg( ap, long); in syscall()
38 e = va_arg( ap, long); in syscall()
39 f = va_arg( ap, long); in syscall()
40 va_end( ap ); in syscall()
A Dprctl.c25 va_list ap; in prctl() local
27 va_start( ap, __option); in prctl()
29 b = va_arg( ap, long); in prctl()
30 c = va_arg( ap, long); in prctl()
31 d = va_arg( ap, long); in prctl()
32 e = va_arg( ap, long); in prctl()
33 va_end( ap ); in prctl()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/x86_64/
A Dmakecontext.c57 va_list ap; in __makecontext() local
80 va_start (ap, argc); in __makecontext()
94 ucp->uc_mcontext.gregs[REG_RDI] = va_arg (ap, greg_t); in __makecontext()
97 ucp->uc_mcontext.gregs[REG_RSI] = va_arg (ap, greg_t); in __makecontext()
100 ucp->uc_mcontext.gregs[REG_RDX] = va_arg (ap, greg_t); in __makecontext()
103 ucp->uc_mcontext.gregs[REG_RCX] = va_arg (ap, greg_t); in __makecontext()
106 ucp->uc_mcontext.gregs[REG_R8] = va_arg (ap, greg_t); in __makecontext()
109 ucp->uc_mcontext.gregs[REG_R9] = va_arg (ap, greg_t); in __makecontext()
113 sp[i - 5] = va_arg (ap, greg_t); in __makecontext()
116 va_end (ap); in __makecontext()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/avr32/
A Dprctl.c25 va_list ap; in prctl() local
27 va_start(ap, __option); in prctl()
28 arg2 = va_arg(ap, long); in prctl()
29 arg3 = va_arg(ap, long); in prctl()
30 arg4 = va_arg(ap, long); in prctl()
31 arg5 = va_arg(ap, long); in prctl()
32 va_end(ap); in prctl()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/vax/
A Dclone.S34 movl 4(%ap), %r1
35 movl 8(%ap), %r0
46 movl 16(%ap), 20(%r0)
53 pushl %ap
55 pushl 12(%ap)
57 movl %sp, %ap
60 movl (%sp)+, %ap
65 pushl 4(%ap)
A Dsetjmp.S14 movl 0x4(%ap), %r0 /* Our scratch reg */
34 pushl 8(%ap)
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Dptrace.c22 va_list ap; in _syscall4() local
26 va_start (ap, request); in _syscall4()
27 pid = va_arg (ap, pid_t); in _syscall4()
28 addr = va_arg (ap, void *); in _syscall4()
29 data = va_arg (ap, void *); in _syscall4()
30 va_end (ap); in _syscall4()
A D__syscall_fcntl.c40 va_list ap; in fcntl() local
43 va_start (ap, cmd); in fcntl()
44 arg = va_arg (ap, long); in fcntl()
45 va_end (ap); in fcntl()
/l4re-core-master/uclibc/lib/contrib/uclibc/librt/
A Dmq_open.c40 va_list ap; in mq_open() local
42 va_start(ap, oflag); in mq_open()
43 mode = va_arg(ap, mode_t); in mq_open()
44 attr = va_arg(ap, struct mq_attr *); in mq_open()
46 va_end(ap); in mq_open()
/l4re-core-master/uclibc/lib/contrib/uclibc/test/misc/
A Dstdarg.c10 va_list ap; in foo() local
14 va_start(ap, format); in foo()
15 len = vsnprintf(0, 0, format, ap); in foo()
16 va_end(ap); in foo()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/gnu/
A Dobprintf.c24 va_list ap; in libc_hidden_def() local
25 va_start (ap, format); in libc_hidden_def()
26 n = obstack_vprintf (obstack, format, ap); in libc_hidden_def()
27 va_end (ap); in libc_hidden_def()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/stdio/
A Dold_vfprintf.c323 va_list ap) in vfprintf() argument
392 i = va_arg(ap, int); in vfprintf()
443 _store_inttype(va_arg(ap, void *), in vfprintf()
461 intarg.ll = va_arg(ap, long long); in vfprintf()
467 intarg.l = va_arg(ap, long); in vfprintf()
472 intarg.i = va_arg(ap, int); in vfprintf()
520 *p = va_arg(ap, int); in vfprintf()
525 p = va_arg(ap, char *); in vfprintf()
565 ? va_arg(ap, long double) in vfprintf()
572 ? va_arg(ap, long double) in vfprintf()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/test/nptl/
A Dtst-attr3.c31 pthread_attr_t a, *ap, a2; in tf() local
37 ap = &a2; in tf()
38 err = pthread_attr_init (ap); in tf()
46 ap = (pthread_attr_t *) arg; in tf()
64 err = pthread_attr_getdetachstate (ap, &detachstate2); in tf()
105 err = pthread_attr_getguardsize (ap, &guardsize2); in tf()
130 err = pthread_attr_getscope (ap, &scope2); in tf()
153 err = pthread_attr_getinheritsched (ap, &inheritsched2); in tf()
191 if (ap == &a2) in tf()
193 err = pthread_attr_destroy (ap); in tf()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/powerpc/
A Dioctl.c37 va_list ap; in _syscall3() local
40 va_start (ap, request); in _syscall3()
41 arg = va_arg (ap, void *); in _syscall3()
66 va_end (ap); in _syscall3()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/sysvipc/
A Dsem.c49 va_list ap; in _syscall4() local
52 va_start (ap, cmd); in _syscall4()
53 arg = va_arg (ap, union semun); in _syscall4()
54 va_end (ap); in _syscall4()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/syslog/
A Dsyslog.c188 __vsyslog(int pri, const char *fmt, va_list ap) in __vsyslog() argument
242 p += vsnprintf(p, end - p, fmt, ap); in __vsyslog()
314 va_list ap; in strong_alias() local
316 va_start(ap, fmt); in strong_alias()
317 __vsyslog(pri, fmt, ap); in strong_alias()
318 va_end(ap); in strong_alias()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dwrapsyscall.c65 va_list ap; \
67 va_start (ap, last_arg); \
69 va_end (ap); \
81 (fd, cmd, va_arg (ap, long int)), cmd)
86 (fd, cmd, va_arg (ap, long int)), cmd)
122 (pathname, flags, va_arg (ap, mode_t)), flags)
128 (pathname, flags, va_arg (ap, mode_t)), flags)
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/config/
A Dutil.c131 va_list ap; in str_printf() local
133 va_start(ap, fmt); in str_printf()
134 vsnprintf(s, sizeof(s), fmt, ap); in str_printf()
136 va_end(ap); in str_printf()
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/nptl/
A Dsem_open.c304 va_list ap; in sem_open() local
307 va_start (ap, oflag); in sem_open()
309 mode = va_arg (ap, mode_t); in sem_open()
310 value = va_arg (ap, unsigned int); in sem_open()
312 va_end (ap); in sem_open()

Completed in 28 milliseconds

123