/external/llvm/test/MC/AsmParser/ |
D | directive_values.s | 19 # CHECK: .quad 9 21 .quad 9 26 .quad 0b0100 27 .quad 4294967295 28 .quad 4294967295+1 29 .quad 4294967295LL+1 30 .quad 0b10LL + 07ULL + 0x42AULL 32 # CHECK: .quad 4 33 # CHECK: .quad 4294967295 34 # CHECK: .quad 4294967296 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/ |
D | directive_values.s | 19 # CHECK: .quad 9 21 .quad 9 26 .quad 0b0100 27 .quad 4294967295 28 .quad 4294967295+1 29 .quad 4294967295LL+1 30 .quad 0b10LL + 07ULL + 0x42AULL 32 # CHECK: .quad 4 33 # CHECK: .quad 4294967295 34 # CHECK: .quad 4294967296 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/MachO/ |
D | darwin-x86_64-diff-relocs.s | 95 .quad 4 97 .quad _g2 98 .quad L2 99 .quad _g3 100 .quad L3 101 .quad L2 - _g2 102 .quad _g3 - _g2 103 .quad L3 - _g2 104 .quad L3 - _g3 106 .quad _g0 [all …]
|
D | darwin-x86_64-reloc.s | 21 .quad _foo 23 .quad _foo+4 24 .quad _foo - _bar 25 .quad _foo - _bar + 4 35 .quad L1 37 .quad L0 39 .quad _foo - L_pc 40 .quad _foo - L1 42 .quad L1 - _prev 49 .quad L1 [all …]
|
D | tls.s | 13 .quad ___tlv_bootstrap 14 .quad 0 15 .quad _c$tlv$init 26 .quad ___tlv_bootstrap 27 .quad 0 28 .quad _d$tlv$init 34 .quad ___tlv_bootstrap 35 .quad 0 36 .quad _a$tlv$init 42 .quad ___tlv_bootstrap [all …]
|
/external/llvm/test/MC/MachO/ |
D | darwin-x86_64-diff-relocs.s | 95 .quad 4 97 .quad _g2 98 .quad L2 99 .quad _g3 100 .quad L3 101 .quad L2 - _g2 102 .quad _g3 - _g2 103 .quad L3 - _g2 104 .quad L3 - _g3 106 .quad _g0 [all …]
|
D | darwin-x86_64-reloc.s | 21 .quad _foo 23 .quad _foo+4 24 .quad _foo - _bar 25 .quad _foo - _bar + 4 35 .quad L1 37 .quad L0 39 .quad _foo - L_pc 40 .quad _foo - L1 42 .quad L1 - _prev 49 .quad L1 [all …]
|
D | tls.s | 13 .quad ___tlv_bootstrap 14 .quad 0 15 .quad _c$tlv$init 26 .quad ___tlv_bootstrap 27 .quad 0 28 .quad _d$tlv$init 34 .quad ___tlv_bootstrap 35 .quad 0 36 .quad _a$tlv$init 42 .quad ___tlv_bootstrap [all …]
|
/external/swiftshader/third_party/LLVM/test/MC/MachO/ |
D | darwin-x86_64-diff-relocs.s | 95 .quad 4 97 .quad _g2 98 .quad L2 99 .quad _g3 100 .quad L3 101 .quad L2 - _g2 102 .quad _g3 - _g2 103 .quad L3 - _g2 104 .quad L3 - _g3 106 .quad _g0 [all …]
|
D | darwin-x86_64-reloc.s | 21 .quad _foo 23 .quad _foo+4 24 .quad _foo - _bar 25 .quad _foo - _bar + 4 35 .quad L1 37 .quad L0 39 .quad _foo - L_pc 40 .quad _foo - L1 42 .quad L1 - _prev 49 .quad L1 [all …]
|
D | tls.s | 13 .quad ___tlv_bootstrap 14 .quad 0 15 .quad _c$tlv$init 26 .quad ___tlv_bootstrap 27 .quad 0 28 .quad _d$tlv$init 34 .quad ___tlv_bootstrap 35 .quad 0 36 .quad _a$tlv$init 42 .quad ___tlv_bootstrap [all …]
|
/external/deqp/modules/glshared/ |
D | glsFragmentOpUtil.cpp | 177 void QuadRenderer::render (const Quad& quad) const in render() 181 quad.posA.x(), quad.posA.y(), quad.depth[0], 1.0f, in render() 182 quad.posA.x(), quad.posB.y(), quad.depth[1], 1.0f, in render() 183 quad.posB.x(), quad.posA.y(), quad.depth[2], 1.0f, in render() 184 quad.posB.x(), quad.posB.y(), quad.depth[3], 1.0f in render() 189 DE_STATIC_ASSERT(sizeof(quad.color) == sizeof(float)*4*4); in render() 190 DE_STATIC_ASSERT(sizeof(quad.color1) == sizeof(float)*4*4); in render() 195 vertexArrays.push_back(glu::va::Float(m_colorLoc, 4, 4, 0, (const float*)&quad.color[0])); in render() 198 vertexArrays.push_back(glu::va::Float(m_color1Loc, 4, 4, 0, (const float*)&quad.color1[0])); in render() 226 const IntegerQuad& quad, in render() argument [all …]
|
/external/skia/src/pathops/ |
D | SkReduceOrder.cpp | 17 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { in coincident_line() argument 18 reduction[0] = reduction[1] = quad[0]; in coincident_line() 26 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { in vertical_line() argument 27 reduction[0] = quad[0]; in vertical_line() 28 reduction[1] = quad[2]; in vertical_line() 32 static int horizontal_line(const SkDQuad& quad, SkDQuad& reduction) { in horizontal_line() argument 33 reduction[0] = quad[0]; in horizontal_line() 34 reduction[1] = quad[2]; in horizontal_line() 38 static int check_linear(const SkDQuad& quad, in check_linear() argument 40 if (!quad.isLinear(0, 2)) { in check_linear() [all …]
|
/external/skqp/src/pathops/ |
D | SkReduceOrder.cpp | 17 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { in coincident_line() argument 18 reduction[0] = reduction[1] = quad[0]; in coincident_line() 26 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { in vertical_line() argument 27 reduction[0] = quad[0]; in vertical_line() 28 reduction[1] = quad[2]; in vertical_line() 32 static int horizontal_line(const SkDQuad& quad, SkDQuad& reduction) { in horizontal_line() argument 33 reduction[0] = quad[0]; in horizontal_line() 34 reduction[1] = quad[2]; in horizontal_line() 38 static int check_linear(const SkDQuad& quad, in check_linear() argument 40 if (!quad.isLinear(0, 2)) { in check_linear() [all …]
|
/external/skia/tests/ |
D | GrQuadListTest.cpp | 26 static bool is_2d_quad(const GrPerspQuad& quad) { in is_2d_quad() argument 27 return quad.x(0) == 1.f && quad.x(1) == 1.f && quad.x(2) == 3.f && quad.x(3) == 3.f && in is_2d_quad() 28 quad.y(0) == 2.f && quad.y(1) == 4.f && quad.y(2) == 2.f && quad.y(3) == 4.f && in is_2d_quad() 29 quad.w(0) == 1.f && quad.w(1) == 1.f && quad.w(2) == 1.f && quad.w(3) == 1.f; in is_2d_quad() 35 static bool is_2d_persp_quad(const GrPerspQuad& quad) { in is_2d_persp_quad() argument 36 return quad.x(0) == 5.f && quad.x(1) == 5.f && quad.x(2) == 7.f && quad.x(3) == 7.f && in is_2d_persp_quad() 37 quad.y(0) == 6.f && quad.y(1) == 8.f && quad.y(2) == 6.f && quad.y(3) == 8.f && in is_2d_persp_quad() 38 quad.w(0) == 1.f && quad.w(1) == 1.f && quad.w(2) == 1.f && quad.w(3) == 1.f; in is_2d_persp_quad() 48 static bool is_3d_persp_quad(const GrPerspQuad& quad) { in is_3d_persp_quad() argument 49 return quad.x(0) == 9.f && quad.x(1) == 9.f && quad.x(2) == 11.f && quad.x(3) == 11.f && in is_3d_persp_quad() [all …]
|
D | PathOpsQuadLineIntersectionThreadedTest.cpp | 18 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, in doIntersect() argument 30 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); in doIntersect() 39 result = intersections.horizontal(quad, left, right, line[0].fY, flipped); in doIntersect() 41 intersections.intersect(quad, line); in doIntersect() 47 static void testLineIntersect(skiatest::Reporter* reporter, const SkDQuad& quad, in testLineIntersect() argument 50 pathStr.appendf(" path.moveTo(%1.9g, %1.9g);\n", quad[0].fX, quad[0].fY); in testLineIntersect() 51 pathStr.appendf(" path.quadTo(%1.9g, %1.9g, %1.9g, %1.9g);\n", quad[1].fX, in testLineIntersect() 52 quad[1].fY, quad[2].fX, quad[2].fY); in testLineIntersect() 58 int result = doIntersect(intersections, quad, line, flipped); in testLineIntersect() 62 SkDPoint quadXY = quad.ptAtT(quadT); in testLineIntersect() [all …]
|
D | PathOpsQuadLineIntersectionTest.cpp | 18 QuadPts quad; member 33 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, in doIntersect() argument 45 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); in doIntersect() 54 result = intersections.horizontal(quad, left, right, line[0].fY, flipped); in doIntersect() 56 intersections.intersect(quad, line); in doIntersect() 63 QuadPts quad; member 86 const QuadPts& q = oneOffs[index].quad; in testOneOffs() 87 SkDQuad quad; in testOneOffs() local 88 quad.debugSet(q.fPts); in testOneOffs() 89 SkASSERT(ValidQuad(quad)); in testOneOffs() [all …]
|
/external/skqp/tests/ |
D | GrQuadListTest.cpp | 26 static bool is_2d_quad(const GrPerspQuad& quad) { in is_2d_quad() argument 27 return quad.x(0) == 1.f && quad.x(1) == 1.f && quad.x(2) == 3.f && quad.x(3) == 3.f && in is_2d_quad() 28 quad.y(0) == 2.f && quad.y(1) == 4.f && quad.y(2) == 2.f && quad.y(3) == 4.f && in is_2d_quad() 29 quad.w(0) == 1.f && quad.w(1) == 1.f && quad.w(2) == 1.f && quad.w(3) == 1.f; in is_2d_quad() 35 static bool is_2d_persp_quad(const GrPerspQuad& quad) { in is_2d_persp_quad() argument 36 return quad.x(0) == 5.f && quad.x(1) == 5.f && quad.x(2) == 7.f && quad.x(3) == 7.f && in is_2d_persp_quad() 37 quad.y(0) == 6.f && quad.y(1) == 8.f && quad.y(2) == 6.f && quad.y(3) == 8.f && in is_2d_persp_quad() 38 quad.w(0) == 1.f && quad.w(1) == 1.f && quad.w(2) == 1.f && quad.w(3) == 1.f; in is_2d_persp_quad() 48 static bool is_3d_persp_quad(const GrPerspQuad& quad) { in is_3d_persp_quad() argument 49 return quad.x(0) == 9.f && quad.x(1) == 9.f && quad.x(2) == 11.f && quad.x(3) == 11.f && in is_3d_persp_quad() [all …]
|
D | PathOpsQuadLineIntersectionThreadedTest.cpp | 18 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, in doIntersect() argument 30 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); in doIntersect() 39 result = intersections.horizontal(quad, left, right, line[0].fY, flipped); in doIntersect() 41 intersections.intersect(quad, line); in doIntersect() 47 static void testLineIntersect(skiatest::Reporter* reporter, const SkDQuad& quad, in testLineIntersect() argument 50 pathStr.appendf(" path.moveTo(%1.9g, %1.9g);\n", quad[0].fX, quad[0].fY); in testLineIntersect() 51 pathStr.appendf(" path.quadTo(%1.9g, %1.9g, %1.9g, %1.9g);\n", quad[1].fX, in testLineIntersect() 52 quad[1].fY, quad[2].fX, quad[2].fY); in testLineIntersect() 58 int result = doIntersect(intersections, quad, line, flipped); in testLineIntersect() 62 SkDPoint quadXY = quad.ptAtT(quadT); in testLineIntersect() [all …]
|
D | PathOpsQuadLineIntersectionTest.cpp | 18 QuadPts quad; member 33 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, in doIntersect() argument 45 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); in doIntersect() 54 result = intersections.horizontal(quad, left, right, line[0].fY, flipped); in doIntersect() 56 intersections.intersect(quad, line); in doIntersect() 63 QuadPts quad; member 86 const QuadPts& q = oneOffs[index].quad; in testOneOffs() 87 SkDQuad quad; in testOneOffs() local 88 quad.debugSet(q.fPts); in testOneOffs() 89 SkASSERT(ValidQuad(quad)); in testOneOffs() [all …]
|
/external/skia/src/gpu/ops/ |
D | GrQuadPerEdgeAA.cpp | 158 static AI void outset_vertices(const Sk4f& outset, const QuadMetadata& metadata, Vertices* quad) { in outset_vertices() argument 164 quad->fX += fma(maskedOutsetCW, nextCW(metadata.fDX), maskedOutset * metadata.fDX); in outset_vertices() 165 quad->fY += fma(maskedOutsetCW, nextCW(metadata.fDY), maskedOutset * metadata.fDY); in outset_vertices() 166 if (quad->fUVRCount > 0) { in outset_vertices() 170 Sk4f du = nextCCW(quad->fU) - quad->fU; in outset_vertices() 171 Sk4f dv = nextCCW(quad->fV) - quad->fV; in outset_vertices() 172 quad->fU += fma(maskedOutsetCW, nextCW(du), maskedOutset * du); in outset_vertices() 173 quad->fV += fma(maskedOutsetCW, nextCW(dv), maskedOutset * dv); in outset_vertices() 174 if (quad->fUVRCount == 3) { in outset_vertices() 175 Sk4f dr = nextCCW(quad->fR) - quad->fR; in outset_vertices() [all …]
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_quad_pipe.c | 35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad) in insert_stage_at_head() argument 37 quad->next = sp->quad.first; in insert_stage_at_head() 38 sp->quad.first = quad; in insert_stage_at_head() 54 sp->quad.first = sp->quad.blend; in sp_build_quad_pipeline() 58 insert_stage_at_head( sp, sp->quad.shade ); in sp_build_quad_pipeline() 59 insert_stage_at_head( sp, sp->quad.depth_test ); in sp_build_quad_pipeline() 62 insert_stage_at_head( sp, sp->quad.depth_test ); in sp_build_quad_pipeline() 63 insert_stage_at_head( sp, sp->quad.shade ); in sp_build_quad_pipeline() 68 insert_stage_at_head( sp, sp->quad.pstipple ); in sp_build_quad_pipeline()
|
D | sp_quad_depth_test.c | 62 const struct quad_header *quad ) in get_depth_stencil_values() argument 70 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 71 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 77 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 78 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 85 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 86 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 94 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() 95 int y = quad->input.y0 % TILE_SIZE + (j >> 1); in get_depth_stencil_values() 102 int x = quad->input.x0 % TILE_SIZE + (j & 1); in get_depth_stencil_values() [all …]
|
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/ |
D | directive_values.s | 19 # CHECK: .quad 9 21 .quad 9 26 .quad 0b0100 27 .quad 4294967295 28 .quad 4294967295+1 29 .quad 4294967295LL+1 30 .quad 0b10LL + 07ULL + 0x42AULL 32 # CHECK: .quad 4 33 # CHECK: .quad 4294967295 34 # CHECK: .quad 4294967296 [all …]
|
D | floating-literals.s | 21 # CHECK: .quad 4617315517961601024 22 # CHECK: .quad 4597526701198935065 23 # CHECK: .quad -4600933674317040845 26 # CHECK: .quad 0 29 # CHECK: .quad -4570379565595099136 31 # CHECK: .quad -4690170861623122860 33 # CHECK: .quad -4465782973978902528 35 # CHECK: .quad 4681608360884174848 37 # CHECK: .quad 4681608360884174848 39 # CHECK: .quad 4611686018427387904
|