/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/ |
H A D | 0002-Constant-Fix-up-shebang.patch | 4 Subject: [PATCH] Constant: Fix up shebang 14 cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm | 2 +- 17 diff --git a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm b/cpan/ExtUtils-Constant/lib/ExtUti… 19 --- a/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm 20 +++ b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm 27 use ExtUtils::Constant qw (constant_types C_constant XS_constant);
|
H A D | 0001-cpan-Sys-Syslog-Makefile.PL-Fix-_PATH_LOG-for-determ.patch | 33 # ExtUtils::Constant, otherwise use cached copy in fallback/
|
/openbmc/linux/tools/perf/pmu-events/ |
H A D | metric.py | 87 return Constant(1 if val else 0) 89 return Constant(val) 164 if isinstance(lhs, Constant) and isinstance(rhs, Constant): 165 return Constant(ast.literal_eval(lhs + self.operator + rhs)) 167 if isinstance(self.lhs, Constant): 175 return Constant(0) 180 if isinstance(rhs, Constant): 185 return Constant(0) 232 if isinstance(cond, Constant): 279 if isinstance(lhs, Constant) and isinstance(rhs, Constant): [all …]
|
H A D | metric_test.py | 4 from metric import Constant 26 one = Constant(1)
|
/openbmc/u-boot/doc/device-tree-bindings/exynos/ |
H A D | tmu.txt | 14 - samsung,efuse-min-value : SOC efuse min value (Constant 40) 19 - samsung,efuse-max-value : SoC max efuse value (Constant 100) 21 - samsung,slope : Default value 274761730 (Constant 0x1060_8802). 25 - samsung,dc-value : Measured data calibration value (Constant 25)
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/openl2tp/openl2tp/ |
H A D | openl2tp-simplify-gcc-warning-hack.patch | 29 -#error Constant L2TP_API_TUNNEL_FLAG_MTU changed. Update local definition here. 34 -#error Constant L2TP_API_SESSION_FLAG_NO_PPP changed. Update local definition here.
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | codeparser.py | 276 if isinstance(node.args[0], ast.Constant) and isinstance(node.args[0].value, str): 278 if name in self.containsfuncs and isinstance(node.args[1], ast.Constant): 282 elif name in self.containsanyfuncs and isinstance(node.args[1], ast.Constant): 287 if isinstance(node.args[1], ast.Constant): 296 if isinstance(node.args[0], ast.Constant): 307 if isinstance(node.args[0], ast.Constant):
|
/openbmc/u-boot/scripts/ |
H A D | checkpatch.pl | 401 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int}; 789 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)}; 1833 } elsif ($cur =~ /^($Ident|$Constant)/o) { 4653 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) { 4841 while ($line =~ m{($Constant|$Lval)}g) { 4856 if ($var !~ /^$Constant$/ && 4986 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), 4987 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); 4988 …$dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // f… 4992 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo [all …]
|
/openbmc/qemu/python/qemu/qmp/ |
H A D | qmp_shell.py | 163 return ast.Constant(value=True) 165 return ast.Constant(value=False) 167 return ast.Constant(value=None)
|
H A D | qmp_tui.py | 56 (Token.Keyword.Constant, '', '', '', '#6af', 'g7'),
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/jack/jack/ |
H A D | 0001-Conceal-imp-warnings-in-Python3.patch | 34 """Constant updated on new releases"""
|
/openbmc/linux/scripts/ |
H A D | checkpatch.pl | 539 our $Constant = qr{$Float|$Binary|$Octal|$Hex|$Int}; 1080 our $FuncArg = qr{$Typecast{0,1}($LvalOrFunc|$Constant|$String)}; 2208 } elsif ($cur =~ /^($Ident|$Constant)/o) { 5625 $line =~ /^\+(.*)\b($Constant|[A-Z_][A-Z0-9_]*)\s*($Compare)\s*($LvalOrFunc)/) { 5849 while ($line =~ m{($Constant|$Lval)}g) { 5853 if ($var !~ /^$Constant$/ && 5989 $dstat !~ /^(?:$Ident|-?$Constant),$/ && # 10, // foo(), 5990 $dstat !~ /^(?:$Ident|-?$Constant);$/ && # foo(); 5991 …$dstat !~ /^[!~-]?(?:$Lval|$Constant)$/ && # 10 // foo() // !foo // ~foo // -foo // foo->bar // f… 5995 $dstat !~ /^(?:\#\s*$Ident|\#\s*$Constant)\s*$/ && # stringification #foo [all …]
|
/openbmc/qemu/scripts/ |
H A D | checkpatch.pl | 265 our $Constant = qr{(?:[0-9]+|0x[0-9a-fA-F]+)[UL]*}; 1181 } elsif ($cur =~ /^($Ident|$Constant)/o) { 2571 $value !~ /(?:$Ident|-?$Constant)\s* 2573 (?:$Ident|-?$Constant)/x && 2577 if ($value =~ /^\s*(?:$Ident|-?$Constant)\s*$/ && 2809 $dstat !~ /^(?:$Ident|-?$Constant)$/ &&
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | qa.py | 194 if isinstance(args[0], ast.Constant) and isinstance(args[0].value, str):
|
/openbmc/linux/Documentation/arch/arm64/ |
H A D | amu.rst | 30 - Constant counter: increments at the fixed frequency of the system
|
/openbmc/linux/Documentation/arch/arm/ |
H A D | tcm.rst | 112 /* Constant */
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/ |
H A D | 0016-libsparse-Add-hole-mode-to-sparse_file_read.patch | 55 + * @SPARSE_READ_MODE_NORMAL: The input is a regular file. Constant chunks of
|
/openbmc/linux/Documentation/translations/zh_CN/kernel-hacking/ |
H A D | hacking.rst | 583 - 非常量(Non-Constant)初始化程序
|
/openbmc/linux/lib/ |
H A D | Kconfig | 440 Constant value for Galois field order 'm'. If 'k' is the 449 Constant value for error correction capability in bits 't'.
|
/openbmc/linux/Documentation/input/devices/ |
H A D | iforce-protocol.rst | 99 Val 00 Constant
|
/openbmc/linux/Documentation/kbuild/ |
H A D | kconfig-language.rst | 276 Constant symbols are only part of expressions. Constant symbols are
|
/openbmc/linux/Documentation/arch/loongarch/ |
H A D | introduction.rst | 36 ``$r0`` ``$zero`` Constant zero Unused
|
/openbmc/linux/drivers/scsi/aic7xxx/ |
H A D | aic7xxx_reg.h_shipped | 901 /* Downloaded Constant Definitions */
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-codec.rst | 576 - Constant bitrate 578 - Constant quality 591 Constant quality level control. This control is applicable when
|
/openbmc/phosphor-logging/docs/ |
H A D | structured-logging.md | 152 - Constant C-strings (`"a string"`) should be passed as a C++ literal
|