Home
last modified time | relevance | path

Searched defs:float (Results 1 – 4 of 4) sorted by relevance

/linux/tools/perf/pmu-events/
H A Dmetric.py150 def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
153 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
156 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
159 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
162 def __rand__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
165 def __lt__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
168 def __gt__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
171 def __add__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
174 def __radd__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
177 def __sub__(self, other: Union[int, float, 'Expression']) -> 'Operator': argument
[all …]
/linux/tools/perf/tests/shell/lib/
H A Dperf_metric_validation.py11 …def __init__(self, metric: list[str], wl: str, value: list[float], low: float, up=float('nan'), de…
/linux/tools/perf/python/
H A Dilist.py235 def __init__(self, interval: float) -> None:
/linux/rust/proc-macro2/
H A Dparse.rs713 fn float(input: Cursor) -> Result<Cursor, Reject> { in float() function