Home
last modified time | relevance | path

Searched refs:inverted (Results 1 – 25 of 241) sorted by relevance

12345678910

/external/mesa3d/src/mesa/state_tracker/
Dst_cb_condrender.c59 boolean inverted = FALSE; in st_BeginConditionalRender() local
78 inverted = TRUE; in st_BeginConditionalRender()
82 inverted = TRUE; in st_BeginConditionalRender()
86 inverted = TRUE; in st_BeginConditionalRender()
90 inverted = TRUE; in st_BeginConditionalRender()
97 cso_set_render_condition(st->cso_context, stq->pq, inverted, m); in st_BeginConditionalRender()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/model/content/
DMask.java17 private final boolean inverted; field in Mask
19 …skMode maskMode, AnimatableShapeValue maskPath, AnimatableIntegerValue opacity, boolean inverted) { in Mask() argument
23 this.inverted = inverted; in Mask()
39 return inverted; in isInverted()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_conditional_render.c96 bool inverted) in set_predicate_for_result() argument
114 if (inverted) in set_predicate_for_result()
135 bool inverted; in brw_begin_conditional_render() local
142 inverted = false; in brw_begin_conditional_render()
148 inverted = true; in brw_begin_conditional_render()
159 set_predicate_enable(brw, (query->Base.Result != 0) ^ inverted); in brw_begin_conditional_render()
161 set_predicate_for_result(brw, query, inverted); in brw_begin_conditional_render()
/external/skia/src/gpu/geometry/
DGrStyledShape.h86 GrStyledShape(const SkRRect& rrect, SkPathDirection dir, unsigned start, bool inverted,
91 fShape.setInverted(inverted); in fShape()
154 bool asRRect(SkRRect* rrect, SkPathDirection* dir, unsigned* start, bool* inverted) const;
160 bool asLine(SkPoint pts[2], bool* inverted) const;
212 SkASSERT(!fShape.isPath() || fShape.inverted() == fShape.path().isInverseFillType()); in inverseFilled()
214 SkASSERT(!(fShape.inverted() && this->style().isDashed())); in inverseFilled()
215 return fShape.inverted(); in inverseFilled()
DGrStyledShape.cpp46 bool newIsInverted = is_inverted(original.fShape.inverted(), inversion); in MakeFilled()
47 if (original.style().isSimpleFill() && newIsInverted == original.fShape.inverted()) { in MakeFilled()
200 SkASSERT(fShape.inverted() == fShape.path().isInverseFillType()); in writeUnstyledKey()
426 bool* inverted) const { in asRRect()
500 if (inverted) { in asRRect()
501 *inverted = fShape.inverted(); in asRRect()
507 bool GrStyledShape::asLine(SkPoint pts[2], bool* inverted) const { in asLine()
516 if (inverted) { in asLine()
517 *inverted = fShape.inverted(); in asLine()
570 : fShape(shape), fInverted(!style.isDashed() && fShape->inverted()) {} in AutoRestoreInverseness()
DGrShape.h98 bool inverted() const { in inverted() function
118 void setInverted(bool inverted) { in setInverted() argument
120 if (inverted != fPath.isInverseFillType()) { in setInverted()
124 fInverted = inverted; in setInverted()
/external/autotest/frontend/client/src/autotest/tko/
DSeriesSelector.java187 List<String> inverted = new ArrayList<String>(); in getInverted() local
190 inverted.add(s.getName()); in getInverted()
193 return inverted; in getInverted()
214 List<String> inverted = getInverted(); in addToHistory() local
215 if (!inverted.isEmpty()) { in addToHistory()
216 args.put("inverted", Utils.joinStrings(",", inverted)); in addToHistory()
222 Set<String> inverted = new HashSet<String>(); in handleHistoryArguments() local
225 inverted.add(s); in handleHistoryArguments()
238 thisSeries.setInverted(inverted.contains(thisSeries.getName())); in handleHistoryArguments()
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dwinograd_util.cc57 std::vector<float> inverted(rank * rank, 0.0f); in GetInversedMatrixForWinograd() local
59 inverted[i * rank + i] = 1.0f; in GetInversedMatrixForWinograd()
68 inverted[i * rank + x] *= inv_t; in GetInversedMatrixForWinograd()
78 inverted[y * rank + x] -= t * inverted[i * rank + x]; in GetInversedMatrixForWinograd()
83 return inverted; in GetInversedMatrixForWinograd()
/external/iproute2/tc/
Dm_ematch.h61 int inverted; member
68 static inline struct ematch * new_ematch(struct bstr *args, int inverted) in new_ematch() argument
76 e->inverted = inverted; in new_ematch()
/external/skqp/src/gpu/ops/
DGrDashLinePathRenderer.cpp19 bool inverted; in onCanDrawPath() local
20 if (args.fShape->style().isDashed() && args.fShape->asLine(pts, &inverted)) { in onCanDrawPath()
25 SkASSERT(!inverted); in onCanDrawPath()
/external/skia/src/gpu/ops/
DGrDashLinePathRenderer.cpp19 bool inverted; in onCanDrawPath() local
20 if (args.fShape->style().isDashed() && args.fShape->asLine(pts, &inverted)) { in onCanDrawPath()
22 SkASSERT(!inverted); in onCanDrawPath()
/external/lottie/lottie/src/main/java/com/airbnb/lottie/parser/
DMaskParser.java21 boolean inverted = false; in parse()
55 inverted = reader.nextBoolean(); in parse()
63 return new Mask(maskMode, maskPath, opacity, inverted); in parse()
/external/skia/modules/canvaskit/htmlcanvas/
Dcanvas2dcontext.js713 var inverted = CanvasKit.Matrix.invert(this._currentTransform);
714 CanvasKit.Matrix.mapPoints(inverted, pts);
831 var inverted = CanvasKit.Matrix.invert(this._currentTransform);
834 this._canvas.concat(inverted);
852 var inverted = CanvasKit.Matrix.invert(this._currentTransform);
853 this._canvas.concat(inverted);
900 var inverted = CanvasKit.Matrix.rotated(-radians);
901 this._currentPath.transform(inverted);
948 var inverted = CanvasKit.Matrix.scaled(1/sx, 1/sy);
949 this._currentPath.transform(inverted);
[all …]
/external/skqp/src/gpu/
DGrShape.h64 GrShape(const SkRRect& rrect, SkPath::Direction dir, unsigned start, bool inverted, in GrShape() argument
69 fRRectData.fInverted = inverted; in GrShape()
163 bool asRRect(SkRRect* rrect, SkPath::Direction* dir, unsigned* start, bool* inverted) const { in asRRect() argument
176 if (inverted) { in asRRect()
177 *inverted = fRRectData.fInverted; in asRRect()
186 bool asLine(SkPoint pts[2], bool* inverted) const { in asLine() argument
194 if (inverted) { in asLine()
195 *inverted = fLineData.fInverted; in asLine()
DGrShape.cpp514 bool inverted = this->path().isInverseFillType(); in attemptToSimplifyPath() local
518 this->changeType(inverted && !this->style().isDashed() ? Type::kInvertedEmpty in attemptToSimplifyPath()
524 fLineData.fInverted = inverted; in attemptToSimplifyPath()
530 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
536 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
545 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
559 fRRectData.fInverted = inverted; in attemptToSimplifyPath()
759 bool inverted = fLineData.fInverted && !fStyle.hasPathEffect(); in attemptToSimplifyStrokedLineToRRect() local
762 fRRectData.fInverted = inverted; in attemptToSimplifyStrokedLineToRRect()
/external/skqp/experimental/canvaskit/htmlcanvas/
Dcanvas2dcontext.js726 var inverted = CanvasKit.SkMatrix.invert(this._currentTransform);
727 CanvasKit.SkMatrix.mapPoints(inverted, pts);
843 var inverted = CanvasKit.SkMatrix.invert(this._currentTransform);
846 this._canvas.concat(inverted);
864 var inverted = CanvasKit.SkMatrix.invert(this._currentTransform);
865 this._canvas.concat(inverted);
914 var inverted = CanvasKit.SkMatrix.rotated(-radians);
915 this._currentPath.transform(inverted);
964 var inverted = CanvasKit.SkMatrix.scaled(1/sx, 1/sy);
965 this._currentPath.transform(inverted);
[all …]
/external/skia/tests/
DGrStyledShapeTest.cpp290 GrStyledShape inverted = GrStyledShape::MakeFilled( in test_inversions() local
293 make_key(&invertedKey, inverted); in test_inversions()
307 check_equivalence(r, preserve, inverted, preserveKey, invertedKey); in test_inversions()
311 check_equivalence(r, flip, inverted, flipKey, invertedKey); in test_inversions()
1669 auto index = [](bool inverted, in test_rrect()
1674 return inverted * (2 * 8 * kStyleCnt * 2) + in test_rrect()
1683 for (bool inverted : {false, true}) { in test_rrect() argument
1689 shapes[index(inverted, dir, start, style, dash)] = in test_rrect()
1690 GrStyledShape(rrect, dir, start, SkToBool(inverted), in test_rrect()
1815 for (bool inverted : {false, true}) { in test_rrect()
[all …]
/external/skqp/tests/
DGrShapeTest.cpp287 GrShape inverted = GrShape::MakeFilled(shape, GrShape::FillInversion::kForceInverted); in test_inversions() local
289 make_key(&invertedKey, inverted); in test_inversions()
302 check_equivalence(r, preserve, inverted, preserveKey, invertedKey); in test_inversions()
306 check_equivalence(r, flip, inverted, flipKey, invertedKey); in test_inversions()
1648 auto index = [](bool inverted, in test_rrect()
1653 return inverted * (2 * 8 * kStyleCnt * 2) + in test_rrect()
1662 for (bool inverted : {false, true}) { in test_rrect() argument
1668 shapes[index(inverted, dir, start, style, dash)] = in test_rrect()
1669 GrShape(rrect, dir, start, SkToBool(inverted), in test_rrect()
1793 for (bool inverted : {false, true}) { in test_rrect()
[all …]
/external/angle/util/
DMatrix.cpp138 Matrix4 inverted( in invert() local
188 float determinant = mat.data[0] * inverted.data[0] + mat.data[1] * inverted.data[4] + in invert()
189 mat.data[2] * inverted.data[8] + mat.data[3] * inverted.data[12]; in invert()
193 inverted *= 1.0f / determinant; in invert()
197 inverted = identity(); in invert()
200 return inverted; in invert()
/external/autotest/frontend/tko/preconfigs/metrics/
Dperf51 inverted: kernbench (elapsed)
102 inverted: kernbench (elapsed)
153 inverted: kernbench (elapsed)
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Invert.pbtxt40 inverted = bitwise_ops.invert(input_tensor)
42 tf.assert_equal(tf.cast(inverted, tf.float32), tf.cast(expected, tf.float32))
/external/llvm-project/llvm/test/MC/ARM/
Dimplicit-it.s50 @ Multiple conditional instructions in an IT block, inverted and non-inverted conditions
66 @ Incorrectly inverted condition on the second slot of an IT block
/external/libxml2/result/
Dent5.rdr3 This is an inverted exclamation sign ¡
Dent5.rde3 This is an inverted exclamation sign ¡
Dent5.sax5 This is an inverted excla, 42)

12345678910