HomeSort by relevance Sort by last modified time
    Searched refs:quad (Results 1 - 25 of 309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/MachO/
thread_init_func.s 4 .quad 0
tlv.s 6 .quad 0
7 .quad 0
8 .quad 0
darwin-x86_64-diff-relocs.s 95 .quad 4
96 // .quad _baz
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 - _g
    [all...]
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 L
    [all...]
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_bootstra
    [all...]
tlv-reloc.s 11 .quad __tlv_bootstrap
12 .quad 0
13 .quad _a$tlv$init
symbol-diff.s 6 .quad LFB2-.
data.s 8 .quad 0xABCDABCDABCDABCD
  /external/chromium-trace/trace-viewer/src/ui/
quad_view.css 6 quad-view {
10 quad-view,
11 quad-view > * {
  /external/llvm/test/MC/AsmParser/
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 461168601842738790
    [all...]
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 429496729
    [all...]
directive_tlv.s 6 # CHECK: .quad 0
11 .quad 0
12 .quad 0
13 .quad 0
directive_thread_init_func.s 4 # CHECK: .quad 0
7 .quad 0
directive_tdata.s 5 # CHECK: .quad 4
9 .quad 4
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_pipe.c 35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad)
37 quad->next = sp->quad.first;
38 sp->quad.first = quad;
53 sp->quad.first = sp->quad.blend;
56 insert_stage_at_head( sp, sp->quad.shade );
57 insert_stage_at_head( sp, sp->quad.depth_test );
60 insert_stage_at_head( sp, sp->quad.depth_test )
    [all...]
sp_quad_stipple.c 3 * quad polygon stipple stage
29 struct quad_header *quad = quads[q]; local
31 const int col0 = quad->input.x0 % 32;
32 const int y0 = quad->input.y0;
37 /* turn off quad mask bits that fail the stipple test */
39 quad->inout.mask &= ~MASK_TOP_LEFT;
42 quad->inout.mask &= ~MASK_TOP_RIGHT;
45 quad->inout.mask &= ~MASK_BOTTOM_LEFT;
48 quad->inout.mask &= ~MASK_BOTTOM_RIGHT;
50 if (quad->inout.mask
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_pipe.c 35 insert_stage_at_head(struct softpipe_context *sp, struct quad_stage *quad)
37 quad->next = sp->quad.first;
38 sp->quad.first = quad;
53 sp->quad.first = sp->quad.blend;
56 insert_stage_at_head( sp, sp->quad.shade );
57 insert_stage_at_head( sp, sp->quad.depth_test );
60 insert_stage_at_head( sp, sp->quad.depth_test )
    [all...]
sp_quad_stipple.c 3 * quad polygon stipple stage
29 struct quad_header *quad = quads[q]; local
31 const int col0 = quad->input.x0 % 32;
32 const int y0 = quad->input.y0;
37 /* turn off quad mask bits that fail the stipple test */
39 quad->inout.mask &= ~MASK_TOP_LEFT;
42 quad->inout.mask &= ~MASK_TOP_RIGHT;
45 quad->inout.mask &= ~MASK_BOTTOM_LEFT;
48 quad->inout.mask &= ~MASK_BOTTOM_RIGHT;
50 if (quad->inout.mask
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsRect.cpp 17 void SkDRect::setBounds(const SkDQuad& quad) {
18 set(quad[0]);
19 add(quad[2]);
22 if (!between(quad[0].fX, quad[1].fX, quad[2].fX)) {
23 roots = SkDQuad::FindExtrema(quad[0].fX, quad[1].fX, quad[2].fX, tValues);
25 if (!between(quad[0].fY, quad[1].fY, quad[2].fY))
    [all...]
SkReduceOrder.cpp 22 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) {
23 reduction[0] = reduction[1] = quad[0];
31 static int vertical_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
34 reduction[0] = quad[0];
35 reduction[1] = quad[2];
41 if (SkDQuad::FindExtrema(quad[0].fY, quad[1].fY, quad[2].fY, &tValue)) {
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue)
429 SkDQuad quad; local
    [all...]
  /external/skia/src/pathops/
SkPathOpsRect.cpp 17 void SkDRect::setBounds(const SkDQuad& quad) {
18 set(quad[0]);
19 add(quad[2]);
22 if (!between(quad[0].fX, quad[1].fX, quad[2].fX)) {
23 roots = SkDQuad::FindExtrema(quad[0].fX, quad[1].fX, quad[2].fX, tValues);
25 if (!between(quad[0].fY, quad[1].fY, quad[2].fY))
    [all...]
SkReduceOrder.cpp 22 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) {
23 reduction[0] = reduction[1] = quad[0];
31 static int vertical_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
34 reduction[0] = quad[0];
35 reduction[1] = quad[2];
41 if (SkDQuad::FindExtrema(quad[0].fY, quad[1].fY, quad[2].fY, &tValue)) {
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue)
429 SkDQuad quad; local
    [all...]
  /external/skia/tests/
PathOpsDQuadTest.cpp 39 const SkDQuad& quad = tests[index]; local
40 SkASSERT(ValidQuad(quad));
41 bool result = quad.pointInHull(inPoint[index]);
46 result = quad.pointInHull(outPoint[index]);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainGridListener.java 44 public void tileAttached( Vector3f cell, TerrainQuad quad );
46 public void tileDetached( Vector3f cell, TerrainQuad quad );
  /external/llvm/test/MC/ELF/
set.s 22 // or a .quad
24 .quad foo2

Completed in 5038 milliseconds

1 2 3 4 5 6 7 8 91011>>