/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | parse.py | 65 B[flag] = "3" 68 unset B[flag] 75 self.assertEqual(d.getVarFlag("A","flag"), None) 82 A[flag_set_vs_question] = "set flag" 83 A[flag_set_vs_question] ?= "question flag" 85 A[flag_set_vs_default] = "set flag" 86 A[flag_set_vs_default] ??= "default flag" 88 A[flag_question] ?= "question flag" 90 A[flag_default] ??= "default flag" 92 A[flag_question_vs_default] ?= "question flag" [all …]
|
/openbmc/u-boot/drivers/bios_emulator/include/x86emu/ |
H A D | regs.h | 178 /* flag conditions */ 179 #define FB_CF 0x0001 /* CARRY flag */ 180 #define FB_PF 0x0004 /* PARITY flag */ 181 #define FB_AF 0x0010 /* AUX flag */ 182 #define FB_ZF 0x0040 /* ZERO flag */ 183 #define FB_SF 0x0080 /* SIGN flag */ 184 #define FB_TF 0x0100 /* TRAP flag */ 185 #define FB_IF 0x0200 /* INTERRUPT ENABLE flag */ 186 #define FB_DF 0x0400 /* DIR flag */ 187 #define FB_OF 0x0800 /* OVERFLOW flag */ [all …]
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | maketype.py | 8 Types are defined in the metadata by name, using the 'type' flag on a 20 """A particular flag is required to construct the type, but has not been 22 def __init__(self, flag, type): argument 23 self.flag = flag 28 return "Type '%s' requires flag '%s'" % (self.type, self.flag) 46 for flag in obj.flags: 47 if flag not in flags: 48 if flag not in obj.optflags: 49 raise MissingFlag(flag, var_type) 51 objflags[flag] = flags[flag]
|
H A D | types.py | 17 str(). Set the variable type flag to 'list' to use this type, and the 18 'separator' flag may be specified (defaulting to whitespace).""" 40 type flag to 'choice', and set the 'choices' flag to a space separated 81 expression pattern object. To use this type, set the variable type flag 89 for flag in regexflags.split(): 90 flag = flag.upper() 92 flagval |= getattr(re, flag) 94 raise ValueError("Invalid regex flag '%s'" % flag) 134 'numberbase' flag.""" 142 To use this type, set the type flag to 'float', and optionally set the [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/libtool/libtool/ |
H A D | 0002-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch | 29 - eval flag=\"$hardcode_libdir_flag_spec\" 30 - func_append dep_rpath " $flag" 37 + *) eval flag=\"$hardcode_libdir_flag_spec\" 38 + func_append dep_rpath " $flag" 48 - eval flag=\"$hardcode_libdir_flag_spec\" 49 - func_append rpath " $flag" 56 + *) eval flag=\"$hardcode_libdir_flag_spec\" 57 + rpath+=" $flag" 67 - eval flag=\"$hardcode_libdir_flag_spec\" 68 - func_append rpath " $flag" [all …]
|
/openbmc/u-boot/arch/riscv/lib/ |
H A D | bootm.c | 55 * Call remove function of all devices with a removal flag set. in announce_and_cleanup() 80 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument 83 int fake = (flag & BOOTM_STATE_OS_FAKE_GO); in boot_jump_linux() 100 int do_bootm_linux(int flag, int argc, char * const argv[], in do_bootm_linux() argument 104 if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE) in do_bootm_linux() 107 if (flag & BOOTM_STATE_OS_PREP) { in do_bootm_linux() 112 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { in do_bootm_linux() 113 boot_jump_linux(images, flag); in do_bootm_linux() 118 boot_jump_linux(images, flag); in do_bootm_linux() 122 int do_bootm_vxworks(int flag, int argc, char * const argv[], in do_bootm_vxworks() argument [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
H A D | 0010-sync-with-OE-libtool-changes.patch | 36 - eval flag=\"$hardcode_libdir_flag_spec\" 37 - func_append dep_rpath " $flag" 44 + *) eval flag=\"$hardcode_libdir_flag_spec\" 45 + func_append dep_rpath " $flag" 55 - eval flag=\"$hardcode_libdir_flag_spec\" 56 - func_append rpath " $flag" 63 + *) eval flag=\"$hardcode_libdir_flag_spec\" 64 + rpath+=" $flag" 74 - eval flag=\"$hardcode_libdir_flag_spec\" 75 - func_append rpath " $flag" [all …]
|
/openbmc/u-boot/arch/x86/include/asm/ |
H A D | processor-flags.h | 8 #define X86_EFLAGS_CF 0x00000001 /* Carry Flag */ 9 #define X86_EFLAGS_PF 0x00000004 /* Parity Flag */ 10 #define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Flag */ 11 #define X86_EFLAGS_ZF 0x00000040 /* Zero Flag */ 12 #define X86_EFLAGS_SF 0x00000080 /* Sign Flag */ 13 #define X86_EFLAGS_TF 0x00000100 /* Trap Flag */ 14 #define X86_EFLAGS_IF 0x00000200 /* Interrupt Flag */ 15 #define X86_EFLAGS_DF 0x00000400 /* Direction Flag */ 16 #define X86_EFLAGS_OF 0x00000800 /* Overflow Flag */ 19 #define X86_EFLAGS_RF 0x00010000 /* Resume Flag */ [all …]
|
/openbmc/u-boot/arch/arm/cpu/armv7/bcm235xx/ |
H A D | clk-core.h | 84 * Utility macros for object flag management. If possible, flags 87 #define FLAG(type, flag) BCM_CLK_ ## type ## _FLAGS_ ## flag argument 88 #define FLAG_SET(obj, type, flag) ((obj)->flags |= FLAG(type, flag)) argument 89 #define FLAG_CLEAR(obj, type, flag) ((obj)->flags &= ~(FLAG(type, flag))) argument 90 #define FLAG_FLIP(obj, type, flag) ((obj)->flags ^= FLAG(type, flag)) argument 91 #define FLAG_TEST(obj, type, flag) (!!((obj)->flags & FLAG(type, flag))) argument 180 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ 181 FLAG(GATE, SW_MANAGED)|FLAG(GATE, ENABLED)| \ 182 FLAG(GATE, EXISTS), \ 192 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ [all …]
|
/openbmc/u-boot/arch/arm/cpu/armv7/bcm281xx/ |
H A D | clk-core.h | 84 * Utility macros for object flag management. If possible, flags 87 #define FLAG(type, flag) BCM_CLK_ ## type ## _FLAGS_ ## flag argument 88 #define FLAG_SET(obj, type, flag) ((obj)->flags |= FLAG(type, flag)) argument 89 #define FLAG_CLEAR(obj, type, flag) ((obj)->flags &= ~(FLAG(type, flag))) argument 90 #define FLAG_FLIP(obj, type, flag) ((obj)->flags ^= FLAG(type, flag)) argument 91 #define FLAG_TEST(obj, type, flag) (!!((obj)->flags & FLAG(type, flag))) argument 180 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ 181 FLAG(GATE, SW_MANAGED)|FLAG(GATE, ENABLED)| \ 182 FLAG(GATE, EXISTS), \ 192 .flags = FLAG(GATE, HW)|FLAG(GATE, SW)| \ [all …]
|
/openbmc/u-boot/arch/sandbox/include/asm/ |
H A D | getopt.h | 15 * Internal structure for storing details about the flag. 22 /* The long flag name: "help" for "--help" */ 23 const char *flag; member 24 /* The (optional) short flag name: "h" for "-h" */ 28 /* Whether this flag takes an argument */ 40 .flag = #f, \ 55 * @param f The long flag name e.g. help 56 * @param ha Does the flag have an argument e.g. 0/1 61 * Will create a new flag named "--foo" (no short option) that takes 67 * Same as above, but @s is used to specify a short flag e.g.
|
/openbmc/u-boot/include/test/ |
H A D | suites.h | 26 int do_ut_bloblist(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]); 27 int do_ut_compression(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]); 28 int do_ut_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 29 int do_ut_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 30 int do_ut_lib(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 31 int do_ut_overlay(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 32 int do_ut_time(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 33 int do_ut_unicode(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
|
/openbmc/openbmc/poky/meta/recipes-devtools/go/go/ |
H A D | 0007-exec.go-filter-out-build-specific-paths-from-linker-.patch | 30 + for i, flag := range flags { 35 …flag, "--sysroot") || strings.HasPrefix(flag, "-fmacro-prefix-map") || strings.HasPrefix(flag, "-f… 37 + } else if strings.HasPrefix(flag, "-extldflags") { 39 + newflags = append(newflags, flag) 43 + newflags = append(newflags, flag)
|
/openbmc/u-boot/cmd/ |
H A D | fs.c | 13 static int do_size_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_size_wrapper() argument 15 return do_size(cmdtp, flag, argc, argv, FS_TYPE_ANY); in do_size_wrapper() 26 static int do_load_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, in do_load_wrapper() argument 33 return do_load(cmdtp, flag, argc, argv, FS_TYPE_ANY); in do_load_wrapper() 48 static int do_save_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, in do_save_wrapper() argument 51 return do_save(cmdtp, flag, argc, argv, FS_TYPE_ANY); in do_save_wrapper() 65 static int do_ls_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, in do_ls_wrapper() argument 68 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_ANY); in do_ls_wrapper() 79 static int do_fstype_wrapper(cmd_tbl_t *cmdtp, int flag, int argc, in do_fstype_wrapper() argument 82 return do_fs_type(cmdtp, flag, argc, argv); in do_fstype_wrapper()
|
H A D | host.c | 15 static int do_host_load(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_load() argument 18 return do_load(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); in do_host_load() 21 static int do_host_ls(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_ls() argument 24 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); in do_host_ls() 27 static int do_host_size(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_size() argument 30 return do_size(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); in do_host_size() 33 static int do_host_save(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_save() argument 36 return do_save(cmdtp, flag, argc, argv, FS_TYPE_SANDBOX); in do_host_save() 39 static int do_host_bind(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_bind() argument 55 static int do_host_info(cmd_tbl_t *cmdtp, int flag, int argc, in do_host_info() argument [all …]
|
H A D | ext4.c | 44 int do_ext4_size(cmd_tbl_t *cmdtp, int flag, int argc, in do_ext4_size() argument 47 return do_size(cmdtp, flag, argc, argv, FS_TYPE_EXT); in do_ext4_size() 50 int do_ext4_load(cmd_tbl_t *cmdtp, int flag, int argc, in do_ext4_load() argument 53 return do_load(cmdtp, flag, argc, argv, FS_TYPE_EXT); in do_ext4_load() 56 int do_ext4_ls(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) in do_ext4_ls() argument 58 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_EXT); in do_ext4_ls() 62 int do_ext4_write(cmd_tbl_t *cmdtp, int flag, int argc, in do_ext4_write() argument 65 return do_save(cmdtp, flag, argc, argv, FS_TYPE_EXT); in do_ext4_write()
|
H A D | fat.c | 21 int do_fat_size(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_fat_size() argument 23 return do_size(cmdtp, flag, argc, argv, FS_TYPE_FAT); in do_fat_size() 34 int do_fat_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_fat_fsload() argument 36 return do_load(cmdtp, flag, argc, argv, FS_TYPE_FAT); in do_fat_fsload() 55 static int do_fat_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_fat_ls() argument 57 return do_ls(cmdtp, flag, argc, argv, FS_TYPE_FAT); in do_fat_ls() 67 static int do_fat_fsinfo(cmd_tbl_t *cmdtp, int flag, int argc, in do_fat_fsinfo() argument 100 static int do_fat_fswrite(cmd_tbl_t *cmdtp, int flag, in do_fat_fswrite() argument 155 static int do_fat_rm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) in do_fat_rm() argument 157 return do_rm(cmdtp, flag, argc, argv, FS_TYPE_FAT); in do_fat_rm() [all …]
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | list-packageconfig-flags.py | 75 # flag_dict = {'flag': ['pkg1', 'pkg2',...]} 78 for flag in flaglist: 79 if flag in flag_dict: 80 flag_dict[flag].append(pkgname) 82 flag_dict[flag] = [pkgname] 103 flag_len = len("PACKAGECONFIG FLAG") + 5 105 header = '%-*s%s' % (flag_len, str("PACKAGECONFIG FLAG"), str("RECIPE NAMES")) 109 for flag in sorted(flag_dict): 110 print('%-*s%s' % (flag_len, flag, ' '.join(sorted(flag_dict[flag])))) 123 for flag,flag_val in data_dict[fn].getVarFlags("PACKAGECONFIG").items(): [all …]
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | bitbake-getvar | 27 …parser.add_argument('-f', '--flag', help='Specify a variable flag to query (with --value)', defaul… 37 if args.flag: 38 sys.exit("--flag only makes sense with --value") 55 if args.flag: 56 value = d.getVarFlag(args.variable, args.flag, expand=not args.unexpand) 58 sys.exit(f"The flag '{args.flag}' is not defined for variable '{args.variable}'")
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/ |
H A D | add-64-bit-flag-for-ELF64-entries.patch | 4 Subject: [PATCH] Add 64-bit flag for ELF64 entries. 7 lacks neccessary 64bit flag in entries. 25 @@ -121,6 +121,10 @@ print_entry (const char *lib, int flag, unsigned int osversion, 67 @@ -290,6 +295,48 @@ process_elf_file64 (const char *file_name, const char *lib, int *flag, 69 *flag = FLAG_ELF; 78 + *flag |= FLAG_IA64_LIB64|FLAG_ELF_LIBC6; 83 + *flag |= FLAG_X8664_LIB64|FLAG_ELF_LIBC6; 88 + *flag |= FLAG_S390_LIB64|FLAG_ELF_LIBC6; 93 + *flag |= FLAG_POWERPC_LIB64|FLAG_ELF_LIBC6; 100 + *flag |= FLAG_MIPS64_LIBN64|FLAG_ELF_LIBC6; [all …]
|
/openbmc/u-boot/arch/arc/lib/ |
H A D | bootm.c | 73 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument 77 int fake = (flag & BOOTM_STATE_OS_FAKE_GO); in boot_jump_linux() 103 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) in do_bootm_linux() argument 106 if ((flag & BOOTM_STATE_OS_BD_T) || (flag & BOOTM_STATE_OS_CMDLINE)) in do_bootm_linux() 109 if (flag & BOOTM_STATE_OS_PREP) in do_bootm_linux() 112 if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) { in do_bootm_linux() 113 boot_jump_linux(images, flag); in do_bootm_linux()
|
/openbmc/u-boot/drivers/rtc/ |
H A D | imxdi.c | 39 #define DSR_WBF (1 << 10) /* Write Busy Flag */ 40 #define DSR_WNF (1 << 9) /* Write Next Flag */ 41 #define DSR_WCF (1 << 8) /* Write Complete Flag */ 42 #define DSR_WEF (1 << 7) /* Write Error Flag */ 43 #define DSR_CAF (1 << 4) /* Clock Alarm Flag */ 44 #define DSR_NVF (1 << 1) /* Non-Valid Flag */ 45 #define DSR_SVF (1 << 0) /* Security Violation Flag */ 62 * This function attempts to clear the dryice write-error flag. 65 * normal operation. Clearing the flag requires another write, so the root 66 * cause of the problem may need to be fixed before the flag can be cleared. [all …]
|
/openbmc/qemu/scripts/ |
H A D | hxtool | 5 flag=1 10 SRST*|ERST*) flag=$(($flag^1)) 13 test $flag -eq 1 && printf "%s\n" "$str"
|
/openbmc/u-boot/include/ |
H A D | command.h | 58 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 63 flag, int argc, char * const argv[]); 73 int cmd_always_repeatable(cmd_tbl_t *cmdtp, int flag, int argc, 75 int cmd_never_repeatable(cmd_tbl_t *cmdtp, int flag, int argc, 77 int cmd_discard_repeatable(cmd_tbl_t *cmdtp, int flag, int argc, 106 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 118 extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 121 extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 130 extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); 132 extern int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); [all …]
|
/openbmc/u-boot/common/ |
H A D | bootm_os.c | 17 static int do_bootm_standalone(int flag, int argc, char * const argv[], in do_bootm_standalone() argument 53 static int do_bootm_netbsd(int flag, int argc, char * const argv[], in do_bootm_netbsd() argument 61 if (flag != BOOTM_STATE_OS_GO) in do_bootm_netbsd() 125 static int do_bootm_lynxkdi(int flag, int argc, char * const argv[], in do_bootm_lynxkdi() argument 130 if (flag != BOOTM_STATE_OS_GO) in do_bootm_lynxkdi() 147 static int do_bootm_rtems(int flag, int argc, char * const argv[], in do_bootm_rtems() argument 152 if (flag != BOOTM_STATE_OS_GO) in do_bootm_rtems() 180 static int do_bootm_ose(int flag, int argc, char * const argv[], in do_bootm_ose() argument 185 if (flag != BOOTM_STATE_OS_GO) in do_bootm_ose() 213 static int do_bootm_plan9(int flag, int argc, char * const argv[], in do_bootm_plan9() argument [all …]
|