HomeSort by relevance Sort by last modified time
    Searched defs:primitive (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERTaggedObject.java 43 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
45 return primitive.isConstructed();
59 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
60 int length = primitive.encodedLength();
86 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
91 out.writeLength(primitive.encodedLength());
92 out.writeObject(primitive);
100 if (primitive.isConstructed())
110 out.writeImplicitObject(primitive);
DLTaggedObject.java 38 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); local
40 return primitive.isConstructed();
80 ASN1Primitive primitive = obj.toASN1Primitive().toDLObject(); local
85 out.writeLength(primitive.encodedLength());
86 out.writeObject(primitive);
94 if (primitive.isConstructed())
104 out.writeImplicitObject(primitive);
BERTaggedObject.java 58 ASN1Primitive primitive = obj.toASN1Primitive().toDERObject(); local
60 return primitive.isConstructed();
74 ASN1Primitive primitive = obj.toASN1Primitive(); local
75 int length = primitive.encodedLength();
ASN1OctetString.java 15 * 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(); local
159 if (primitive instanceof ASN1OctetString
    [all...]
ASN1Sequence.java 48 * If the encoding is primitive, it shall include the fewest length octets necessary.
94 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive(); local
96 if (primitive instanceof ASN1Sequence)
98 return (ASN1Sequence)primitive;
ASN1Set.java 54 * If the encoding is primitive, it shall include the fewest length octets necessary.
135 ASN1Primitive primitive = ((ASN1Encodable)obj).toASN1Primitive(); local
137 if (primitive instanceof ASN1Set)
139 return (ASN1Set)primitive;
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
BenchmarkName.java 14 package android.opengl2.cts.primitive;
17 * Represents the different primitive benchmarks.
GLPrimitiveBenchmark.java 14 package android.opengl2.cts.primitive;
25 * Runs the Primitive OpenGL ES 2.0 Benchmarks.
GLPrimitiveActivity.java 14 package android.opengl2.cts.primitive;
  /external/caliper/examples/src/main/java/examples/
DoubleToStringBenchmark.java 82 @Benchmark int primitive(int reps) { method in class:DoubleToStringBenchmark
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs.h 46 * Hardware primitive type being drawn, e.g. _3DPRIM_TRILIST.
48 GLuint primitive:8; member in struct:brw_gs_prog_key
brw_clip.h 46 GLuint primitive:4; member in struct:brw_clip_prog_key
brw_sf.h 50 GLuint primitive:2; member in struct:brw_sf_prog_key
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_render.h 49 GLenum primitive; member in struct:nouveau_swtnl_state
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
RepresenterTest.java 33 "!!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) {
63 this.primitive = primitive;
118 // isValid is no JavaBean property (it must be a primitive then)
  /external/mesa3d/src/mesa/swrast/
s_span.h 124 GLenum primitive; member in struct:sw_span
173 #define INIT_SPAN(S, PRIMITIVE) \
175 (S).primitive = (PRIMITIVE); \
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationAnalyzer.java 95 AnnotationClass primitive = loadPrimitive(className); local
96 if (primitive != null) {
97 return addDimension(primitive.mTypeMirror, numDimensions);
  /prebuilts/tools/common/m2/repository/net/sf/ezmorph/ezmorph/1.0.6/
ezmorph-1.0.6.jar 
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 505 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 (char c method in class:Types.typeDescriptorCompiler2
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding_1.3.100.I20100601-0800.jar 
  /external/deqp/modules/gles2/functional/
es2fDrawTests.cpp 74 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);
121 gls::DrawTestSpec::Primitive m_primitive;
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)
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
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDrawTests.cpp 91 if (spec.primitive == gls::DrawTestSpec::PRIMITIVE_POINTS)
105 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES;
144 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);
151 gls::DrawTestSpec::Primitive m_primitive;
156 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)
159 , m_primitive (primitive)
183 spec.primitive = m_primitive;
218 spec.primitive = m_primitive
542 const gls::DrawTestSpec::Primitive primitive[] = local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawTests.cpp 184 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES;
233 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);
240 gls::DrawTestSpec::Primitive m_primitive;
245 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)
248 , m_primitive (primitive)
266 spec.primitive = m_primitive;
302 spec.primitive = m_primitive;
349 spec.primitive = m_primitive
673 const gls::DrawTestSpec::Primitive primitive[] = local
    [all...]
  /external/deqp/modules/glshared/
glsDrawTest.hpp 124 enum Primitive
181 static std::string primitiveToString (Primitive primitive);
219 Primitive primitive; member in struct:deqp::gls::DrawTestSpec
256 bool compare (gls::DrawTestSpec::Primitive primitiveType);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
sm4.h 125 unsigned primitive : 6; member in struct:sm4_token_instruction::__anon20011::__anon20020
155 unsigned primitive : 3; /* D3D_TESSELLATOR_OUTPUT_PRIMITIVE */ member in struct:sm4_token_instruction::__anon20011::__anon20026

Completed in 4419 milliseconds

1 2 3 4 5 6