Searched refs:operator (Results 1 – 4 of 4) sorted by relevance
38 static int operator(enum perf_bpf_filter_op op) in operator() function120 "==" { 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); }
117 self.operator = operator146 other.operator, -1):149 other.operator, -1):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':184 if self.operator == '*' and rhs.value == '0':187 if self.operator == '*' and self.rhs.value == '1':190 return Operator(self.operator, lhs, rhs)194 return self.operator == other.operator and self.lhs.Equals([all …]
201 <term> <operator> <value> (("," | "||") <term> <operator> <value>)*209 The <operator> can be one of:
167 operator rather than an assignment. The "/\" character combination means171 with the C-language "~" operator which instead stands for "bitwise not".
Completed in 9 milliseconds