Home
last modified time | relevance | path

Searched refs:primitive (Results 1 – 25 of 193) sorted by relevance

12345678

/external/chromium_org/v8/test/mjsunit/regress/
Dregress-1973.js31 function TestAccessorWrapping(primitive) { argument
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/
DDERTaggedObject.java43 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); in isConstructed() local
45 return primitive.isConstructed(); in isConstructed()
59 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); in encodedLength() local
60 int length = primitive.encodedLength(); in encodedLength()
86 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); in encode() local
91 out.writeLength(primitive.encodedLength()); in encode()
92 out.writeObject(primitive); in encode()
100 if (primitive.isConstructed()) in encode()
110 out.writeImplicitObject(primitive); in encode()
DDLTaggedObject.java38 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); in isConstructed() local
40 return primitive.isConstructed(); in isConstructed()
80 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); in encode() local
85 out.writeLength(primitive.encodedLength()); in encode()
86 out.writeObject(primitive); in encode()
94 if (primitive.isConstructed()) in encode()
104 out.writeImplicitObject(primitive); in encode()
DDERApplicationSpecific.java49 ASN1Primitive primitive = object.toASN1Primitive(); in DERApplicationSpecific() local
51 byte[] data = primitive.getEncoded(ASN1Encoding.DER); in DERApplicationSpecific()
53 …this.isConstructed = explicit || (primitive instanceof ASN1Set || primitive instanceof ASN1Sequenc… in DERApplicationSpecific()
108 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive(); in getInstance() local
110 if (primitive instanceof ASN1Sequence) in getInstance()
112 return (DERApplicationSpecific)primitive; in getInstance()
DBERTaggedObject.java58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); in isConstructed() local
60 return primitive.isConstructed(); in isConstructed()
74 ASN1Primitive primitive = obj.toASN1Primitive(); in encodedLength() local
75 int length = primitive.encodedLength(); in encodedLength()
DASN1OctetString.java67 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive(); in getInstance() local
69 if (primitive instanceof ASN1OctetString) in getInstance()
71 return (ASN1OctetString)primitive; in getInstance()
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_gs.c81 switch (key->primitive) { in compile_gs_prog()
115 switch (key->primitive) { in compile_gs_prog()
172 key->primitive = brw->primitive; in populate_key()
176 if (key->primitive == _3DPRIM_QUADLIST && ctx->Light.ShadeModel != GL_FLAT) { in populate_key()
230 key->need_gs_prog = (brw->primitive == _3DPRIM_QUADLIST || in populate_key()
231 brw->primitive == _3DPRIM_QUADSTRIP || in populate_key()
232 brw->primitive == _3DPRIM_LINELOOP); in populate_key()
Dbrw_sf.c88 switch (key->primitive) { in compile_sf_prog()
159 key.primitive = SF_UNFILLED_TRIS; in brw_upload_sf_prog()
161 key.primitive = SF_TRIANGLES; in brw_upload_sf_prog()
164 key.primitive = SF_LINES; in brw_upload_sf_prog()
167 key.primitive = SF_POINTS; in brw_upload_sf_prog()
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
Dbrw_gs.c81 switch (key->primitive) { in compile_gs_prog()
115 switch (key->primitive) { in compile_gs_prog()
172 key->primitive = brw->primitive; in populate_key()
176 if (key->primitive == _3DPRIM_QUADLIST && ctx->Light.ShadeModel != GL_FLAT) { in populate_key()
230 key->need_gs_prog = (brw->primitive == _3DPRIM_QUADLIST || in populate_key()
231 brw->primitive == _3DPRIM_QUADSTRIP || in populate_key()
232 brw->primitive == _3DPRIM_LINELOOP); in populate_key()
Dbrw_sf.c88 switch (key->primitive) { in compile_sf_prog()
159 key.primitive = SF_UNFILLED_TRIS; in brw_upload_sf_prog()
161 key.primitive = SF_TRIANGLES; in brw_upload_sf_prog()
164 key.primitive = SF_LINES; in brw_upload_sf_prog()
167 key.primitive = SF_POINTS; in brw_upload_sf_prog()
/external/deqp/framework/referencerenderer/
Ddesign.txt6 - must support primitive setup reference
52 - replaces primitive assembly?
58 + full primitive type
62 + primitive list for rasterization / geometry shading
68 + primitive list
70 + changed primitive list
74 + primitive list
/external/deqp/doc/testspecs/GLES31/
Dfunctional.geometry_shading.txt28 - All input primitive types
61 variable. *_restarted variant verifies that primitive restart index has
67 TRIANGLE_ADJACENCY primitive with different vertex counts.
70 input and output primitive types.
92 instancing by rendering primitives in a circle formation. Each output primitive
94 circle is generated by a single input primitive. invocation_per_layer and
102 drawn around each input primitive instance.
105 primitive type and then try to use the shader when drawing with an incompatible
106 primitive type. GL_INVALID_OPERATION is expected.
109 in the extension. Tests include all new render primitive modes and
[all …]
Dfunctional.uniform_location.txt25 + Location for all primitive types
29 - With all primitive types
55 Basic primitive type, array, nested array and min/max cases test with all basic
59 Min/max cases assign a single primitive either the largest valid location as
61 otherwise identical to the basic primitive type cases.
68 All primitive types used in these tests are randomized.
/external/deqp/modules/glshared/
DglsVertexArrayTests.cpp172 std::string Array::primitiveToString (Primitive primitive) in primitiveToString() argument
174 DE_ASSERT(primitive < PRIMITIVE_LAST); in primitiveToString()
185 return primitives[(int)primitive]; in primitiveToString()
738 GLenum ContextArray::primitiveToGL (Array::Primitive primitive) in primitiveToGL() argument
749 return primitives[(int)primitive]; in primitiveToGL()
1180 void ContextArrayPack::render (Array::Primitive primitive, int firstVertex, int vertexCount, bool u… in render() argument
1221 m_ctx.drawArrays(ContextArray::primitiveToGL(primitive), firstVertex, vertexCount - firstVertex); in render()
1343 …int count, int componentCount, int offset, int stride, Array::Primitive primitive, Array::InputTyp…
1344 … (int seed, int count, int componentCount, int stride, Array::Primitive primitive, Array::InputTyp…
1348 …, int count, int componentCount, int offset, int stride, Array::Primitive primitive, T min, T max);
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_prim.h131 u_vertices_per_prim(int primitive) in u_vertices_per_prim() argument
133 switch(primitive) { in u_vertices_per_prim()
171 u_gs_prims_for_vertices(int primitive, int vertices) in u_gs_prims_for_vertices() argument
173 switch(primitive) { in u_gs_prims_for_vertices()
/external/mesa3d/src/gallium/auxiliary/util/
Du_prim.h131 u_vertices_per_prim(int primitive) in u_vertices_per_prim() argument
133 switch(primitive) { in u_vertices_per_prim()
171 u_gs_prims_for_vertices(int primitive, int vertices) in u_gs_prims_for_vertices() argument
173 switch(primitive) { in u_gs_prims_for_vertices()
/external/chromium_org/tools/json_schema_compiler/dart_test/
Devents.idl18 // A primitive
30 // A primitive
44 // Documentation for an event with a non-optional primitive argument.
47 // Documentation for an event with an optional primitive argument.
/external/mesa3d/src/gallium/docs/source/
Dpipeline.txt12 primitive ID } System-generated values
27 primitive ID
79 primitive ID
101 primitive ID ]
113 primitive ID
/external/chromium_org/third_party/mesa/src/src/gallium/docs/source/
Dpipeline.txt12 primitive ID } System-generated values
27 primitive ID
79 primitive ID
101 primitive ID ]
113 primitive ID
/external/deqp/modules/gles2/functional/
Des2fDrawTests.cpp74 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES; in genBasicSpec()
114 … gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSp…
126 … gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSp… in AttributeGroup() argument
129 , m_primitive (primitive) in AttributeGroup()
147 spec.primitive = m_primitive; in init()
182 spec.primitive = m_primitive; in init()
228 spec.primitive = m_primitive; in init()
443 const gls::DrawTestSpec::Primitive primitive[] = in init() local
467 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(primitive); ++ndx) in init()
469 const std::string name = gls::DrawTestSpec::primitiveToString(primitive[ndx]); in init()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
Dradeon_ioctl.c126 GLuint primitive, in radeonEmitVbufPrim() argument
131 assert(!(primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND)); in radeonEmitVbufPrim()
143 OUT_BATCH(primitive | RADEON_CP_VC_CNTL_PRIM_WALK_LIST | in radeonEmitVbufPrim()
159 OUT_BATCH(primitive | in radeonEmitVbufPrim()
218 GLuint primitive, in radeonAllocEltsOpenEnded() argument
226 fprintf(stderr, "%s %d prim %x\n", __FUNCTION__, min_nr, primitive); in radeonAllocEltsOpenEnded()
228 assert((primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND)); in radeonAllocEltsOpenEnded()
244 OUT_BATCH(primitive | in radeonAllocEltsOpenEnded()
252 OUT_BATCH(primitive | in radeonAllocEltsOpenEnded()
267 __FUNCTION__, primitive); in radeonAllocEltsOpenEnded()
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_ioctl.c126 GLuint primitive, in radeonEmitVbufPrim() argument
131 assert(!(primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND)); in radeonEmitVbufPrim()
143 OUT_BATCH(primitive | RADEON_CP_VC_CNTL_PRIM_WALK_LIST | in radeonEmitVbufPrim()
159 OUT_BATCH(primitive | in radeonEmitVbufPrim()
218 GLuint primitive, in radeonAllocEltsOpenEnded() argument
226 fprintf(stderr, "%s %d prim %x\n", __FUNCTION__, min_nr, primitive); in radeonAllocEltsOpenEnded()
228 assert((primitive & RADEON_CP_VC_CNTL_PRIM_WALK_IND)); in radeonAllocEltsOpenEnded()
244 OUT_BATCH(primitive | in radeonAllocEltsOpenEnded()
252 OUT_BATCH(primitive | in radeonAllocEltsOpenEnded()
267 __FUNCTION__, primitive); in radeonAllocEltsOpenEnded()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.primitive_restart.txt29 + All primitive types
32 - Use/don't use two consecutive primitive restarts
43 defined with the same index array, using the fixed primitive restart index to
57 calls instead of using primitive restarts.
/external/deqp/modules/gles3/functional/
Des3fDrawTests.cpp91 if (spec.primitive == gls::DrawTestSpec::PRIMITIVE_POINTS) in addTestIterations()
105 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES; in genBasicSpec()
144 … gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSp…
156 … gls::DrawTestSpec::DrawMethod drawMethod, gls::DrawTestSpec::Primitive primitive, gls::DrawTestSp… in AttributeGroup() argument
159 , m_primitive (primitive) in AttributeGroup()
183 spec.primitive = m_primitive; in init()
218 spec.primitive = m_primitive; in init()
264 spec.primitive = m_primitive; in init()
324 spec.primitive = m_primitive; in init()
545 const gls::DrawTestSpec::Primitive primitive[] = in init() local
[all …]
/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java507 return primitive (first); in descriptorToClass()
525 component = primitive (first); in arrayOf()
533 Class primitive (char c) throws ClassNotFoundException in primitive() method in Types.typeDescriptorCompiler
564 return primitive (first); in descriptorToClass()
582 component = primitive (first); in arrayOf()
589 String primitive (char c) in primitive() method in Types.typeDescriptorCompiler2

12345678