Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads.old/
A Dlinuxthreads.texi41 and @code{wait}.
65 @table @code
134 @table @code
267 @code{SCHED_RR} and @code{SCHED_FIFO}.
354 @code{pthread_join}, @code{pthread_cond_wait},
878 @code{pthread_cond_timedwait} returns the error code @code{ETIMEDOUT}.
880 @code{pthread_cond_timedwait} returns @code{EINTR}.
1031 @table @code
1252 @table @code
1254 @var{how} is not one of @code{SIG_SETMASK}, @code{SIG_BLOCK}, or @code{SIG_UNBLOCK}
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/i386/bits/
A Dmathinline.h214 # define __inline_mathcode(func, arg, code) \ argument
218 # define __inline_mathcodeNP(func, arg, code) \ argument
222 # define __inline_mathcode2(func, arg1, arg2, code) \ argument
239 # define __inline_mathcode(func, arg, code) \ argument
240 __inline_mathcode_ (double, func, (arg), code)
241 # define __inline_mathcodeNP(func, arg, code) \ argument
242 __inline_mathcodeNP_ (double, func, (arg), code)
255 __inline_mathcodeNP_(float_type, func, arg, code)
260 code; \
271 code; \
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/test/API/
A Dseparate.awk18 code="";# feature set; XSI, OB XSI, CX, etc
22 code = get_code($0)
25 /\[Option End\]/{ code = ""; next; }
36 if (code) {
37 fname = hdrname "-" code "." stdname ".syms"
42 if (file[code]) {
46 file[code] = 1
A Dtst-API.sh15 for code in $cod; do cat $code.$std.syms; done | sort | uniq > $glibc_out
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/ldso/mips/
A DREADME1 Almost all of the code present in these source files was taken
4 code taken from the Linux kernel.
8 Contains code to fix up the stack pointer so that the dynamic
10 The code is taken from the function 'RTLD_START' in the file
15 Contains the runtime resolver code taken from the function
18 other than the linker itself. The code was taken from the
32 Contains bootstrap code for the dynamic linker, magic numbers
35 linker's GOT so that function calls can be made. The code is
39 the dynamic loader. The code is taken from the function
43 code is taken from the functions 'elf_machine_runtime_setup'
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/ldso/man/
A Dld.so.texi75 @code{ld.so} or @code{ld-linux.so}, which contains the intelligence
135 @table @code
141 @code{ld.so} will use @code{LD_AOUT_LIBRARY_PATH} and @code{ld-linux.so} will
142 use @code{LD_LIBRARY_PATH}.
149 will use @code{LD_AOUT_PRELOAD} and @code{ld-linux.so} will use
150 @code{LD_PRELOAD}.
170 @c @code{ld-linux.so} and @code{ldd}. I don't know more.
226 @code{ldd} has a few options:
251 @code{ld.so} suite itself.
307 @code{dlclose} to close the library.
[all …]
/l4re-core-master/ned/lib/include/
A Dcmd_control27 * Execute the given Lua code.
29 * \param[in] cmd String with Lua code to execute.
33 * \retval -L4_EIO Error during code execution.
35 * The code is executed using the global Lua state of ned
41 * of the Lua code itself.
50 * Execute the given Lua code.
52 * \param[in] cmd String with Lua code to execute.
53 * \param[out] result The first return value of the Lua code block
58 * \retval -L4_EIO Error during code execution.
60 * The code is executed using the global Lua state of ned
/l4re-core-master/uclibc/lib/contrib/uclibc/libpthread/linuxthreads/sysdeps/unix/sysv/linux/hppa/
A Dsysdep-cancel.h107 # define CENABLE .import __pthread_enable_asynccancel,code ASM_LINE_SEP \
109 # define CDISABLE .import __pthread_disable_asynccancel,code ASM_LINE_SEP \
112 # define CENABLE .import __pthread_enable_asynccancel,code ASM_LINE_SEP \
119 # define CENABLE .import __libc_enable_asynccancel,code ASM_LINE_SEP \
121 # define CDISABLE .import __libc_disable_asynccancel,code ASM_LINE_SEP \
124 # define CENABLE .import __libc_enable_asynccancel,code ASM_LINE_SEP \
126 # define CDISABLE .import __libc_disable_asynccancel,code ASM_LINE_SEP \
131 # define CENABLE .import __librt_enable_asynccancel,code ASM_LINE_SEP \
133 # define CDISABLE .import __librt_disable_asynccancel,code ASM_LINE_SEP \
136 # define CENABLE .import __librt_enable_asynccancel,code ASM_LINE_SEP \
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/inet/
A Dgai_strerror.c25 int code; member
49 gai_strerror (int code) in gai_strerror() argument
53 if (values[i].code == code) in gai_strerror()
/l4re-core-master/lua/lib/contrib/src/
A Dlutf8lib.c140 utfint code; in codepoint() local
141 s = utf8_decode(s, &code, !lax); in codepoint()
144 lua_pushinteger(L, code); in codepoint()
152 lua_Unsigned code = (lua_Unsigned)luaL_checkinteger(L, arg); in pushutfchar() local
153 luaL_argcheck(L, code <= MAXUTF, arg, "value out of range"); in pushutfchar()
154 lua_pushfstring(L, "%U", (long)code); in pushutfchar()
237 utfint code; in iter_aux() local
238 const char *next = utf8_decode(s + n, &code, strict); in iter_aux()
242 lua_pushinteger(L, code); in iter_aux()
/l4re-core-master/uclibc/lib/uclibc/
A D_exit.cc4 extern "C" void _exit(int code) noexcept __attribute__ ((__noreturn__, __weak__));
6 void _exit(int code) noexcept in _exit() argument
10 e->parent()->signal(0, code); in _exit()
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/hppa/
A Dcrt1.S36 .import main, code
38 .import __uClibc_main, code
40 .import _fini, code
41 .import _init, code
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/time/
A Dtime.c1017 unsigned char code; in __XL_NPP() local
1064 if ((code &= 0xf) < 8) { in __XL_NPP()
1070 + (code & 7); in __XL_NPP()
1469 unsigned char code;
1518 if ((code &= 0xf) < 8) {
1525 + (code & 7);
1547 code &= 0xf;
1558 if (!code) { /* am/pm */
1564 fields[2 + (code << 1)]
1593 if (!code) { /* s */
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arc/
A Dclone.S48 cmp r0, 0 ; return code : 0 new process, !0 parent
62 ; (1) No need to make -ve kernel error code as positive errno
63 ; __syscall_error expects the -ve error code returned by kernel
64 ; (2) r0 still had orig -ve kernel error code
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/
A Darch_prctl.c13 int arch_prctl(int code, unsigned long addr);
14 _syscall2(int, arch_prctl, int, code, unsigned long, addr)
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/libsupc++/
A Deh_throw.cc32 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
42 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/libsupc++/
A Deh_throw.cc32 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
42 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/libsupc++/
A Deh_throw.cc32 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
42 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/cxx/lib/ipc/include/
A Dipc_helper37 * \param err The IPC result code (error code).
54 * \param err The IPC result code (error code).
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/libsupc++/
A Deh_throw.cc33 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
43 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/libsupc++/
A Deh_throw.cc33 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
43 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/libsupc++/
A Deh_throw.cc33 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
43 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/libsupc++/
A Deh_throw.cc33 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
43 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/libsupc++/
A Deh_throw.cc33 __gxx_exception_cleanup (_Unwind_Reason_Code code, _Unwind_Exception *exc) in __gxx_exception_cleanup() argument
43 if (code != _URC_FOREIGN_EXCEPTION_CAUGHT && code != _URC_NO_REASON) in __gxx_exception_cleanup()
/l4re-core-master/lua/lib/contrib/doc/
A Dmanual.css1 h3 code {
6 pre, code { selector

Completed in 24 milliseconds

12345678910>>...15