Filtering by Comparison
Specify arithmetic comparisons to a constant value with the following format:
operator value
where operator is either a C/C++ or Fortran-style comparison operator, and value is a signed or unsigned integer constant, or a floating-point number. The following table lists the comparison operators.
Comparison |
C/C++ Operator |
Fortran Operator |
Equal |
== |
.eq. |
Not equal |
!= |
.ne. |
Less than |
< |
.lt. |
Less than or equal |
<= |
.le. |
Greater than |
> |
.gt. |
Greater than or equal |
>= |
.ge. |
The following figure shows an array whose filter is "< 0". This indicates that TotalView should only display array elements whose value is less than 0 (zero).
Array Data Filtering by Comparison 
|
If the value you are using in the comparison is an integer constant, TotalView uses a signed comparison. If you add a u or U to the constant, TotalView performs an unsigned comparison.