/linux/tools/perf/util/ |
H A D | bpf-filter.l | 38 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 D | minmax.cocci | 23 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 D | array_size_dup.cocci | 29 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 D | metric.py | 115 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 D | trace_dynevent.c | 349 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 D | trace_dynevent.h | 142 char operator; /* e.g. '=' or nothing */ member 147 char operator, char separator);
|
/linux/Documentation/devicetree/bindings/powerpc/opal/ |
H A D | oppanel-opal.txt | 6 - #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 D | testing.rst | 93 …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 D | overlay.dtso | 42 hvac-zone-names = "operator", "snack-bar";
|
H A D | overlay_common.dtsi | 54 hvac-zone-names = "operator";
|
/linux/Documentation/kbuild/ |
H A D | kconfig-macro-language.rst | 62 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 D | script_asm.pl | 163 $operator = '\||OR|AND|\&|\+'; 166 $operator = '\||OR|AND|XOR|\&|\+'; 514 /^($register)\s+(-|$operator)\s+($value)\s*$/i) {
|
/linux/scripts/coccinelle/tests/ |
H A D | doubletest.cocci | 33 assignment operator op;
|
/linux/scripts/kconfig/tests/preprocess/variable/ |
H A D | Kconfig | 30 # Use += operator to an undefined variable.
|
/linux/Documentation/trace/ |
H A D | fprobetrace.rst | 124 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 D | kvmalloc.cocci | 26 binary operator cmp = {<=, <, ==, >, >=}; 88 binary operator cmp = {<=, <, ==, >, >=};
|
/linux/Documentation/arch/s390/ |
H A D | common_io.rst | 34 operator). The '!' operator will cause the I/O-layer to _not_ ignore a device.
|
H A D | zfcpdump.rst | 16 the s390-tools package) to make the device bootable. The operator of a Linux
|
/linux/Documentation/admin-guide/ |
H A D | bootconfig.rst | 74 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 D | scsi-changer.rst | 38 i.e. there the operator (you !) can use this to
|
/linux/Documentation/process/ |
H A D | deprecated.rst | 286 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 D | checkpatch.pl | 3929 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 D | msi-wmi-platform.rst | 131 Due to a peculiarity in how Windows handles the ``CreateByteField()`` ACPI operator (errors only
|
/linux/Documentation/PCI/ |
H A D | pci-error-recovery.rst | 360 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 D | perf-record.txt | 197 <term> <operator> <value> (("," | "||") <term> <operator> <value>)* 205 The <operator> can be one of:
|