HomeSort by: relevance | last modified time | path
    Searched refs:compile (Results 1 - 25 of 768) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /xsrc/external/mit/MesaLib/dist/src/intel/genxml/
util.py 29 alphanum_nono = re.compile(r'[ /\[\]()\-:.,=>#&*\'"+\\]+')
  /xsrc/external/mit/xcb-proto/dist/
py-compile 2 # py-compile - Compile a Python program
34 me=py-compile
65 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
67 Byte compile some python scripts FILES. Use --destdir to specify any
73 py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
111 # byte compile but not go into the compiled file.
150 py_compile.compile(filepath, $import_call(filepath), path)
152 py_compile.compile(filepath, filepath + 'c', path)
174 py_compile.compile(filepath, $import_call(filepath), path
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/
trace-parser.py 149 flush_batch_match = re.compile(r": flush_batch: (\S+): cleared=(\S+), gmem_reason=(\S+), num_draws=(\S+)")
150 framebuffer_match = re.compile(r": framebuffer: (\S+)x(\S+)x(\S+)@(\S+), nr_cbufs: (\S+)")
151 surface_match = re.compile(r": surface: (\S+)x(\S+)@(\S+), fmt=(\S+)")
154 gmem_match = re.compile(r": render_gmem: (\S+)x(\S+) bins of (\S+)x(\S+)")
155 sysmem_match = re.compile(r": render_sysmem")
156 state_restore_match = re.compile(r"\+(\S+): end_state_restore")
157 prologue_match = re.compile(r"\+(\S+): end_prologue")
158 binning_ib_match = re.compile(r"\+(\S+): end_binning_ib")
159 vsc_overflow_match = re.compile(r"\+(\S+): end_vsc_overflow_test")
160 draw_ib_match = re.compile(r"\+(\S+): end_draw_ib"
    [all...]
  /xsrc/external/mit/freetype/dist/builds/meson/
extract_freetype_version.py 25 RE_MAJOR = re.compile(r"^ \#define \s+ FREETYPE_MAJOR \s+ (.*) $", re.X)
26 RE_MINOR = re.compile(r"^ \#define \s+ FREETYPE_MINOR \s+ (.*) $", re.X)
27 RE_PATCH = re.compile(r"^ \#define \s+ FREETYPE_PATCH \s+ (.*) $", re.X)
extract_libtool_version.py 23 RE_VERSION_INFO = re.compile(r"^version_info='(\d+):(\d+):(\d+)'")
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_check_va.py 17 p = re.compile('timestamp=(.*), VA=(.*)-(.*), destroyed=(.*), is_virtual=(.*)')
  /xsrc/external/mit/freetype/dist/builds/unix/
unix-cc.in 62 # this is only used to compile the demo programs, not the library itself.
98 override CC := $(LIBTOOL) --mode=compile $(CCraw)
104 RC := $(LIBTOOL) --tag=RC --mode=compile $(RCraw)
118 CCexe := $(CCraw_build) # used to compile `apinames' only
  /xsrc/external/mit/freetype/dist/src/tools/
chktrcmp.py 52 c_pathname_pat = re.compile( '^.*\.[ch]$', re.IGNORECASE )
53 trace_use_pat = re.compile( '^[ \t]*#define[ \t]+FT_COMPONENT[ \t]+trace_' )
77 trace_def_pat_opn = re.compile( '^.*FT_TRACE_DEF[ \t]*\([ \t]*' )
78 trace_def_pat_cls = re.compile( '[ \t\)].*$' )
  /xsrc/external/mit/xf86-video-intel/dist/
.gitignore 11 compile
41 py-compile
50 # Edit Compile Debug Document Distribute
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_stream.c 104 bool (*compile)(struct brw_compile *))
112 if (!compile(&p)) {
126 bool (*compile)(struct brw_compile *, int),
135 if (!compile(&p, dispatch_width)) {
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_stream.c 104 bool (*compile)(struct brw_compile *))
112 if (!compile(&p)) {
126 bool (*compile)(struct brw_compile *, int),
135 if (!compile(&p, dispatch_width)) {
  /xsrc/external/mit/xf86-video-xgi/dist/
.gitignore 11 compile
41 py-compile
48 # Edit Compile Debug Document Distribute
  /xsrc/external/mit/xf86-video-intel-old/dist/
shave-libtool.in 43 compile)
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /xsrc/external/mit/xorgproto/dist/scripts/
keysym-generator.py 36 start_token = re.compile(r"#define _EVDEVK.*")
37 end_token = re.compile(r"#undef _EVDEVK\n")
51 pattern = re.compile(r"^#define\s+(?P<name>\w+)\s+(0x[0-9A-Fa-f]+)")
187 reserved_range = re.compile(r"#define.*0x10081.*")
188 normal_range = re.compile(r"#define.*0x1008.*")
191 expected_pattern = re.compile(
195 expected_comment_pattern = re.compile(
200 define = re.compile(r"^#define .*")
201 name_pattern = re.compile(r"#define (XF86XK_[^\s]*)")
202 space_check = re.compile(r"#define \w+(\s+)[^\s]+(\s+)"
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/glx/
gen_gl_wrappers.py 70 dispatch_regex = re.compile(r'#define\sSET_(\S*)\(')
90 typemap_regex = re.compile(r'#define\sSET_(\S*)\(')
113 r1 = re.compile(r'\t(\S*)\s+(\S*.*)')
114 r2 = re.compile(r'(.*)\((.*)\)')
115 r3 = re.compile(r'glWindowPos.*MESA')
116 r4 = re.compile(r'gl.*Program(s|)NV')
117 r5 = re.compile(r'glGetVertexAttribfvNV')
  /xsrc/external/mit/MesaLib.old/dist/src/util/xmlpool/
gen_xmlpool.py 146 reLibintl_h = re.compile(r'#\s*include\s*<libintl.h>')
147 reDESC = re.compile(r'(\s*DRI_CONF_DESC\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
148 reDESC_BEGIN = re.compile(r'(\s*DRI_CONF_DESC_BEGIN\s*\(\s*)([a-z]+)(\s*,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
149 reENUM = re.compile(r'(\s*DRI_CONF_ENUM\s*\([^,]+,\s*)(gettext\s*\(\s*")(.*)("\s*\))(\s*\)[ \t]*\\?)$')
150 reDESC_END = re.compile(r'\s*DRI_CONF_DESC_END')
161 # Compile a list of translation classes to all supported languages.
  /xsrc/external/mit/glw/dist/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /xsrc/external/mit/xf86-video-ati/dist/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /xsrc/external/mit/xsetpointer/dist/
compile 39 Usage: compile [--help] [--version] PROGRAM [ARGS]
53 echo "compile $scriptversion"
69 # configure might choose to run compile as `compile cc -o foo foo.c'.
122 # Run the compile.
  /xsrc/external/mit/MesaLib/dist/src/amd/registers/
canonicalize.py 43 RE_number = re.compile('[0-9]+')
parse_kernel_headers.py 54 re_base = re.compile(r'^static const struct IP_BASE.*GC_BASE\s*=\s*{ { { { (\w+), (\w+), (\w+), (\w+), (\w+).*} },\n')
59 re_offset = re.compile(r'^#define (?P<mm>(mm|ix|reg))(?P<name>\w+)\s+(?P<value>\w+)\n')
62 re_shift = re.compile(r'^#define (?P<name>\w+)__(?P<field>\w+)__SHIFT\s+(?P<value>\w+)\n')
66 re_mask = re.compile(r'^#define (?P<name>\w+)__(?P<field>\w+)_MASK\s+(?P<value>[0-9a-fA-Fx]+)L?\n')
719 re_enum_begin = re.compile(r'^typedef enum (?P<name>\w+) {\n')
720 re_enum_entry = re.compile(r'\s*(?P<name>\w+)\s*=\s*(?P<value>\w+),?\n')
721 re_enum_end = re.compile(r'^} \w+;\n')
parseheader.py 41 RE_comment = re.compile(r'(/\*(.*)\*/)$|(//(.*))$')
42 RE_prefix = re.compile(r'([RSV])_([0-9a-fA-F]+)_')
43 RE_set_value = re.compile(r'\(\(\(unsigned\)\(x\) & ([0-9a-fA-Fx]+)\) << ([0-9]+)\)')
44 RE_set_value_no_shift = re.compile(r'\((\(unsigned\))?\(x\) & ([0-9a-fA-Fx]+)\)')
  /xsrc/external/mit/xedit/dist/lisp/
compile.c 30 /* $XFree86: xc/programs/xedit/lisp/compile.c,v 1.15tsi Exp $ */
649 /* Must be binded at compile time also */
1303 int eval, int builtin, int compile)
1305 /* If <compile> is set, it is pushing an argument to one of
1307 if (compile) {
1395 int eval, int builtin, int compile)
1436 ComPush(com, symbols[i], CAR(values), eval, builtin, compile);
1465 ComPush(com, symbols[i], CAR(values), eval, builtin, compile);
1469 ComPush(com, sforms[i], T, 0, builtin, compile);
1482 ComPush(com, symbols[i], defaults[i], 1, 0, compile);
1762 int base, compile; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/.gitlab-ci/
report-flakes.py 65 csv = re.compile("(.*),(.*),(.*)")
107 known_flakes.append(re.compile(line))

Completed in 13 milliseconds

1 2 3 4 5 6 7 8 91011>>