Searched refs:Invert (Results 1 - 25 of 68) sorted by relevance

123

/external/v8/src/compiler/
H A Doperation-typer.h65 ComparisonOutcome Invert(ComparisonOutcome);
66 Type* Invert(Type*);
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);
/external/dng_sdk/source/
H A Ddng_color_spec.cpp58 dng_matrix_3by3 B = Invert (Mb) * A * Mb;
449 dng_matrix individualToReference = Invert (fAnalogBalance * cameraCalibration);
454 Invert (refCameraWhite.AsDiagonal ()) *
464 // Invert this PCS to camera matrix. Note that if there are more than three
467 fCameraToPCS = Invert (fPCStoCamera, reductionMatrix);
538 dng_xy_coord next = XYZtoXY (Invert (xyzToCamera) * neutral);
H A Ddng_matrix.h293 dng_matrix Invert (const dng_matrix &A);
295 dng_matrix Invert (const dng_matrix &A,
H A Ddng_camera_profile.cpp233 Invert (xyz.AsDiagonal ()) *
767 (void) Invert (fColorMatrix1,
775 (void) Invert (fColorMatrix1);
805 (void) Invert (fColorMatrix2,
813 (void) Invert (fColorMatrix2);
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;
H A Ddng_shared.cpp3197 (void) Invert (fCameraCalibration1);
3241 (void) Invert (fCameraCalibration2);
3272 (void) Invert (analogBalance);
/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/mesa3d/src/mesa/main/
H A Dpixelstore.c98 ctx->Pack.Invert = param;
246 ctx->Pack.Invert = GL_FALSE;
261 ctx->Unpack.Invert = GL_FALSE;
283 ctx->DefaultPacking.Invert = GL_FALSE;
/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/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_pixel_read.c106 /* Mesa flips the dst_stride for pack->Invert, but we want our mt to have a
109 if (pack->Invert) {
/external/pdfium/core/fpdfdoc/
H A Dcpdf_formcontrol.h47 enum HighlightingMode { None = 0, Invert, Outline, Push, Toggle }; enumerator in enum:CPDF_FormControl::HighlightingMode
H A Dcpdf_formcontrol.cpp191 return Invert;
198 return Invert;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_pixel_draw.c99 /* Mesa flips the src_stride for unpack->Invert, but we want our mt to have
102 if (unpack->Invert) {
H A Dintel_pixel_read.c106 pack->Invert)
H A Dintel_tex_subimage.c115 packing->Invert)
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_pixel_read.c153 if (pack->Invert) {
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_pixel_read.c153 if (pack->Invert) {
/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/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/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h570 bool Invert) const;
576 bool Invert = false) const;
/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/webrtc/webrtc/base/
H A Dvirtualsocketserver.h189 static Function* Invert(Function* f);
/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);

Completed in 1229 milliseconds

123