Searched refs:str (Results 1 - 25 of 203) sorted by relevance

123456789

/seL4-refos-master/libs/libmuslc/tools/
H A Dadd-cfi.common.awk1 function hex2int(str, i) {
2 str = tolower(str)
10 for (i = 1; i <= length(str); i++) {
12 char = substr(str, i, 1)
18 function parse_const(str) {
19 sign = sub(/^-/, "", str)
20 hex = sub(/^0x/, "", str)
22 n = hex2int(str)
24 n = str
[all...]
/seL4-refos-master/libs/libvterm/src/
H A Dutf8.h15 static int fill_utf8(long codepoint, char *str) argument
19 str[nbytes] = 0;
25 str[b] = 0x80 | (codepoint & 0x3f);
30 case 1: str[0] = (codepoint & 0x7f); break;
31 case 2: str[0] = 0xc0 | (codepoint & 0x1f); break;
32 case 3: str[0] = 0xe0 | (codepoint & 0x0f); break;
33 case 4: str[0] = 0xf0 | (codepoint & 0x07); break;
34 case 5: str[0] = 0xf8 | (codepoint & 0x03); break;
35 case 6: str[0] = 0xfc | (codepoint & 0x01); break;
/seL4-refos-master/projects/refos/impl/libs/libvterm/src/
H A Dutf8.h15 static int fill_utf8(long codepoint, char *str) argument
19 str[nbytes] = 0;
25 str[b] = 0x80 | (codepoint & 0x3f);
30 case 1: str[0] = (codepoint & 0x7f); break;
31 case 2: str[0] = 0xc0 | (codepoint & 0x1f); break;
32 case 3: str[0] = 0xe0 | (codepoint & 0x0f); break;
33 case 4: str[0] = 0xf0 | (codepoint & 0x07); break;
34 case 5: str[0] = 0xf8 | (codepoint & 0x03); break;
35 case 6: str[0] = 0xfc | (codepoint & 0x01); break;
/seL4-refos-master/libs/libmuslc/src/locale/
H A Dlanginfo.c34 const char *str; local
41 str = c_numeric;
45 str = c_time;
49 str = "";
53 str = c_messages;
59 for (; idx; idx--, str++) for (; *str; str++);
60 if (cat != LC_NUMERIC && *str) str
[all...]
/seL4-refos-master/projects/refos/impl/libs/libdatastruct/include/data_struct/
H A Dcsstring.h21 char str[C_STATIC_STRING_MAXLEN]; member in struct:csstring_s
/seL4-refos-master/libs/libdatastruct/include/data_struct/
H A Dcsstring.h21 char str[C_STATIC_STRING_MAXLEN]; member in struct:csstring_s
/seL4-refos-master/libs/libsel4utils/include/sel4utils/
H A Dstrerror.h14 #define sel4_error(e, str) ((e == seL4_NoError) ? (void)0 : __sel4_error(e, __FILE__, __func__, __LINE__, str))
/seL4-refos-master/projects/seL4_libs/libsel4utils/include/sel4utils/
H A Dstrerror.h14 #define sel4_error(e, str) ((e == seL4_NoError) ? (void)0 : __sel4_error(e, __FILE__, __func__, __LINE__, str))
/seL4-refos-master/libs/libmuslc/src/string/
H A Dstrsep.c4 char *strsep(char **str, const char *sep) argument
6 char *s = *str, *end;
11 *str = end;
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dversion.c155 get_feature_notice_ver(str)
156 char *str;
163 if (!str) return 0L;
164 str = strcpy(buf, str);
165 istr[j] = str;
166 while (*str) {
167 if (*str == '.') {
168 *str++ = '\0';
170 istr[j] = str;
[all...]
H A Dquestpgr.c229 register const char *str; local
233 case 'p': str = plname;
235 case 'c': str = (flags.female && urole.name.f) ?
238 case 'r': str = rank_of(u.ulevel, Role_switch, flags.female);
240 case 'R': str = rank_of(MIN_QUEST_LEVEL, Role_switch,
243 case 's': str = (flags.female) ? "sister" : "brother";
245 case 'S': str = (flags.female) ? "daughter" : "son";
247 case 'l': str = ldrname();
249 case 'i': str = intermed();
251 case 'o': str
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dversion.c155 get_feature_notice_ver(str)
156 char *str;
163 if (!str) return 0L;
164 str = strcpy(buf, str);
165 istr[j] = str;
166 while (*str) {
167 if (*str == '.') {
168 *str++ = '\0';
170 istr[j] = str;
[all...]
H A Dquestpgr.c229 register const char *str; local
233 case 'p': str = plname;
235 case 'c': str = (flags.female && urole.name.f) ?
238 case 'r': str = rank_of(u.ulevel, Role_switch, flags.female);
240 case 'R': str = rank_of(MIN_QUEST_LEVEL, Role_switch,
243 case 's': str = (flags.female) ? "sister" : "brother";
245 case 'S': str = (flags.female) ? "daughter" : "son";
247 case 'l': str = ldrname();
249 case 'i': str = intermed();
251 case 'o': str
[all...]
/seL4-refos-master/seL4_tools/cmake-tool/simulate_scripts/
H A Dsimulate.py16 parser.add_argument('-b', '--binary', dest="qemu_sim_binary", type=str,
20 parser.add_argument('-M', '--machine', dest="qemu_sim_machine", type=str,
22 parser.add_argument('-c', '--cpu', dest='qemu_sim_cpu', type=str,
24 parser.add_argument('-o', '--cpu-opt', dest='qemu_sim_cpu_opt', type=str,
26 parser.add_argument('-g', '--graphic', dest='qemu_sim_graphic_opt', type=str,
28 parser.add_argument('-s', '--serial', dest='qemu_sim_serial_opt', type=str,
30 parser.add_argument('-m', '--mem-size', dest='qemu_sim_mem_size', type=str,
32 parser.add_argument('-a', '--args', dest='qemu_sim_args', type=str,
34 parser.add_argument('-k', '--kernel', dest='qemu_sim_kernel_file', type=str,
36 parser.add_argument('-i', '--initrd', dest='qemu_sim_initrd_file', type=str,
[all...]
H A Dlaunch_gdb.py15 parser.add_argument('-b', '--binary', dest='gdb_binary', type=str,
17 parser.add_argument('-f', '--file', dest='target_executable', type=str,
19 parser.add_argument('--extra-gdb-args', dest='extra_gdb_args', type=str,
/seL4-refos-master/libs/libmuslc/src/regex/
H A Dfnmatch.c29 static int str_next(const char *str, size_t n, size_t *step) argument
35 if (str[0] >= 128U) {
37 int k = mbtowc(&wc, str, n);
46 return str[0];
163 static int fnmatch_internal(const char *pat, size_t m, const char *str, size_t n, int flags) argument
171 if (*str == '.' && *pat != '.')
183 k = str_next(str, n, &sinc);
186 str += sinc;
224 /* Compute real str length if it was initially unknown/-1 */
225 n = strnlen(str,
298 fnmatch(const char *pat, const char *str, int flags) argument
[all...]
/seL4-refos-master/kernel/src/arch/x86/kernel/
H A Dcmdline.c82 static void UNUSED parse_uint16_array(char *str, uint16_t *array, int array_size) argument
88 while (str && i < array_size) {
89 for (last = str; *str && *str != ','; str++);
90 if (*str == 0) {
91 str = 0;
93 *str = 0;
94 str
[all...]
/seL4-refos-master/seL4_tools/cmake-tool/helpers/
H A Dplatform_sift.py24 def is_valid(data: Dict[str, Any]) -> Tuple[bool, List[str]]:
103 def report(data=None, c_symbols: Dict[str, str] = {}, use_c=False) -> str:
171 def load_data(yaml_filename: str) -> Dict[str, Any]:
182 def _process_operand(yaml_filename: str, c_symbols: Dict[str, str],
[all...]
/seL4-refos-master/kernel/src/
H A Dutil.c102 long PURE str_to_long(const char *str) argument
110 if (*str == '0' && (*(str + 1) == 'x' || *(str + 1) == 'X')) {
112 str += 2;
117 if (!*str) {
121 c = *str;
128 str++;
129 c = *str;
/seL4-refos-master/projects/util_libs/libfdt/
H A Dfdt_strerror.c59 const char *str; member in struct:fdt_errtabent
63 [(val)] = { .str = #val, }
95 const char *s = fdt_errtable[-errval].str;
/seL4-refos-master/libs/libmuslc/src/signal/aarch64/
H A Dsigsetjmp.s9 str x30,[x0,#176]
10 str x19,[x0,#176+8+8]
/seL4-refos-master/libs/libmuslc/src/signal/arm/
H A Dsigsetjmp.s11 str lr,[r0,#256]
12 str r4,[r0,#260+8]
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/sys/share/
H A Ddgn_comp.h25 char* str; member in union:__anon742
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/sys/share/
H A Ddgn_comp.h25 char* str; member in union:__anon64
/seL4-refos-master/seL4_tools/misc/
H A Dfilter.py20 def parse_filter(line: str):
28 def parse_filters(filters_file: str):
42 parser.add_argument('-f', '--filters', type=str,
44 parser.add_argument('files', nargs='*', type=str,

Completed in 195 milliseconds

123456789