Searched refs:primitive (Results 1 - 25 of 70) sorted by relevance

123

/external/v8/test/mjsunit/regress/
H A Dregress-1973.js31 function TestAccessorWrapping(primitive) {
32 var prototype = Object.getPrototypeOf(Object(primitive))
34 var strict_type = typeof primitive;
39 primitive.strict = primitive.strict;
41 var sloppy_type = typeof Object(primitive);
46 primitive.sloppy = primitive.sloppy;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERTaggedObject.java43 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
45 return primitive.isConstructed();
59 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
60 int length = primitive.encodedLength();
86 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
100 if (primitive.isConstructed())
110 out.writeImplicitObject(primitive);
H A DDLTaggedObject.java38 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject();
40 return primitive.isConstructed();
80 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject();
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
94 if (primitive.isConstructed())
104 out.writeImplicitObject(primitive);
H A DBERTaggedObject.java58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject();
60 return primitive.isConstructed();
74 ASN1Primitive primitive = obj.toASN1Primitive();
75 int length = primitive.encodedLength();
H A DASN1OctetString.java15 * DER form is always primitive single OCTET STRING, while
24 * either primitive or constructed at the option of the sender.
31 * <b>8.7.2</b> The primitive encoding contains zero,
64 * be primitive or constructed.
65 * However, such encodings will usually be primitive.
74 * If the encoding is primitive, it shall include the fewest length octets necessary.
80 * values shall be encoded with a primitive encoding if they would
83 * the constructed encoding shall be encoded with a primitive encoding.
157 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
159 if (primitive instanceo
[all...]
H A DDERApplicationSpecific.java49 ASN1Primitive primitive = object.toASN1Primitive();
51 byte[] data = primitive.getEncoded(ASN1Encoding.DER);
53 this.isConstructed = explicit || (primitive instanceof ASN1Set || primitive instanceof ASN1Sequence);
H A DASN1Sequence.java45 * If the encoding is primitive, it shall include the fewest length octets necessary.
90 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive();
92 if (primitive instanceof ASN1Sequence)
94 return (ASN1Sequence)primitive;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_prim.h131 u_vertices_per_prim(int primitive) argument
133 switch(primitive) {
158 debug_printf("Unrecognized geometry shader primitive");
171 u_gs_prims_for_vertices(int primitive, int vertices) argument
173 switch(primitive) {
204 debug_printf("Unrecognized geometry shader primitive");
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceUtils.hpp43 rr::GeometryShaderOutputType mapGLGeometryShaderOutputType (deUint32 primitive);
44 rr::GeometryShaderInputType mapGLGeometryShaderInputType (deUint32 primitive);
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/mesa/drivers/dri/i965/
H A Dbrw_gs.c81 switch (key->primitive) {
106 assert(!"Unexpected primitive type in Gen6 SOL program.");
115 switch (key->primitive) {
172 key->primitive = brw->primitive;
176 if (key->primitive == _3DPRIM_QUADLIST && ctx->Light.ShadeModel != GL_FLAT) {
177 /* Provide consistent primitive order with brw_set_prim's
230 key->need_gs_prog = (brw->primitive == _3DPRIM_QUADLIST ||
231 brw->primitive == _3DPRIM_QUADSTRIP ||
232 brw->primitive
[all...]
H A Dbrw_sf.c86 /* Which primitive? Or all three?
88 switch (key->primitive) {
159 key.primitive = SF_UNFILLED_TRIS;
161 key.primitive = SF_TRIANGLES;
164 key.primitive = SF_LINES;
167 key.primitive = SF_POINTS;
H A Dbrw_gs.h46 * Hardware primitive type being drawn, e.g. _3DPRIM_TRILIST.
48 GLuint primitive:8; member in struct:brw_gs_prog_key
H A Dbrw_sf.h50 GLuint primitive:2; member in struct:brw_sf_prog_key
H A Dbrw_draw.c83 /* When the primitive changes, set a state bit and re-validate. Not
85 * programs be immune to the active primitive (ie. cope with all
111 if (hw_prim != brw->primitive) {
112 brw->primitive = hw_prim;
131 if (hw_prim != brw->primitive) {
132 brw->primitive = hw_prim;
179 /* If we're set to always flush, do it before and after the primitive emit.
236 /* If we're set to always flush, do it before and after the primitive emit.
371 "unknown prim type in transform feedback primitive count");
497 gen7_emit_prim(brw, &prim[i], brw->primitive);
[all...]
/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/radeon/
H A Dradeon_ioctl.c126 GLuint primitive,
131 assert(!(primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND));
143 OUT_BATCH(primitive | RADEON_CP_VC_CNTL_PRIM_WALK_LIST |
159 OUT_BATCH(primitive |
218 GLuint primitive,
226 fprintf(stderr, "%s %d prim %x\n", __FUNCTION__, min_nr, primitive);
228 assert((primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND));
244 OUT_BATCH(primitive |
252 OUT_BATCH(primitive |
267 __FUNCTION__, primitive);
124 radeonEmitVbufPrim( r100ContextPtr rmesa, GLuint vertex_format, GLuint primitive, GLuint vertex_nr ) argument
216 radeonAllocEltsOpenEnded( r100ContextPtr rmesa, GLuint vertex_format, GLuint primitive, GLuint min_nr ) argument
[all...]
H A Dradeon_ioctl.h50 GLuint primitive,
58 GLuint primitive,
90 /* Close off the last primitive, if it exists.
98 /* Can accomodate several state changes and primitive changes without
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp158 std::string Array::primitiveToString (Primitive primitive) argument
168 return de::getSizedArrayElement<Array::PRIMITIVE_LAST>(primitives, (int)primitive);
707 GLenum ContextArray::primitiveToGL (Array::Primitive primitive) argument
717 return de::getSizedArrayElement<Array::PRIMITIVE_LAST>(primitives, (int)primitive);
1148 void ContextArrayPack::render (Array::Primitive primitive, int firstVertex, int vertexCount, bool useVao, float coordScale, float colorScale) argument
1189 m_ctx.drawArrays(ContextArray::primitiveToGL(primitive), firstVertex, vertexCount - firstVertex);
1311 static char* generateQuads (int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max);
1312 static char* generatePerQuad (int seed, int count, int componentCount, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max);
1316 static char* createQuads (int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, T min, T max);
1318 static char* createPerQuads (int seed, int count, int componentCount, int stride, Array::Primitive primitive,
1416 generateQuads(int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max) argument
1475 createQuadsPacked(int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive) argument
1548 createQuads(int seed, int count, int componentCount, int offset, int stride, Array::Primitive primitive, T min, T max) argument
1652 generatePerQuad(int seed, int count, int componentCount, int stride, Array::Primitive primitive, Array::InputType type, GLValue min, GLValue max) argument
1707 createPerQuads(int seed, int count, int componentCount, int stride, Array::Primitive primitive, T min, T max) argument
[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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_ioctl.h55 GLuint primitive,
61 GLuint primitive,
74 /* Close off the last primitive, if it exists.
82 /* Can accomodate several state changes and primitive changes without
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", __FUNCTION__, 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/swrast/
H A Ds_span.h124 GLenum primitive; member in struct:sw_span
175 (S).primitive = (PRIMITIVE); \

Completed in 1051 milliseconds

123