Searched refs:match (Results 1 - 25 of 59) sorted by relevance

123

/seL4-camkes-master/kernel/tools/
H A Dcircular_includes.py39 if ignore_re and ignore_re.match(line):
42 match = header_re.match(line)
44 if match is None:
47 depth = int(match.group(1))
48 header = match.group(2)
/seL4-camkes-master/tools/cogent/cogent/misc/
H A Dcogent.vim24 syn match cogentTypeId "\<[A-Z][a-zA-Z0-9_']*"
25 syn match cogentVarDef "^[a-z_][a-zA-Z0-9_']*"
26 syn match cogentFieldId "\<[a-z][a-zA-Z0-9_']*" contained nextgroup=cogentFieldColon skipwhite
27 syn match cogentTag "[A-Z][a-zA-Z0-9_']*" contained nextgroup=cogentTypeId,cogentRecord,cogentVariant skipwhite
31 syn match cogentLetBang "!\s*[a-z_][a-zA-Z0-9_']*" containedin=cogentDefinition contained
33 syn match cogentOpenBrace "{\|#{" containedin=cogentTakePut contained
34 syn match cogentCloseBrace "}" containedin=cogenttakePut contained
39 syn match cogentTypedefTypeId "[A-Z][a-zA-Z0-9_']*" nextgroup=cogentTypedefEq skipwhite contained
40 syn match cogentTypedefEq "=" nextgroup=cogentTypeType skipwhite contained
44 " syn match cogentTypeSigVarI
[all...]
/seL4-camkes-master/projects/musllibc/tools/
H A Dversion.sh5 git describe --tags --match 'v[0-9]*' 2>/dev/null \
H A Dadd-cfi.i386.awk27 match($0, /-?(0x[0-9a-fA-F]+|[0-9]+),/)
32 if (match(register, /^e/))
34 else if (match(register, /[hl]$/)) # AH, AL, BH, BL, etc
41 match($0, /%e?([abcd][hlx]|si|di|bp)/)
46 match($0, /%e?([abcd][hlx]|si|di|bp),/)
51 match($0, /,%e?([abcd][hlx]|si|di|bp)/)
132 if (match($0, / %(ax|bx|cx|dx|di|si|bp|sp)/))
138 if (match($0, / %(ax|bx|cx|dx|di|si|bp|sp)/))
147 if (match($0, /call [0-9]+f/)) # "forward" label
149 else if (match(
[all...]
H A Dadd-cfi.i386_sel4.awk27 match($0, /-?(0x[0-9a-fA-F]+|[0-9]+),/)
32 if (match(register, /^e/))
34 else if (match(register, /[hl]$/)) # AH, AL, BH, BL, etc
41 match($0, /%e?([abcd][hlx]|si|di|bp)/)
46 match($0, /%e?([abcd][hlx]|si|di|bp),/)
51 match($0, /,%e?([abcd][hlx]|si|di|bp)/)
132 if (match($0, / %(ax|bx|cx|dx|di|si|bp|sp)/))
138 if (match($0, / %(ax|bx|cx|dx|di|si|bp|sp)/))
147 if (match($0, /call [0-9]+f/)) # "forward" label
149 else if (match(
[all...]
H A Dadd-cfi.x86_64.awk20 match($0, /-?(0x[0-9a-fA-F]+|[0-9]+),/)
25 if (match(register, /^r/))
27 else if (match(register, /^e/))
29 else if (match(register, /[hl]$/)) # AH, AL, BH, BL, etc
36 match($0, /%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15)/)
41 match($0, /%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15),/)
46 match($0, /,%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15)/)
133 if (match($0, /call [0-9]+f/)) # "forward" label
135 else if (match($0, /call [0-9a-zA-Z_]+/))
141 /pushl? %r(ax|bx|cx|dx|si|di|bp|8|9|10|11|12|13|14|15)/ { # don't match "pus
[all...]
H A Dadd-cfi.x86_64_sel4.awk20 match($0, /-?(0x[0-9a-fA-F]+|[0-9]+),/)
25 if (match(register, /^r/))
27 else if (match(register, /^e/))
29 else if (match(register, /[hl]$/)) # AH, AL, BH, BL, etc
36 match($0, /%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15)/)
41 match($0, /%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15),/)
46 match($0, /,%[er]?([abcd][xlh]|si|di|bp|8|9|10|11|12|13|14|15)/)
133 if (match($0, /call [0-9]+f/)) # "forward" label
135 else if (match($0, /call [0-9a-zA-Z_]+/))
141 /pushl? %r(ax|bx|cx|dx|si|di|bp|8|9|10|11|12|13|14|15)/ { # don't match "pus
[all...]
/seL4-camkes-master/tools/riscv-pk/scripts/
H A Dvcs-version.sh92 if ( git describe --tags --match "rel-*" &> /dev/null ); then
93 ver_str=`git describe --tags --match "rel-*" | sed 's/rel-//'`
97 ver_sha=`git describe --tags --match "rel-*" --always`
/seL4-camkes-master/projects/musllibc/src/regex/
H A Dglob.c12 struct match struct
14 struct match *next;
39 static int append(struct match **tail, const char *name, size_t len, int mark)
41 struct match *new = malloc(sizeof(struct match) + len + 1);
51 static int match_in_dir(const char *d, const char *p, int flags, int (*errfunc)(const char *path, int err), struct match **tail)
143 static void freelist(struct match *head)
145 struct match *match, *next; local
146 for (match
[all...]
/seL4-camkes-master/projects/musllibc/src/ldso/arm/
H A Dfind_exidx.c15 int i, match = 0, exidx_len = 0; local
21 match |= data->pc >= addr && data->pc < addr + phdr->p_memsz;
31 return match;
/seL4-camkes-master/projects/camkes/apps/picotcp_tcp_echo/components/Echo/src/
H A Dutilization_socket.c29 #define msg_match(msg, match) (strncmp(msg, match, strlen(match))==0)
86 printf("Couldn't match message: %s\n", (char *)echo_recv_buf);
/seL4-camkes-master/projects/camkes/apps/picotcp_single_component/src/
H A Dutilization_socket.c61 #define msg_match(msg, match) (strncmp(msg, match, strlen(match))==0)
117 printf("Couldn't match message: %s\n", utilz_mesg);
/seL4-camkes-master/tools/seL4/cmake-tool/helpers/
H A Dshoehorn.py98 match = re.search(cpio_magic, payload.read())
100 if match:
102 .format(cpio_magic, match.start(), payload_filename))
103 payload.seek(match.start())
/seL4-camkes-master/projects/musllibc/src/misc/
H A Dgetopt_long.c60 int i, cnt, match; local
68 match = i;
76 i = match;
/seL4-camkes-master/projects/musllibc/src/network/
H A Ddn_comp.c36 /* longest suffix match of an ascii domain with a compressed domain name dn */
37 static int match(int *offset, const unsigned char *base, const unsigned char *dn, function
77 m = match(&offset, *dnptrs, *p, end, lens, n);
/seL4-camkes-master/projects/camkes-tool/camkes/ast/tests/
H A Dlint.py50 if regex.match(src) is None:
H A Dlintsource.py43 if regex.match(src) is None:
/seL4-camkes-master/projects/camkes-tool/camkes/internal/tests/
H A Dlint.py47 if regex.match(src) is None:
H A Dlintsource.py43 if regex.match(src) is None:
/seL4-camkes-master/projects/camkes-tool/camkes/parser/tests/
H A Dlint.py47 if regex.match(src) is None:
H A Dlintsource.py43 if regex.match(src) is None:
/seL4-camkes-master/projects/camkes-tool/camkes/runner/tests/
H A Dlint.py50 if regex.match(src) is None:
H A Dlintsource.py43 if regex.match(src) is None:
/seL4-camkes-master/projects/camkes-tool/camkes/templates/tests/
H A Dlint.py47 if regex.match(src) is None:
H A Dlintsource.py43 if regex.match(src) is None:

Completed in 96 milliseconds

123