Searched refs:compile (Results 1 – 25 of 95) sorted by relevance
1234
/u-boot/tools/patman/ |
A D | checkpatch.py | 85 re_stats = re.compile(emacs_stats + 87 re_stats_full = re.compile(emacs_stats + 90 re_ok = re.compile('.*has no obvious style problems') 91 re_bad = re.compile('.*has style problems, please review') 93 re_error = re.compile('ERROR:%s (.*)' % type_name) 94 re_warning = re.compile(emacs_prefix + 'WARNING:%s (.*)' % type_name) 95 re_check = re.compile('CHECK:%s (.*)' % type_name) 96 re_file = re.compile('#(\d+): (FILE: ([^:]*):(\d+):)?') 97 re_note = re.compile('NOTE: (.*)') 98 re_new_file = re.compile('new file mode .*')
|
A D | patchstream.py | 23 RE_REMOVE = re.compile(r'^BUG=|^TEST=|^BRANCH=|^Review URL:' 27 RE_ALLOWED_AFTER_TEST = re.compile('^Signed-off-by:') 30 RE_SIGNOFF = re.compile('^Signed-off-by: *(.*)') 33 RE_COVER = re.compile('^Cover-([a-z-]*): *(.*)') 36 RE_SERIES_TAG = re.compile('^Series-([a-z-]*): *(.*)') 39 RE_CHANGE_ID = re.compile('^Change-Id: *(.*)') 42 RE_COMMIT_TAG = re.compile('^Commit-([a-z-]*): *(.*)') 48 RE_COMMIT = re.compile('^commit ([0-9a-f]*)$') 51 RE_SPACE_BEFORE_TAB = re.compile('^[+].* \t') 54 RE_LEADING_WHITESPACE = re.compile(r'^\s') [all …]
|
A D | commit.py | 9 re_subject_tag = re.compile('([^:\s]*):\s*(.*)')
|
/u-boot/doc/sphinx/ |
A D | automarkup.py | 33 RE_function = re.compile(r'\b(([a-zA-Z_]\w+)\(\))', flags=ascii_p3) 38 RE_generic_type = re.compile(r'\b(struct|union|enum|typedef)\s+([a-zA-Z_]\w+)', 45 RE_struct = re.compile(r'\b(struct)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 46 RE_union = re.compile(r'\b(union)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 47 RE_enum = re.compile(r'\b(enum)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 48 RE_typedef = re.compile(r'\b(typedef)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 54 RE_doc = re.compile(r'\bDocumentation(/[\w\-_/]+)(\.\w+)*') 56 RE_namespace = re.compile(r'^\s*..\s*c:namespace::\s*(\S+)\s*$')
|
A D | cdomain.py | 58 RE_namespace = re.compile(r'^\s*..\s*c:namespace::\s*(\S+)\s*$') 70 RE_macro = re.compile(r'^\s*..\s*c:macro::\s*(\S+)\s+(\S.*)\s*$') 78 RE_ctype = re.compile(r'^\s*..\s*c:(struct|union|enum|enumerator|alias)::\s*(.*)$') 87 RE_ctype_refs = re.compile(r':c:(var|struct|union|enum|enumerator)::`([^\`]+)`') 94 RE_expr = re.compile(r':c:(expr|texpr):`([^\`]+)`')
|
/u-boot/test/py/ |
A D | u_boot_console_base.py | 19 pattern_u_boot_spl_signon = re.compile('(U-Boot SPL \\d{4}\\.\\d{2}[^\r\n]*\\))') 20 pattern_u_boot_spl2_signon = re.compile('(U-Boot SPL \\d{4}\\.\\d{2}[^\r\n]*\\))') 21 pattern_u_boot_main_signon = re.compile('(U-Boot \\d{4}\\.\\d{2}[^\r\n]*\\))') 22 pattern_stop_autoboot_prompt = re.compile('Hit any key to stop autoboot: ') 23 pattern_unknown_command = re.compile('Unknown command \'.*\' - try \'help\'') 24 pattern_error_notification = re.compile('## Error: ') 25 pattern_error_please_reset = re.compile('### ERROR ### Please RESET the board ###') 110 self.prompt_compiled = re.compile('^' + re.escape(self.prompt), re.MULTILINE)
|
A D | u_boot_spawn.py | 45 self.re_vt100 = re.compile(r'(\x1b\[|\x9b)[^@-_]*[@-_]|\x1b[@-_]', re.I) 136 patterns[pi] = re.compile(patterns[pi])
|
/u-boot/doc/build/ |
A D | clang.rst | 4 The biggest problem when trying to compile U-Boot with Clang is that almost all 16 support. Boards which reassign gd in c will also fail to compile, but there is 32 CROSS_COMPILE. To compile U-Boot with Clang on Linux without IAS use e.g. 40 It can also be used to compile sandbox: 59 The following commands compile U-Boot using the Clang xdev toolchain.
|
/u-boot/tools/ |
A D | zynqmp_pm_cfg_obj_convert.py | 255 num_re = re.compile(r"^([0-9]+)U?$") 256 const_re = re.compile(r"^([A-Z_][A-Z0-9_]*)$")
|
A D | microcode-tool | 49 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 50 re_license = re.compile('/[^-*+] *(.*)$') 51 re_name = re.compile('/\* *(.*)\.inc *\*/', re.IGNORECASE)
|
A D | microcode-tool.py | 49 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 50 re_license = re.compile('/[^-*+] *(.*)$') 51 re_name = re.compile('/\* *(.*)\.inc *\*/', re.IGNORECASE)
|
A D | moveconfig.py | 574 pattern = re.compile(r'^\s*#\s*if.*$\n^\s*#\s*endif.*$\n*', flags=re.M) 615 pattern_if = re.compile(r'#\s*if(def|ndef)?\W') # #if, #ifdef, #ifndef 616 pattern_elif = re.compile(r'#\s*el(if|se)\W') # #elif, #else 617 pattern_endif = re.compile(r'#\s*endif\W') # #endif 618 pattern_blank = re.compile(r'^\s*$') # empty line 661 patterns.append(re.compile(r'#\s*define\s+%s\W' % config)) 662 patterns.append(re.compile(r'#\s*undef\s+%s\W' % config)) 781 patterns.append(re.compile(r'^\s+%s' % config)) 865 re_arch = re.compile(r'CONFIG_SYS_ARCH="(.*)"') 866 re_cpu = re.compile(r'CONFIG_SYS_CPU="(.*)"')
|
/u-boot/doc/ |
A D | README.ublimage | 26 You can generate the image directly when you compile u-boot with: 79 compile steps: 81 1) nand_spl code compile, with pad_to = (TEXT_BASE + 88 2) compile u-boot.bin ("normal" u-boot)
|
A D | README.marvell | 4 This document describes how to compile the U-Boot and how to change U-Boot configuration 34 For the Armada-70x0/80x0 DB board compile u-boot and set the required device-tree using: 46 For other DB boards (MacchiatoBin, EspressoBin and 3700 DB board) compile u-boot with
|
A D | README.kconfig | 113 Define CONFIG_SYS_CPU="cpu" to compile arch/<arch>/cpu/<cpu> 114 Define CONFIG_SYS_SOC="soc" to compile arch/<arch>/cpu/<cpu>/<soc> 115 Define CONFIG_SYS_VENDOR="vendor" to compile board/<vendor>/common/* 117 Define CONFIG_SYS_BOARD="board" to compile board/<board>/*
|
A D | README.s5pc1xx | 15 While ARM Cortex-A8 support ARM v7 instruction set (-march=armv7a) we compile
|
A D | README.ubispl | 20 The maximum physical erase block size. Either a compile time 25 The maximum physical erase block count. Either a compile time
|
/u-boot/tools/binman/test/ |
A D | Makefile | 14 $(error Binman tests need to compile to x86, but the CPU arch of your \
|
/u-boot/scripts/dtc/pylibfdt/ |
A D | setup.py | 27 RE_KEY_VALUE = re.compile('(?P<key>\w+) *(?P<plus>[+])?= *(?P<value>.*)$')
|
/u-boot/test/py/tests/ |
A D | test_ums.py | 140 u_boot_console.wait_for(re.compile('UMS: LUN.*[\r\n]'))
|
/u-boot/board/freescale/ls1021atsn/ |
A D | README.rst | 46 To compile and flash an SD card image:: 60 To compile and flash a U-Boot image for QSPI::
|
/u-boot/doc/board/emulation/ |
A D | qemu-riscv.rst | 32 This will compile U-Boot for machine mode. To build supervisor mode binaries, 83 its location with the OPENSBI environment variable. Afterwards, compile U-Boot
|
/u-boot/tools/buildman/ |
A D | toolchain.py | 38 self.re_arch = re.compile('[-_]%s-' % arch) 425 re_var = re.compile('(\$\{[-_a-z0-9A-Z]{1,}\})') 580 re_arch = re.compile('[-a-z0-9.]*[-_]([^-]*)-.*')
|
/u-boot/fs/jffs2/ |
A D | LICENCE | 21 macros or inline functions from these files, or you compile these
|
/u-boot/doc/arch/ |
A D | sh.rst | 74 You can use the following of u-boot to compile.
|
Completed in 30 milliseconds
1234