/external/v8/src/compiler/ |
H A D | operation-typer.h | 65 ComparisonOutcome Invert(ComparisonOutcome); 66 Type* Invert(Type*);
|
H A D | typer.cc | 261 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 D | dng_color_spec.cpp | 58 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 D | dng_matrix.h | 293 dng_matrix Invert (const dng_matrix &A); 295 dng_matrix Invert (const dng_matrix &A,
|
H A D | dng_camera_profile.cpp | 233 Invert (xyz.AsDiagonal ()) * 767 (void) Invert (fColorMatrix1, 775 (void) Invert (fColorMatrix1); 805 (void) Invert (fColorMatrix2, 813 (void) Invert (fColorMatrix2);
|
H A D | dng_matrix.cpp | 1017 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 D | dng_shared.cpp | 3197 (void) Invert (fCameraCalibration1); 3241 (void) Invert (fCameraCalibration2); 3272 (void) Invert (analogBalance);
|
/external/skia/src/gpu/ |
H A D | GrBlend.cpp | 27 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 D | pixelstore.c | 98 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 D | GrShapeTest.cpp | 156 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 D | intel_pixel_read.c | 106 /* 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 D | cpdf_formcontrol.h | 47 enum HighlightingMode { None = 0, Invert, Outline, Push, Toggle }; enumerator in enum:CPDF_FormControl::HighlightingMode
|
H A D | cpdf_formcontrol.cpp | 191 return Invert; 198 return Invert;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | intel_pixel_draw.c | 99 /* Mesa flips the src_stride for unpack->Invert, but we want our mt to have 102 if (unpack->Invert) {
|
H A D | intel_pixel_read.c | 106 pack->Invert)
|
H A D | intel_tex_subimage.c | 115 packing->Invert)
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
H A D | radeon_pixel_read.c | 153 if (pack->Invert) {
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
H A D | radeon_pixel_read.c | 153 if (pack->Invert) {
|
/external/llvm/lib/Target/Lanai/ |
H A D | LanaiInstrInfo.cpp | 502 bool Invert = !DefMI; local 509 MachineOperand FalseReg = MI.getOperand(Invert ? 1 : 2); 526 if (Invert)
|
H A D | LanaiISelLowering.cpp | 1295 // * 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 D | PPCISelDAGToDAG.cpp | 577 /// 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 D | SystemZISelLowering.h | 570 bool Invert) const; 576 bool Invert = false) const;
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | StructurizeCFG.cpp | 200 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 D | virtualsocketserver.h | 189 static Function* Invert(Function* f);
|
/external/libchrome/crypto/ |
H A D | p224.cc | 243 // 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);
|