Home
last modified time | relevance | path

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

12

/Linux-v6.6/tools/perf/util/
Dbpf-filter.l26 static int operator(enum perf_bpf_filter_op op) in operator() function
99 "==" { return operator(PBF_OP_EQ); }
100 "!=" { return operator(PBF_OP_NEQ); }
101 ">" { return operator(PBF_OP_GT); }
102 "<" { return operator(PBF_OP_LT); }
103 ">=" { return operator(PBF_OP_GE); }
104 "<=" { return operator(PBF_OP_LE); }
105 "&" { return operator(PBF_OP_AND); }
/Linux-v6.6/scripts/coccinelle/misc/
Dminmax.cocci23 binary operator cmp = {>, >=};
38 binary operator cmp = {>, >=};
56 binary operator cmp = {<, <=};
71 binary operator cmp = {<, <=};
89 binary operator cmp = {>=, >};
104 binary operator cmp = {>=, >};
124 binary operator cmp = {<, <=};
137 binary operator cmp = {<=, <};
153 binary operator cmp = {<=, <};
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-v6.6/tools/perf/pmu-events/
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-v6.6/kernel/trace/
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()
Dtrace_dynevent.h142 char operator; /* e.g. '=' or nothing */ member
147 char operator, char separator);
/Linux-v6.6/Documentation/devicetree/bindings/powerpc/opal/
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-v6.6/drivers/of/unittest-data/
Doverlay.dtso42 hvac-zone-names = "operator", "snack-bar";
Doverlay_common.dtsi54 hvac-zone-names = "operator";
/Linux-v6.6/Documentation/kbuild/
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-v6.6/scripts/coccinelle/tests/
Ddoubletest.cocci33 assignment operator op;
/Linux-v6.6/scripts/kconfig/tests/preprocess/variable/
DKconfig30 # Use += operator to an undefined variable.
/Linux-v6.6/drivers/scsi/
Dscript_asm.pl163 $operator = '\||OR|AND|\&|\+';
166 $operator = '\||OR|AND|XOR|\&|\+';
514 /^($register)\s+(-|$operator)\s+($value)\s*$/i) {
/Linux-v6.6/Documentation/trace/
Dfprobetrace.rst112 You can access the data fields of a data structure using allow operator ``->``
113 (for pointer type) and dot operator ``.`` (for data structure type.)::
138 support, you don't need a memory dereference operator (``+0(PTR)``) for
140 dereference operator according to the BTF type. e.g. ::
/Linux-v6.6/Documentation/arch/s390/
Dcommon_io.rst34 operator). The '!' operator will cause the I/O-layer to _not_ ignore a device.
Dzfcpdump.rst16 the s390-tools package) to make the device bootable. The operator of a Linux
/Linux-v6.6/scripts/coccinelle/api/
Dkvmalloc.cocci26 binary operator cmp = {<=, <, ==, >, >=};
88 binary operator cmp = {<=, <, ==, >, >=};
/Linux-v6.6/drivers/staging/fieldbus/Documentation/
Dfieldbus_dev.txt13 Human Machine Interface (HMI) at the top, where an operator can monitor or
/Linux-v6.6/drivers/char/tpm/
Dtpm.h115 u8 operator; member
/Linux-v6.6/Documentation/admin-guide/
Dbootconfig.rst74 If you want to update the value, you must use the override operator
85 you can use ``+=`` operator. For example::
/Linux-v6.6/drivers/char/
DKconfig127 will be created which exposes the operator panel display on IBM
130 If you don't require access to the operator panel display from user
/Linux-v6.6/Documentation/scsi/
Dscsi-changer.rst38 i.e. there the operator (you !) can use this to
/Linux-v6.6/scripts/
Dcheckpatch.pl3915 my $operator = $1;
3920 $fixed[$fixlinenr - 1] .= " $operator";
3921 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
3927 my $operator = $1;
3934 $fixed[$fixlinenr - 1] =~ s/\Q$line_end\E$/ $operator$line_end/;
3935 $fixed[$fixlinenr] =~ s/\Q$operator\E\s*//;
/Linux-v6.6/Documentation/process/
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-v6.6/Documentation/PCI/
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.

12