Lines Matching full:than
65 …S_STRING>, b:<JS_ARRAY>)`), thus the secondary types will be more precise than initially set at th…
380 …* `0010` `UGT`: interprets the operands as unsigned values and yields true if op1 is greater than …
381 …* `0011` `UGE`: interprets the operands as unsigned values and yields true if op1 is greater than …
382 …* `0100` `ULT`: interprets the operands as unsigned values and yields true if op1 is less than op2.
383 …* `0101` `ULE`: interprets the operands as unsigned values and yields true if op1 is less than or …
385 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op…
386 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or…
387 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2.
388 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq…
406 * `0010` `OGT`: ordered and greater than
407 * `0011` `OGE`: ordered and greater than or equal
408 * `0100` `OLT`: ordered and less than
409 * `0101` `OLE`: ordered and less than or equal
414 * `1010` `UGT`: unordered or greater than
415 * `1011` `UGE`: unordered or greater than or equal
416 * `1100` `ULT`: unordered or less than
417 * `1101` `ULE`: unordered or less than or equal