Searched refs:compare (Results 251 - 265 of 265) sorted by relevance

<<11

/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp615 if (int Cmp = Mnemonic.compare(RHS.Mnemonic))
672 // there is a pair of operands that compare less than and a pair that
673 // compare greater than.
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp927 // Sink the load to where the compare was, if atomic rules allow us to.
2617 return AStripped->getName().compare(BStripped->getName());
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp5855 // type safe since unordered compare builtins are declared as "_Bool
10168 //===--- CHECK: Integer mixed-sign comparisons (-Wsign-compare) --------===//
10685 ComparisonResult compare(const llvm::APSInt &Value) const { function in struct:__anon3154::PromotedRange
10689 assert(Value.isUnsigned() && "discontiguous range for signed compare");
10708 llvm_unreachable("impossible compare result");
10823 auto Cmp = OtherPromotedRange.compare(Value);
10897 /// Implements -Wsign-compare.
10986 // If the signed range is non-negative, -Wsign-compare won't fire.
12028 // Traditionally, gcc has warned about this under -Wsign-compare.
12031 // in the sign-compare grou
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DDriver.cpp1655 return A.compare(B) > 0;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp8387 // FIXME: We can compare the bytes in the correct order.
11044 // Empty substrings compare equal by definition.
11114 // FIXME: We can compare the remaining bytes in the correct order.
11780 LHS.getComplexFloatReal().compare(RHS.getComplexFloatReal());
11782 LHS.getComplexFloatImag().compare(RHS.getComplexFloatImag());
11806 switch (LHS.compare(RHS)) {
11840 // A constant address may compare equal to the address of a symbol.
11841 // The one exception is that address of an object cannot compare equal
11857 // We can't compare the address of the start of one object with the
11940 // compare pointer
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp8009 // Non-local address space requires custom lowering for atomic compare
9102 APFloat::cmpResult Cmp = K0->getValueAPF().compare(K1->getValueAPF());
9967 APFloat::cmpResult Cmp0 = F.compare(Zero);
9975 APFloat::cmpResult Cmp1 = F.compare(One);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp3034 if (LHSName.compare(RHSName) < 0)
/freebsd-12-stable/contrib/amd/doc/
H A Dtexinfo.tex8046 % But, this being TeX, we can't easily compare our node name against the
8861 % to compare them with \ifx.
/freebsd-12-stable/contrib/binutils/
H A DMakefile.in[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2077 APFloat::cmpResult R = N1CFP->getValueAPF().compare(N2CFP->getValueAPF());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp186 "scalar-evolution-max-scev-compare-depth", cl::Hidden,
196 "scalar-evolution-max-value-compare-depth", cl::Hidden,
618 return LGV->getName().compare(RGV->getName());
621 // For instructions, compare their loop depth, and their operand count. This
726 // Lexicographically compare.
747 // Lexicographically compare n-ary expressions.
767 // Lexicographically compare udiv expressions.
4325 /// This class evaluates the compare condition by matching it against the
8553 /// Helper function to compare optional APInts:
10131 // If we compare tw
[all...]
/freebsd-12-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-type-util.h67 if (s.compare(0, strlen(prefix), prefix) == 0) {
/freebsd-12-stable/lib/clang/liblldb/
H A DLLDBWrapLua.cpp580 int compare = strcmp(name, iname); local
581 if (compare == 0) {
583 } else if (compare < 0) {
589 } else if (compare > 0) {
1808 /* lua callable function to compare userdata's value
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4256 // In ARM and Thumb-2, the compare instructions can shift their second
4661 // to swap the compare operands.
4671 // returns true, so we also swap the compare operands. It also switches
5015 // If softenSetCCOperands only returned one value, we should compare it to
5030 // swap the operands of the previous compare instruction (effectively
5031 // inverting the compare condition, swapping 'less' and 'greater') and
5057 // Normalize the fp compare. If RHS is zero we prefer to keep it there so we
5092 /// canChangeToInt - Given the fp compare operand, return true if it is suitable
5093 /// to morph to an integer compare sequence.
5258 // If softenSetCCOperands only returned one value, we should compare i
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp2178 // If we got a 512-bit vector then we'll definitely have a vXi1 compare.
2184 // compare for vXi32/vXi64 for sure. If we have BWI we will also support
5071 // a floating-point compare and we have blendv or conditional move, then it is
5073 // load that depends on the compare result.
9642 // SSE41 can compare v2i64 - select between indices 0 and 1.
20841 // Only promote the compare up to I32 if it is a 16 bit operation
21251 "Cannot set masked compare for this operation");
21388 // TODO: We could use following steps to handle a quiet compare with
21392 // 3. Get the compare results of masked A, B
21411 // In the two cases not handled by SSE compare predicate
[all...]

Completed in 586 milliseconds

<<11