Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 35) sorted by relevance

12

/linux/tools/perf/util/
H A Dbpf-filter.l38 static int operator(enum perf_bpf_filter_op op) in operator() function
120 "==" { return operator(PBF_OP_EQ); }
121 "!=" { return operator(PBF_OP_NEQ); }
122 ">" { return operator(PBF_OP_GT); }
123 "<" { return operator(PBF_OP_LT); }
124 ">=" { return operator(PBF_OP_GE); }
125 "<=" { return operator(PBF_OP_LE); }
126 "&" { return operator(PBF_OP_AND); }
/linux/scripts/coccinelle/misc/
H A Dminmax.cocci23 binary operator cmp = {>, >=};
38 binary operator cmp = {>, >=};
58 binary operator cmp = {<, <=};
71 binary operator cmp = {<, <=};
86 binary operator cmp = {<, <=};
104 binary operator cmp = {>=, >};
119 binary operator cmp = {>=, >};
137 binary operator cmp = {<=, <};
153 binary operator cmp = {<=, <};
H A Darray_size_dup.cocci29 assignment operator aop;
58 assignment operator aop;
94 assignment operator aop;
124 assignment operator aop;
158 assignment operator aop;
186 assignment operator aop;
/linux/tools/perf/pmu-events/
H A Dmetric.py230 def __init__(self, operator: str, lhs: Union[int, float, Expression],
232 self.operator = operator
260 if _PRECEDENCE.get(self.operator, -1) > _PRECEDENCE.get(
261 other.operator, -1):
263 if rhs and _PRECEDENCE.get(self.operator, -1) == _PRECEDENCE.get(
264 other.operator, -1):
280 return Constant(ast.literal_eval(lhs + self.operator + rhs))
283 if self.operator in ('+', '|') and lhs.value == '0':
288 if self.operator == '*' and lhs.value == '0' and (
292 if self.operator == '*' and lhs.value == '1':
[all …]
/linux/Documentation/translations/zh_CN/rust/
H A Dtesting.rst90 …用 `? <https://doc.rust-lang.org/reference/expressions/operator-expr.html#the-question-mark-operato…
119 …用 `? <https://doc.rust-lang.org/reference/expressions/operator-expr.html#the-question-mark-operato…
156 …持 `? <https://doc.rust-lang.org/reference/expressions/operator-expr.html#the-question-mark-operato…
/linux/kernel/trace/
H A Dtrace_dynevent.c365 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add()
369 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add()
471 char operator, char separator) in dynevent_arg_pair_init() argument
475 if (!operator) in dynevent_arg_pair_init()
476 operator = ' '; in dynevent_arg_pair_init()
477 arg_pair->operator = operator; in dynevent_arg_pair_init()
H A Dtrace_dynevent.h143 char operator; /* e.g. '=' or nothing */ member
148 char operator, char separator);
/linux/Documentation/devicetree/bindings/powerpc/opal/
H A Doppanel-opal.txt6 - #lines : Number of lines on the operator panel e.g. <0x2>.
7 - #length : Number of characters per line of the operator panel e.g. <0x10>.
/linux/Documentation/rust/
H A Dtesting.rst93 …e `? <https://doc.rust-lang.org/reference/expressions/operator-expr.html#the-question-mark-operato…
94 operator are also supported as usual, e.g.:
128 using ``unwrap()`` or ``expect()``, use the ``?`` operator. For more background,
170 `? <https://doc.rust-lang.org/reference/expressions/operator-expr.html#the-question-mark-operator>`_
171 operator is supported, i.e. the test functions may return either nothing (i.e.
/linux/drivers/of/unittest-data/
H A Doverlay.dtso42 hvac-zone-names = "operator", "snack-bar";
H A Doverlay_common.dtsi54 hvac-zone-names = "operator";
/linux/Documentation/kbuild/
H A Dkconfig-macro-language.rst62 A simply expanded variable is defined using the := assignment operator. Its
66 A recursively expanded variable is defined using the = assignment operator.
71 There is another type of assignment operator; += is used to append text to a
85 function is defined using the = assignment operator. The parameters are
/linux/drivers/scsi/
H A Dscript_asm.pl163 $operator = '\||OR|AND|\&|\+';
166 $operator = '\||OR|AND|XOR|\&|\+';
514 /^($register)\s+(-|$operator)\s+($value)\s*$/i) {
/linux/scripts/coccinelle/tests/
H A Ddoubletest.cocci33 assignment operator op;
/linux/scripts/kconfig/tests/preprocess/variable/
H A DKconfig30 # Use += operator to an undefined variable.
/linux/Documentation/trace/rv/
H A Dlinear_temporal_logic.rst54 This grammar is ambiguous: operator precedence is not defined. Parentheses must
78 verification, the `always` operator is usually desirable, to specify that
/linux/Documentation/trace/
H A Dfprobetrace.rst124 You can access the data fields of a data structure using allow operator ``->``
125 (for pointer type) and dot operator ``.`` (for data structure type.)::
150 support, you don't need a memory dereference operator (``+0(PTR)``) for
152 dereference operator according to the BTF type. e.g. ::
/linux/scripts/coccinelle/api/
H A Dkvmalloc.cocci26 binary operator cmp = {<=, <, ==, >, >=};
88 binary operator cmp = {<=, <, ==, >, >=};
/linux/Documentation/arch/s390/
H A Dcommon_io.rst34 operator). The '!' operator will cause the I/O-layer to _not_ ignore a device.
H A Dzfcpdump.rst16 the s390-tools package) to make the device bootable. The operator of a Linux
/linux/Documentation/scsi/
H A Dscsi-changer.rst38 i.e. there the operator (you !) can use this to
/linux/scripts/
H A Dcheckpatch.pl3970 my $operator = $1;
3972 "Assignment operator '$1' should be on the previous line\n" . $hereprev) &&
3974 # add assignment operator to the previous line, remove from current line
3975 $fixed[$fixlinenr - 1] .= " $operator";
3976 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3982 my $operator = $1;
3986 # insert logical operator at last non-comment, non-whitepsace char on previous line
3989 $fixed[$fixlinenr - 1] =~ s/\Q$line_end\E$/ $operator$line_end/;
3990 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
5120 # Check operator spacin
[all...]
/linux/Documentation/wmi/devices/
H A Dmsi-wmi-platform.rst131 Due to a peculiarity in how Windows handles the ``CreateByteField()`` ACPI operator (errors only
/linux/Documentation/networking/
H A Dgtp.rst32 At some network element inside the cellular operator infrastructure
/linux/tools/perf/Documentation/
H A Dperf-record.txt201 <term> <operator> <value> (("," | "||") <term> <operator> <value>)*
209 The <operator> can be one of:

12