Home
last modified time | relevance | path

Searched refs:Constant (Results 1 – 25 of 42) sorted by relevance

12

/openbmc/openbmc/poky/meta/recipes-devtools/perl/files/
H A D0002-Constant-Fix-up-shebang.patch4 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 D0001-cpan-Sys-Syslog-Makefile.PL-Fix-_PATH_LOG-for-determ.patch33 # ExtUtils::Constant, otherwise use cached copy in fallback/
/openbmc/linux/tools/perf/pmu-events/
H A Dmetric.py87 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 Dmetric_test.py4 from metric import Constant
26 one = Constant(1)
/openbmc/u-boot/doc/device-tree-bindings/exynos/
H A Dtmu.txt14 - 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 Dopenl2tp-simplify-gcc-warning-hack.patch29 -#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 Dcodeparser.py276 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 Dcheckpatch.pl401 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 Dqmp_shell.py163 return ast.Constant(value=True)
165 return ast.Constant(value=False)
167 return ast.Constant(value=None)
H A Dqmp_tui.py56 (Token.Keyword.Constant, '', '', '', '#6af', 'g7'),
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-multimedia/jack/jack/
H A D0001-Conceal-imp-warnings-in-Python3.patch34 """Constant updated on new releases"""
/openbmc/linux/scripts/
H A Dcheckpatch.pl539 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 Dcheckpatch.pl265 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 Dqa.py194 if isinstance(args[0], ast.Constant) and isinstance(args[0].value, str):
/openbmc/linux/Documentation/arch/arm64/
H A Damu.rst30 - Constant counter: increments at the fixed frequency of the system
/openbmc/linux/Documentation/arch/arm/
H A Dtcm.rst112 /* Constant */
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0016-libsparse-Add-hole-mode-to-sparse_file_read.patch55 + * @SPARSE_READ_MODE_NORMAL: The input is a regular file. Constant chunks of
/openbmc/linux/Documentation/translations/zh_CN/kernel-hacking/
H A Dhacking.rst583 - 非常量(Non-Constant)初始化程序
/openbmc/linux/lib/
H A DKconfig440 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 Diforce-protocol.rst99 Val 00 Constant
/openbmc/linux/Documentation/kbuild/
H A Dkconfig-language.rst276 Constant symbols are only part of expressions. Constant symbols are
/openbmc/linux/Documentation/arch/loongarch/
H A Dintroduction.rst36 ``$r0`` ``$zero`` Constant zero Unused
/openbmc/linux/drivers/scsi/aic7xxx/
H A Daic7xxx_reg.h_shipped901 /* Downloaded Constant Definitions */
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dext-ctrls-codec.rst576 - Constant bitrate
578 - Constant quality
591 Constant quality level control. This control is applicable when
/openbmc/phosphor-logging/docs/
H A Dstructured-logging.md152 - Constant C-strings (`"a string"`) should be passed as a C++ literal

12