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

12

/seL4-refos-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)
H A Dlex.py69 # This regular expression is used to match valid token names
342 # Look for a regular expression match
344 m = lexre.match(lexdata, lexpos)
391 # No match, see if in literals
401 # No match. Call t_error() if defined.
634 if not _is_identifier.match(n):
799 if c.match(""):
827 if (c.match("")):
872 # match on each line in the given file.
894 m = fre.match(
[all...]
/seL4-refos-master/libs/libmuslc/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-refos-master/libs/libmuslc/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-refos-master/libs/libmuslc/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-refos-master/seL4_tools/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-refos-master/libs/libmuslc/src/misc/
H A Dgetopt_long.c60 int i, cnt, match; local
68 match = i;
76 i = match;
/seL4-refos-master/libs/libmuslc/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-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dmplayer.c46 register boolean match; local
49 match = FALSE;
55 match = TRUE;
60 } while (match && m < 100); /* m for insurance */
62 if (match) return (const char *)0;
H A Dsave.c367 "Level #0 pid (%d) doesn't match ours (%d)!",
479 uchar match; local
482 match = 0;
496 match++;
497 if (match > 254) {
498 match = 254; /* undo this match */
505 bwrite(fd, (genericptr_t)&match, sizeof(uchar));
509 match = 1;
514 if (match >
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dmplayer.c46 register boolean match; local
49 match = FALSE;
55 match = TRUE;
60 } while (match && m < 100); /* m for insurance */
62 if (match) return (const char *)0;
H A Dsave.c367 "Level #0 pid (%d) doesn't match ours (%d)!",
479 uchar match; local
482 match = 0;
496 match++;
497 if (match > 254) {
498 match = 254; /* undo this match */
505 bwrite(fd, (genericptr_t)&match, sizeof(uchar));
509 match = 1;
514 if (match >
[all...]
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/sys/unix/
H A Ddepend.awk142 match((list " "), " +"); i = RSTART; n = RLENGTH
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/sys/unix/
H A Ddepend.awk142 match((list " "), " +"); i = RSTART; n = RLENGTH
/seL4-refos-master/projects/util_libs/libpci/include/pci/
H A Dvirtual_device.h72 bool (*match) (libpci_vdevice_t* self, uint8_t bus, uint8_t dev, uint8_t fun); member in struct:libpci_vdevice
/seL4-refos-master/libs/libplatsupport/src/plat/imx6/
H A Di2c.c108 int match; local
111 match = 0;
120 /* Update prescale value, early exit if exact match */
125 match = i;
128 return match;
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/imx6/
H A Di2c.c108 int match; local
111 match = 0;
120 /* Update prescale value, early exit if exact match */
125 match = i;
128 return match;
/seL4-refos-master/projects/util_libs/libethdrivers/src/plat/zynq7000/
H A Dzynq_gem.h126 u32 match[4]; /* 0xa8 - Type ID1 Match reg */ member in struct:zynq_gem_regs
/seL4-refos-master/projects/util_libs/libplatsupport/src/mach/zynq/
H A Dtimer.c50 * matches one of the three match registers and the
57 * matches one of the three match registers and the
130 /* Sets match values, total 3 */
131 uint32_t match[3][3]; /* +0x30 */ member in struct:ttc_tmr_regs
493 *regs->match[0] = (interval + *regs->cnt_val);
495 *regs->match[0] = (interval + *regs->cnt_val) % BIT(CNT_WIDTH);
499 * In this mode no interrval interrupts. A match interrupt (MATCH0) will be used
504 * will be when the counter passes through the value in the match[0] register.
/seL4-refos-master/libs/libplatsupport/src/mach/zynq/
H A Dtimer.c50 * matches one of the three match registers and the
57 * matches one of the three match registers and the
130 /* Sets match values, total 3 */
131 uint32_t match[3][3]; /* +0x30 */ member in struct:ttc_tmr_regs
493 *regs->match[0] = (interval + *regs->cnt_val);
495 *regs->match[0] = (interval + *regs->cnt_val) % BIT(CNT_WIDTH);
499 * In this mode no interrval interrupts. A match interrupt (MATCH0) will be used
504 * will be when the counter passes through the value in the match[0] register.
/seL4-refos-master/libs/libplatsupport/src/plat/apq8064/
H A Dtimer.c186 uint32_t match; /* +0x00 */ member in struct:tmr_regs
273 /* Clear the timer on match */
296 /* Configure match value */
425 regs->match = (fin_hz * ns) / (4UL * 1000 * 1000 * 1000);

Completed in 138 milliseconds

12