Home
last modified time | relevance | path

Searched refs:operator (Results 1 – 25 of 38) 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.py115 def __init__(self, operator: str, lhs: Union[int, float, Expression],
117 self.operator = operator
145 if _PRECEDENCE.get(self.operator, -1) > _PRECEDENCE.get(
146 other.operator, -1):
148 if rhs and _PRECEDENCE.get(self.operator, -1) == _PRECEDENCE.get(
149 other.operator, -1):
165 return Constant(ast.literal_eval(lhs + self.operator + rhs))
168 if self.operator in ('+', '|') and lhs.value == '0':
173 if self.operator == '*' and lhs.value == '0' and (
177 if self.operator == '*' and lhs.value == '1':
[all …]
/linux/kernel/trace/
H A Dtrace_dynevent.c349 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add()
353 arg_pair->operator, arg_pair->rhs, in dynevent_arg_pair_add()
455 char operator, char separator) in dynevent_arg_pair_init() argument
459 if (!operator) in dynevent_arg_pair_init()
460 operator = ' '; in dynevent_arg_pair_init()
461 arg_pair->operator = operator; in dynevent_arg_pair_init()
H A Dtrace_dynevent.h142 char operator; /* e.g. '=' or nothing */ member
147 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.:
/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/
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/admin-guide/
H A Dbootconfig.rst74 If you want to update the value, you must use the override operator
85 you can use ``+=`` operator. For example::
/linux/Documentation/scsi/
H A Dscsi-changer.rst38 i.e. there the operator (you !) can use this to
/linux/Documentation/process/
H A Ddeprecated.rst286 sizeof() operator to a zero-length array always results in zero::
309 operator may not be applied <https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html>`_,
/linux/scripts/
H A Dcheckpatch.pl3929 my $operator = $1;
3934 $fixed[$fixlinenr - 1] .= " $operator";
3935 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3941 my $operator = $1;
3948 $fixed[$fixlinenr - 1] =~ s/\Q$line_end\E$/ $operator$line_end/;
3949 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
/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/PCI/
H A Dpci-error-recovery.rst360 The platform will typically notify the system operator of the
362 the operator will probably want to remove and replace the device.
/linux/tools/perf/Documentation/
H A Dperf-record.txt197 <term> <operator> <value> (("," | "||") <term> <operator> <value>)*
205 The <operator> can be one of:

12