/system/media/audio_utils/tests/ |
README.md | 0 primitive\_tests uses gtest framework
|
/art/runtime/ |
reflection-inl.h | 26 #include "primitive.h" 32 Primitive::Type srcType, Primitive::Type dstType, 34 DCHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot); 40 case Primitive::kPrimBoolean: // Fall-through. 41 case Primitive::kPrimChar: // Fall-through. 42 case Primitive::kPrimByte: 45 case Primitive::kPrimShort: 46 if (srcType == Primitive::kPrimByte) [all...] |
primitive.cc | 17 #include "primitive.h" 34 const char* Primitive::PrettyDescriptor(Primitive::Type type) { 35 CHECK(Primitive::kPrimNot <= type && type <= Primitive::kPrimVoid) << static_cast<int>(type); 39 std::ostream& operator<<(std::ostream& os, const Primitive::Type& type) { 41 if (type >= Primitive::kPrimNot && type <= Primitive::kPrimVoid) {
|
art_field-inl.h | 29 #include "primitive.h" 124 DCHECK_EQ(Primitive::kPrim ## type, GetTypeAsPrimitiveType()) << PrettyField(this); \ 133 DCHECK_EQ(Primitive::kPrim ## type, GetTypeAsPrimitiveType()) << PrettyField(this); \ 183 Primitive::Type type = GetTypeAsPrimitiveType(); 184 CHECK(type == Primitive::kPrimInt || type == Primitive::kPrimFloat) << PrettyField(this); 192 Primitive::Type type = GetTypeAsPrimitiveType(); 193 CHECK(type == Primitive::kPrimInt || type == Primitive::kPrimFloat) << PrettyField(this); 200 Primitive::Type type = GetTypeAsPrimitiveType() [all...] |
/art/compiler/optimizing/ |
side_effects_test.cc | 19 #include "primitive.h" 92 // Apply test to each individual primitive type. 93 for (Primitive::Type type = Primitive::kPrimNot; 94 type < Primitive::kPrimVoid; 95 type = Primitive::Type(type + 1)) { 96 // Same primitive type and access type: proper write/read dep. 103 // Same primitive type but different access type: no write/read dep. 114 // Different primitive type, same access type: no write/read dep. 116 SideEffects::FieldWriteOfType(Primitive::kPrimInt, false) [all...] |
code_generator_mips64.cc | 40 Location Mips64ReturnLocation(Primitive::Type return_type) { 42 case Primitive::kPrimBoolean: 43 case Primitive::kPrimByte: 44 case Primitive::kPrimChar: 45 case Primitive::kPrimShort: 46 case Primitive::kPrimInt: 47 case Primitive::kPrimNot: 48 case Primitive::kPrimLong: 51 case Primitive::kPrimFloat: 52 case Primitive::kPrimDouble [all...] |
induction_var_analysis.h | 101 Primitive::Type t) 113 Primitive::Type type; // precision of induction 134 Primitive::Type type) { 142 Primitive::Type type) { 159 InductionInfo* TransferShl(InductionInfo* a, InductionInfo* b, Primitive::Type type); 161 InductionInfo* TransferCnv(InductionInfo* a, Primitive::Type from, Primitive::Type to); 182 Primitive::Type type, 189 Primitive::Type type, 194 Primitive::Type type [all...] |
nodes_arm64.cc | 39 Primitive::Type result_type = instruction->AsTypeConversion()->GetResultType(); 40 Primitive::Type input_type = instruction->AsTypeConversion()->GetInputType(); 41 int result_size = Primitive::ComponentSize(result_type); 42 int input_size = Primitive::ComponentSize(input_type); 46 if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) { 52 } else if (result_type == Primitive::kPrimChar || 53 (input_type == Primitive::kPrimChar && input_size < result_size)) {
|
instruction_builder.h | 40 Primitive::Type return_type, 89 HInstruction* LoadLocal(uint32_t register_index, Primitive::Type type) const; 108 void Unop_12x(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc); 111 void Binop_23x(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc); 114 void Binop_23x_shift(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc); 117 Primitive::Type type, 122 void Binop_12x(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc); 125 void Binop_12x_shift(const Instruction& instruction, Primitive::Type type, uint32_t dex_pc); 137 Primitive::Type input_type, 138 Primitive::Type result_type [all...] |
/prebuilts/tools/common/m2/repository/net/sf/ezmorph/ezmorph/1.0.6/ |
ezmorph-1.0.6-sources.jar | |
/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);
|
ASN1Encodable.java | 10 * @return an ASN.1 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);
|
/libcore/ojluni/src/main/java/java/security/ |
CryptoPrimitive.java | 45 * Symmetric primitive: block cipher 50 * Symmetric primitive: stream cipher 55 * Symmetric primitive: message authentication code 60 * Symmetric primitive: key wrap 65 * Asymmetric primitive: public key encryption 70 * Asymmetric primitive: signature scheme 75 * Asymmetric primitive: key encapsulation mechanism 80 * Asymmetric primitive: key agreement and key distribution
|
/frameworks/base/tools/layoutlib/bridge/src/android/text/ |
Primitive.java | 21 // Based on the native implementation of Primitive in 23 public class Primitive { 36 private Primitive(@NonNull PrimitiveType type, int location, float width, float penalty) { 69 public Primitive getNewPrimitive(int location) { 71 return new Primitive(this, location, 0f, 0f); 74 public Primitive getNewPrimitive(int location, float value) { 77 return new Primitive(this, location, value, 0f); 79 return new Primitive(this, location, 0f, value); 83 public Primitive getNewPrimitive(int location, float width, float penalty) { 85 return new Primitive(this, location, width, penalty) [all...] |
/art/runtime/native/ |
java_lang_reflect_Field.cc | 62 Primitive::Type field_type, JValue* value) 68 case Primitive::kPrimBoolean: 71 case Primitive::kPrimByte: 74 case Primitive::kPrimChar: 77 case Primitive::kPrimInt: 78 case Primitive::kPrimFloat: 81 case Primitive::kPrimLong: 82 case Primitive::kPrimDouble: 85 case Primitive::kPrimShort: 88 case Primitive::kPrimNot [all...] |
java_lang_System.cc | 32 * We make guarantees about the atomicity of accesses to primitive variables. These guarantees 89 Primitive::Type dstComponentPrimitiveType = dstComponentType->GetPrimitiveType(); 94 case Primitive::kPrimVoid: 97 case Primitive::kPrimBoolean: 98 case Primitive::kPrimByte: 99 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 1U); 102 case Primitive::kPrimChar: 103 case Primitive::kPrimShort: 104 DCHECK_EQ(Primitive::ComponentSize(dstComponentPrimitiveType), 2U); 107 case Primitive::kPrimInt [all...] |
/external/deqp/framework/referencerenderer/ |
design.txt | 6 - must support primitive setup reference 52 - replaces primitive assembly? 54 Primitive assembly: 58 + full primitive type 62 + primitive list for rasterization / geometry shading 68 + primitive list 70 + changed primitive list 74 + primitive list
|
/external/v8/test/mjsunit/regress/ |
regress-1973.js | 31 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;
|
/art/runtime/interpreter/ |
interpreter_common.cc | 39 template<FindFieldType find_type, Primitive::Type field_type, bool do_access_check> 46 Primitive::ComponentSize(field_type)); 71 case Primitive::kPrimBoolean: 74 case Primitive::kPrimByte: 77 case Primitive::kPrimChar: 80 case Primitive::kPrimShort: 83 case Primitive::kPrimInt: 86 case Primitive::kPrimLong: 89 case Primitive::kPrimNot: 111 EXPLICIT_DO_FIELD_GET_ALL_TEMPLATE_DECL(InstancePrimitiveRead, Primitive::kPrimBoolean [all...] |
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Mesh.h | 26 enum Primitive { 32 Mesh(Primitive primitive, size_t vertexCount, size_t vertexSize, size_t texCoordsSize = 0); 59 Primitive getPrimitive() const; 94 Primitive mPrimitive;
|
/external/mockito/src/org/mockito/internal/util/ |
Primitives.java | 18 * Returns the primitive type of the given class.
24 * @param clazz The class from which primitive type has to be retrieved
26 * @return The primitive type if relevant, otherwise <code>null</code>
36 * Indicates if the given class is primitive type or a primitive wrapper.
39 * @return <code>true</code> if primitive or wrapper, <code>false</code> otherwise.
46 * Returns the boxed default value for a primitive or a primitive wrapper.
50 * <code>null</code> if the type is neither a primitive nor a wrapper
|
/external/dexmaker/src/main/java/com/google/dexmaker/ |
TypeId.java | 24 * A primitive type, interface or class. 26 * <p><strong>Warning:</strong> Use care when dealing with boxed primitive 27 * types. Java's lack of support for parameterized primitive types means that 28 * a primitive type like {@code int} and its boxed type {@code 31 * {@code java.lang.Integer} is used where the primitive type {@code int} is 35 /** The {@code boolean} primitive type. */ 39 /** The {@code byte} primitive type. */ 42 /** The {@code char} primitive type. */ 46 /** The {@code double} primitive type. */ 49 /** The {@code float} primitive type. * [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_primitive_restart.c | 38 * Check if the hardware's cut index support can handle the primitive 72 * Check if the hardware's cut index support can handle the primitive 94 /* The primitive restart index can't be handled, so take 107 /* Cut index supports these primitive types */ 110 /* Cut index does not support these primitive types */ 124 * Check if primitive restart is enabled, and if so, handle it properly. 127 * hardware will handle primitive restart. 142 /* If the driver has requested software handling of primitive restarts, 151 * of handling the primitive restart draw. 165 * primitive restart dra [all...] |
/cts/tests/openglperf2/src/android/opengl2/cts/primitive/ |
BenchmarkName.java | 14 package android.opengl2.cts.primitive; 17 * Represents the different primitive benchmarks.
|