Searched defs:primitive (Results 1 - 25 of 64) sorted by relevance

123

/external/swiftshader/src/Renderer/
H A DRasterizer.hpp27 Rasterizer() : primitive(Arg<0>()), count(Arg<1>()), cluster(Arg<2>()), data(Arg<3>()) {}
31 Pointer<Byte> primitive; member in class:sw::Rasterizer
/external/turbine/javatests/com/google/turbine/lower/
H A DLowerSignatureTest.java133 public void primitive() { method in class:LowerSignatureTest
/external/ImageMagick/coders/
H A Dmvg.c164 primitive[MagickPathExtent];
175 while (ReadBlobString(image,primitive) != (char *) NULL)
177 for (p=primitive; (*p == ' ') || (*p == '\t'); p++) ;
208 draw_info->primitive=FileToString(image->filename,~0UL,exception);
211 draw_info->primitive=(char *) AcquireMagickMemory(GetBlobSize(image)+1);
212 if (draw_info->primitive != (char *) NULL)
214 CopyMagickMemory(draw_info->primitive,GetBlobStreamData(image),
216 draw_info->primitive[GetBlobSize(image)]='\0';
219 if (draw_info->primitive == (char *) NULL)
160 primitive[MagickPathExtent]; local
/external/caliper/examples/src/main/java/examples/
H A DDoubleToStringBenchmark.java82 @Benchmark int primitive(int reps) { method in class:DoubleToStringBenchmark
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceUtils.cpp181 rr::GeometryShaderOutputType mapGLGeometryShaderOutputType (deUint32 primitive) argument
183 switch (primitive)
194 rr::GeometryShaderInputType mapGLGeometryShaderInputType (deUint32 primitive) argument
196 switch (primitive)
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_prim.h46 * Decompose a primitive that is a loop, a strip, or a fan. Return the
47 * original primitive if it is already decomposed.
71 * Reduce a primitive to one of PIPE_PRIM_POINTS, PIPE_PRIM_LINES, and
92 * Re-assemble a primitive to remove its adjacency.
110 * Return the vertex count information for a primitive.
183 u_vertices_per_prim(enum pipe_prim_type primitive) argument
185 switch(primitive) {
210 debug_printf("Unrecognized geometry shader primitive");
225 u_decomposed_prims_for_vertices(enum pipe_prim_type primitive, int vertices) argument
227 switch (primitive) {
272 u_reduced_prims_for_vertices(enum pipe_prim_type primitive, int vertices) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_ff_gs.h46 * Hardware primitive type being drawn, e.g. _3DPRIM_TRILIST.
48 GLuint primitive:8; member in struct:brw_ff_gs_prog_key
H A Dbrw_clip.h53 GLuint primitive:4; member in struct:brw_clip_prog_key
H A Dbrw_sf.h52 GLuint primitive:2; member in struct:brw_sf_prog_key
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_render.h49 GLenum primitive; member in struct:nouveau_swtnl_state
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_cmdbuf.c117 GLuint primitive,
122 assert(!(primitive & R200_VF_PRIM_WALK_IND));
128 rmesa->store.cmd_used/4, primitive, vertex_nr);
132 OUT_BATCH(primitive | R200_VF_PRIM_WALK_LIST | R200_VF_COLOR_ORDER_RGBA |
185 GLuint primitive,
190 radeon_print(RADEON_RENDER, RADEON_VERBOSE, "%s %d prim %x\n", __func__, min_nr, primitive);
192 assert((primitive & R200_VF_PRIM_WALK_IND));
116 r200EmitVbufPrim( r200ContextPtr rmesa, GLuint primitive, GLuint vertex_nr ) argument
184 r200AllocEltsOpenEnded( r200ContextPtr rmesa, GLuint primitive, GLuint min_nr ) argument
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_ioctl.c124 GLuint primitive,
129 assert(!(primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND));
141 OUT_BATCH(primitive | RADEON_CP_VC_CNTL_PRIM_WALK_LIST |
157 OUT_BATCH(primitive |
216 GLuint primitive,
224 fprintf(stderr, "%s %d prim %x\n", __func__, min_nr, primitive);
226 assert((primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND));
242 OUT_BATCH(primitive |
250 OUT_BATCH(primitive |
265 __func__, primitive);
122 radeonEmitVbufPrim( r100ContextPtr rmesa, GLuint vertex_format, GLuint primitive, GLuint vertex_nr ) argument
214 radeonAllocEltsOpenEnded( r100ContextPtr rmesa, GLuint vertex_format, GLuint primitive, GLuint min_nr ) argument
[all...]
/external/pdfium/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256.cpp47 CBC_ReedSolomonGF256::CBC_ReedSolomonGF256(int32_t primitive) { argument
53 x ^= primitive;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
H A DRepresenterTest.java33 "!!org.yaml.snakeyaml.representer.RepresenterTest$MyBean {name: Gnome, primitive: true}\n",
40 private boolean primitive; field in class:RepresenterTest.MyBean
59 return primitive;
62 public void setPrimitive(boolean primitive) { argument
63 this.primitive = primitive;
118 // isValid is no JavaBean property (it must be a primitive then)
/external/spirv-llvm/lib/SPIRV/Mangler/
H A DParameterType.cpp23 PrimitiveType::PrimitiveType(TypePrimitiveEnum primitive) : argument
24 ParamType(TYPE_ID_PRIMITIVE), m_primitive(primitive) {
37 && m_primitive <= PRIMITIVE_LAST) && "illegal primitive");
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineReferenceRenderer.cpp255 const rr::PrimitiveType primitive,
258 const rr::PrimitiveList primitives(primitive, (int)vertexBuffer.size(), 0);
287 const rr::PrimitiveType primitive,
290 const rr::PrimitiveList primitives(primitive, (int)vertexBuffer.size(), 0);
254 draw(const rr::RenderState& renderState, const rr::PrimitiveType primitive, const std::vector<Vertex4RGBA>& vertexBuffer) argument
286 draw(const rr::RenderState& renderState, const rr::PrimitiveType primitive, const std::vector<Vertex4Tex4>& vertexBuffer) argument
/external/mesa3d/src/mesa/swrast/
H A Ds_span.h124 GLenum primitive; member in struct:sw_span
175 (S).primitive = (PRIMITIVE); \
/external/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectsource_test.cc192 Primitive primitive; local
193 primitive.add_rep_fix32(3201);
194 primitive.add_rep_fix32(0);
195 primitive.add_rep_fix32(3202);
196 primitive.add_rep_u32(3203);
197 primitive.add_rep_u32(0);
198 primitive.add_rep_i32(0);
199 primitive.add_rep_i32(3204);
200 primitive.add_rep_i32(3205);
201 primitive
231 PackedPrimitive primitive; local
290 Primitive primitive; local
328 Primitive primitive = PrepareRepeatedPrimitive(); local
[all...]
/external/emma/core/java12/com/vladium/jcd/lib/
H A DTypes.java505 else // primitive type
507 return primitive (first);
523 else // primitive type
525 component = primitive (first);
533 Class primitive (char c) throws ClassNotFoundException method in class:Types.typeDescriptorCompiler
563 else // primitive type
564 return primitive (first);
581 else // primitive type
582 component = primitive (first);
589 String primitive (cha method in class:Types.typeDescriptorCompiler2
[all...]
/external/ImageMagick/MagickCore/
H A Dannotate.c281 primitive[MagickPathExtent],
514 (void) FormatLocaleString(primitive,MagickPathExtent,
516 (void) CloneString(&undercolor_info->primitive,primitive);
522 (void) FormatLocaleString(primitive,MagickPathExtent,"stroke-width %g "
528 (void) CloneString(&annotate_info->primitive,primitive);
536 (void) CloneString(&annotate_info->primitive,primitive);
549 (void) CloneString(&annotate_info->primitive,primitiv
275 primitive[MagickPathExtent], local
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fDrawTests.cpp74 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES;
114 AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage);
126 AttributeGroup::AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage) argument
129 , m_primitive (primitive)
147 spec.primitive = m_primitive;
182 spec.primitive = m_primitive;
228 spec.primitive = m_primitive;
441 const gls::DrawTestSpec::Primitive primitive[] = local
465 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(primitive); ++ndx)
467 const std::string name = gls::DrawTestSpec::primitiveToString(primitive[nd
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fDrawElementsBaseVertexTests.cpp64 static size_t getElementCount (gls::DrawTestSpec::Primitive primitive, size_t primitiveCount) argument
66 switch (primitive)
90 spec.indexMax = (int)getElementCount(spec.primitive, spec.primitiveCount);
131 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES;
600 AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage);
612 AttributeGroup::AttributeGroup (Context& context, const char* name, const char* descr, gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSpec::IndexType indexType, gls::DrawTestSpec::Storage indexStorage) argument
615 , m_primitive (primitive)
633 spec.primitive = m_primitive;
669 spec.primitive = m_primitive;
716 spec.primitive
865 const gls::DrawTestSpec::Primitive primitive[] = local
[all...]
/external/skia/src/sksl/ir/
H A DSkSLLayout.h123 int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices,
134 , fPrimitive(primitive)
122 Layout(int flags, int location, int offset, int binding, int index, int set, int builtin, int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices, int invocations, String when, Key key, StringFragment ctype) argument
/external/skqp/src/sksl/ir/
H A DSkSLLayout.h123 int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices,
134 , fPrimitive(primitive)
122 Layout(int flags, int location, int offset, int binding, int index, int set, int builtin, int inputAttachmentIndex, Format format, Primitive primitive, int maxVertices, int invocations, String when, Key key, StringFragment ctype) argument
/external/swiftshader/src/Shader/
H A DSetupRoutine.cpp42 Pointer<Byte> primitive(function.Arg<0>());
117 *Pointer<Byte8>(primitive + OFFSET(Primitive,clockwiseMask)) = Byte8(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF);
118 *Pointer<Byte8>(primitive + OFFSET(Primitive,invClockwiseMask)) = Byte8(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
122 *Pointer<Byte8>(primitive + OFFSET(Primitive,clockwiseMask)) = Byte8(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
123 *Pointer<Byte8>(primitive + OFFSET(Primitive,invClockwiseMask)) = Byte8(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF);
129 *Pointer<Float>(primitive + OFFSET(Primitive,area)) = 0.5f * A;
136 *Pointer<Byte8>(primitive + OFFSET(Primitive,clockwiseMask)) = Byte8(0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF);
137 *Pointer<Byte8>(primitive + OFFSET(Primitive,invClockwiseMask)) = Byte8(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
222 Pointer<Byte> leftEdge = Pointer<Byte>(primitive + OFFSET(Primitive,outline->left)) + q * sizeof(Primitive);
223 Pointer<Byte> rightEdge = Pointer<Byte>(primitive
482 setupGradient(Pointer<Byte> &primitive, Pointer<Byte> &triangle, Float4 &w012, Float4 (&m)[3], Pointer<Byte> &v0, Pointer<Byte> &v1, Pointer<Byte> &v2, int attribute, int planeEquation, bool flat, bool sprite, bool perspective, bool wrap, int component) argument
560 edge(Pointer<Byte> &primitive, Pointer<Byte> &data, const Int &Xa, const Int &Ya, const Int &Xb, const Int &Yb, Int &q) argument
[all...]

Completed in 3655 milliseconds

123