Searched defs:Invert (Results 1 - 25 of 32) sorted by relevance

12

/external/skia/src/gpu/
H A DGrBlend.cpp27 static MaskedColor Invert(const MaskedColor& in) { function in class:MaskedColor
91 return MaskedColor::Mul(MaskedColor::Invert(dst), value);
99 return MaskedColor::Mul(MaskedColor::Invert(src), value);
/external/dng_sdk/source/
H A Ddng_matrix.cpp1017 dng_matrix Invert (const dng_matrix &A) function
1048 return Invert (B * A) * B;
1056 dng_matrix Invert (const dng_matrix &A, function
1065 return Invert (A);
1074 return Invert (hint * A) * hint;
/external/pdfium/core/fpdfdoc/
H A Dcpdf_formcontrol.h47 enum HighlightingMode { None = 0, Invert, Outline, Push, Toggle }; enumerator in enum:CPDF_FormControl::HighlightingMode
/external/libchrome/crypto/
H A Dp224.cc243 // Invert calcuates *out = in**-1 by computing in**(2**224 - 2**96 - 1), i.e.
245 void Invert(FieldElement* out, const FieldElement& in) { function in namespace:__anon10267
691 Invert(&zinv, this->z);
732 Invert(&zinv, in.z);
/external/llvm/lib/Target/Lanai/
H A DLanaiInstrInfo.cpp502 bool Invert = !DefMI; local
509 MachineOperand FalseReg = MI.getOperand(Invert ? 1 : 2);
526 if (Invert)
H A DLanaiISelLowering.cpp1295 // * Invert is set when N is the all zero/ones constant when CC is false.
1299 // * X = 0, Invert = False and OtherOp = Y
1300 // * Y = 0, Invert = True and OtherOp = X
1302 bool &Invert, SDValue &OtherOp,
1312 Invert = false;
1317 Invert = true;
1333 Invert = true;
1342 Invert = !AllOnes;
1301 isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, SDValue &CC, bool &Invert, SDValue &OtherOp, SelectionDAG &DAG) argument
/external/python/cpython2/Lib/compiler/
H A Dast.py743 class Invert(Node): class in inherits:Node
755 return "Invert(%s)" % (repr(self.expr),)
/external/v8/src/compiler/
H A Doperation-typer.cc984 Type* OperationTyper::Invert(Type* type) { function in class:v8::internal::compiler::OperationTyper
992 OperationTyper::ComparisonOutcome OperationTyper::Invert( function in class:v8::internal::compiler::OperationTyper
H A Dtyper.cc261 static ComparisonOutcome Invert(ComparisonOutcome, Typer*);
262 static Type* Invert(Type*, Typer*);
390 Type* Typer::Visitor::Invert(Type* type, Typer* t) { function in class:v8::internal::compiler::Typer::Visitor
399 Typer::Visitor::ComparisonOutcome Typer::Visitor::Invert( function in class:v8::internal::compiler::Typer::Visitor
889 return Invert(JSEqualTyper(lhs, rhs, t), t);
925 return Invert(JSStrictEqualTyper(lhs, rhs, t), t);
982 return FalsifyUndefined(Invert(JSCompareTyper(rhs, lhs, t), t), t);
988 return FalsifyUndefined(Invert(JSCompareTyper(lhs, rhs, t), t), t);
H A Dwasm-compiler.cc576 return Invert(Binop(wasm::kExprI32Eq, left, right));
647 return Invert(Binop(wasm::kExprI64Eq, left, right));
702 return Invert(Binop(wasm::kExprF32Eq, left, right));
733 return Invert(Binop(wasm::kExprF64Eq, left, right));
2373 Node* WasmGraphBuilder::Invert(Node* node) { function in class:v8::internal::compiler::WasmGraphBuilder
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp912 bool Invert = false; local
924 Invert = true;
932 Invert = true;
950 if (Invert)
/external/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp200 Value *buildCondition(BranchInst *Term, unsigned Idx, bool Invert);
377 /// \brief Invert the given condition
417 bool Invert) {
418 Value *Cond = Invert ? BoolFalse : BoolTrue;
422 if (Idx != (unsigned)Invert)
416 buildCondition(BranchInst *Term, unsigned Idx, bool Invert) argument
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp791 bool Invert = false; local
803 Invert = true;
811 Invert = true;
829 if (Invert)
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp577 /// two simpler comparisons. In this case, Invert is guaranteed to be false.
578 static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert, int &Other) { argument
579 Invert = false;
591 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
593 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
595 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
596 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
/external/python/cpython2/Include/
H A DPython-ast.h22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator in enum:_unaryop
/external/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp1182 Node Invert(Node Node) { function in class:IceBuilder
1184 llvm::report_fatal_error("Invert");
/external/webrtc/webrtc/base/
H A Dvirtualsocketserver.cc993 return Resample(Invert(Accumulate(f)), 0, 1, samples);
1029 VirtualSocketServer::Function* VirtualSocketServer::Invert(Function* f) { function in class:rtc::VirtualSocketServer
/external/skia/tests/
H A DGrShapeTest.cpp156 enum class Invert { kNo, kYes }; class in class:__anon18465::PathGeo
158 PathGeo(const SkPath& path, Invert invert) : fPath(path) {
160 if (Invert::kYes == invert) {
226 Invert invert)
232 Invert invert)
1795 for (PathGeo::Invert invert : {PathGeo::Invert::kNo, PathGeo::Invert::kYes}) {
1853 PathGeo::Invert::kNo));
1855 PathGeo::Invert
[all...]
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp1893 bool Invert = !DefMI; local
1900 MachineOperand FalseReg = MI.getOperand(Invert ? 2 : 1);
1918 if (Invert)
H A DARMISelLowering.cpp3049 // Invert the bits.
4872 bool Invert = false; local
4894 case ISD::SETNE: Invert = true; // Fallthrough
4906 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
4908 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
4909 case ISD::SETUEQ: Invert = true; // Fallthrough
4918 case ISD::SETUO: Invert = true; // Fallthrough
4932 case ISD::SETNE: Invert = true;
4961 Invert = !Invert;
8604 isConditionalZeroOrAllOnes(SDNode *N, bool AllOnes, SDValue &CC, bool &Invert, SDValue &OtherOp, SelectionDAG &DAG) argument
[all...]
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp2120 static unsigned getCRIdxForSetCC(ISD::CondCode CC, bool &Invert) { argument
2121 Invert = false;
2132 case ISD::SETGE: Invert = true; return 0; // !Bit #0 = SETUGE
2134 case ISD::SETLE: Invert = true; return 1; // !Bit #1 = SETULE
2136 case ISD::SETNE: Invert = true; return 2; // !Bit #2 = SETUNE
2137 case ISD::SETO: Invert = true; return 3; // !Bit #3 = SETO
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1607 bool Invert = false; local
1610 Invert = true;
1612 assert(EndBB == BI->getSuccessor(!Invert) && "No edge from to end block");
1732 if (Invert)
1765 if (Invert)
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1174 bool &Invert) {
1175 Invert = false;
1182 Invert = true; // Fallthrough
1194 Invert = true;
9648 static SDValue getTestBitOperand(SDValue Op, unsigned &Bit, bool &Invert, argument
9662 return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
9679 return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
9687 return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
9696 return getTestBitOperand(Op->getOperand(0), Bit, Invert, DAG);
9702 return getTestBitOperand(Op->getOperand(0), Bit, Invert, DA
1171 changeVectorFPCCToAArch64CC(ISD::CondCode CC, AArch64CC::CondCode &CondCode, AArch64CC::CondCode &CondCode2, bool &Invert) argument
9719 bool Invert = false; local
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp2338 // Invert the bits.
3432 bool Invert = false; local
3447 case ISD::SETNE: Invert = true; // Fallthrough
3459 case ISD::SETULE: Invert = true; Opc = ARMISD::VCGT; break;
3461 case ISD::SETULT: Invert = true; Opc = ARMISD::VCGE; break;
3462 case ISD::SETUEQ: Invert = true; // Fallthrough
3471 case ISD::SETUO: Invert = true; // Fallthrough
3485 case ISD::SETNE: Invert = true;
3514 Invert = !Invert;
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp6382 // Invert the operand order and use SHUFPS to match it.
8404 bool Invert = (CC == ISD::SETNE) ^ local
8406 if (!Invert) return Op0;
8536 bool Swap = false, Invert = false, FlipSigns = false; local
8548 case ISD::SETNE: Invert = true;
8553 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8557 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8585 if (Invert)
12808 if (NeedsCondInvert) // Invert the condition if needed.
12822 if (NeedsCondInvert) // Invert th
[all...]

Completed in 2923 milliseconds

12