Home
last modified time | relevance | path

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

12345678910>>...14

/picolibc-3.7.0-3.6.0/newlib/libc/machine/xtensa/
Dxtensa.tex14 @section @code{setjmp}---save stack environment
23 @code{setjmp} and @code{longjmp} are useful for dealing with errors
25 @code{setjmp} saves the stack context/environment in @code{env} for
26 later use by @code{longjmp}. The stack context will be invalidated if
27 the function which called @code{setjmp} returns.
31 @code{setjmp} returns 0 if returning directly, and non-zero when
32 returning from @code{longjmp} using the saved context.
36 @code{setjmp} is ANSI C and POSIX.1.
43 @section @code{longjmp}---non-local goto
52 @code{longjmp} and @code{setjmp} are useful for dealing with errors
[all …]
/picolibc-3.7.0-3.6.0/newlib/libc/locale/
Dlocale.tex9 #1. Redistributions of source code must retain the above copyright
35 depending on location or culture. The @code{"C"} locale is the only
38 This is a minimal implementation, supporting only the required @code{"C"}
40 honored. (@code{""} is also accepted; it represents the default locale
41 for an implementation, here equivalent to @code{"C"}).
44 @file{locale.h} defines the structure @code{lconv} to collect the
47 @table @code
50 numbers except those referring to amounts of money). @code{"."} in the
56 @code{""} in the C locale.
62 group, and a value of @code{0} (that is, the string's trailing
[all …]
/picolibc-3.7.0-3.6.0/newlib/libc/iconv/ces/
Dtable.c59 find_code_size (ucs2_t code, const __uint16_t *tblp);
62 find_code_speed (ucs2_t code, const __uint16_t *tblp);
65 find_code_speed_8bit (ucs2_t code, const unsigned char *tblp);
133 ucs2_t code; in table_convert_from_ucs() local
140 code = find_code_speed_8bit ((ucs2_t)in, in table_convert_from_ucs()
142 if (code == INVALC) in table_convert_from_ucs()
144 **outbuf = (unsigned char)code; in table_convert_from_ucs()
150 code = find_code_speed ((ucs2_t)in, ccsp->tbl); in table_convert_from_ucs()
152 code = find_code_size ((ucs2_t)in, ccsp->tbl); in table_convert_from_ucs()
154 if (code == INVALC) in table_convert_from_ucs()
[all …]
/picolibc-3.7.0-3.6.0/test/semihost/
Dsemihost-seek.c50 int code = 0; in main() local
63 code = 2; in main()
70 code = 3; in main()
77 code = 4; in main()
84 code = 5; in main()
92 code = 6; in main()
99 code = 7; in main()
106 exit(code); in main()
Dsemihost-remove.c45 int code = 0; in main() local
57 code = 2; in main()
63 code = 3; in main()
69 code = 4; in main()
75 code = 5; in main()
82 exit(code); in main()
Dsemihost-write.c50 int code = 0; in main() local
62 code = 2; in main()
69 code = 3; in main()
75 code = 3; in main()
81 code = 5; in main()
87 code = 6; in main()
94 exit(code); in main()
Dsemihost-read.c50 int code = 0; in main() local
62 code = 2; in main()
69 code = 3; in main()
75 code = 3; in main()
81 code = 5; in main()
87 code = 6; in main()
94 exit(code); in main()
Dsemihost-flen.c48 int code = 0; in main() local
60 code = 2; in main()
67 code = 3; in main()
73 code = 4; in main()
79 code = 5; in main()
86 exit(code); in main()
Dsemihost-rename.c46 int code = 0; in main() local
58 code = 2; in main()
66 code = 3; in main()
72 code = 3; in main()
78 code = 3; in main()
86 exit(code); in main()
Dsemihost-open.c45 int code = 0; in main() local
57 code = 2; in main()
63 code = 3; in main()
70 exit(code); in main()
Dsemihost-close.c45 int code = 0; in main() local
56 code = 2; in main()
59 exit(code); in main()
/picolibc-3.7.0-3.6.0/semihost/
Dexit.c41 _exit(int code) in _exit() argument
44 sys_semihost_exit_extended(code); in _exit()
47 if (code == 0) in _exit()
51 sys_semihost_exit(value, code); in _exit()
/picolibc-3.7.0-3.6.0/test/
Don_exit.c42 fail(int code, void *param) in fail() argument
44 (void) code; in fail()
51 success(int code, void *param) in success() argument
53 (void) code; in success()
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dnano-vfprintf_float.c187 char code = pdata->code; in _printf_float() local
207 if (code <= 'G') /* 'A', 'E', 'F', or 'G'. */ in _printf_float()
219 if (code <= 'G') /* 'A', 'E', 'F', or 'G'. */ in _printf_float()
232 else if ((code == 'g' || code == 'G') && pdata->prec == 0) in _printf_float()
240 &expt, code, &ndig, cp); in _printf_float()
242 if (code == 'g' || code == 'G') in _printf_float()
246 code -= 2; in _printf_float()
248 code = 'g'; in _printf_float()
250 if (code <= 'e') in _printf_float()
254 expsize = __exponent (pdata->expstr, expt, code); in _printf_float()
[all …]
Dnano-vfscanf_i.c56 pdata->width = (pdata->code == CT_CHAR) ? 1 : (size_t)~0; in _scanf_chars()
63 while ((pdata->code == CT_CHAR) in _scanf_chars()
64 || (pdata->code == CT_CCL && pdata->ccltab[*fp->_p]) in _scanf_chars()
65 || (pdata->code == CT_STRING && !isspace (*fp->_p))) in _scanf_chars()
81 if (n == 0 && pdata->code == CT_CCL) in _scanf_chars()
87 if (pdata->code != CT_CHAR) in _scanf_chars()
110 ccfn = (pdata->code == CT_INT) ? (u_long (*)CCFN_PARAMS)strtol : strtoul; in _scanf_i()
/picolibc-3.7.0-3.6.0/newlib/libc/posix/
Dregerror.c85 int code; member
129 for (r = rerrs; r->code != 0; r++) in regerror()
130 if (r->code == target) in regerror()
134 if (r->code != 0) in regerror()
166 for (r = rerrs; r->code != 0; r++) in regatoi()
170 sprintf(localbuf, "%d", r->code); in regatoi()
/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/
Dpico-exit.c40 exit(int code) in exit() argument
45 __call_exitprocs (code, NULL); in exit()
49 _exit(code); in exit()
Dexit.c57 exit (int code) in exit() argument
64 __call_exitprocs (code, NULL); in exit()
72 _exit (code); in exit()
D_Exit.c37 _Exit (int code) in _Exit() argument
39 _exit (code); in _Exit()
/picolibc-3.7.0-3.6.0/semihost/machine/sh/
Dsh_exit.c42 _exit(int code) in _exit() argument
48 n = snprintf(buf, sizeof(buf), "%cexit %d\n", 0xe9, code); in _exit()
52 sh_cons.halt = code; in _exit()
/picolibc-3.7.0-3.6.0/newlib/libc/ssp/
Dssp.tex11 Stack Smashing Protection is a compiler feature which emits extra code
15 for use by the compiler, and are used when any of the @code{-fstack-protector},
16 @code{-fstack-protector-all}, @code{-fstack-protector-explicit}, or
17 @code{-fstack-protector-strong} compiler flags are enabled.
23 optimization (@code{-O1} and higher) and @code{_FORTIFY_SOURCE} defined
/picolibc-3.7.0-3.6.0/semihost/fake/
Dfake_exit.c41 _exit(int code) in _exit() argument
43 (void) code; in _exit()
/picolibc-3.7.0-3.6.0/dummyhost/
Dexit.c39 _exit(int code) in _exit() argument
41 (void) code; in _exit()
/picolibc-3.7.0-3.6.0/semihost/machine/msp430/
Dmsp430-exit.c42 _exit(int code) in _exit() argument
44 msp430_semihost_1(MSP430_SEMIHOST_EXIT, code); in _exit()
/picolibc-3.7.0-3.6.0/semihost/machine/m68k/
Dm68k_exit.c41 _exit(int code) in _exit() argument
43 m68k_semihost1_immediate(HOSTED_EXIT, code); in _exit()

12345678910>>...14