/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
swap.h | 24 /*! \tparam T Type of the arguments to swap, should be instantiated with primitive C++ types only.
|
/system/keymaster/ |
key_exchange.h | 28 * key-exchange primitive.
|
/system/tools/aidl/tests/ |
aidl_test_client_primitives.h | 24 // Tests for passing and returning primitive types defined in the AIDL docs.
|
/art/compiler/jni/quick/ |
calling_convention.h | 24 #include "primitive.h" 35 Primitive::Type GetReturnType() const { 36 return Primitive::GetType(shorty_[0]); 40 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); 178 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[param]));
|
/frameworks/base/keystore/java/android/security/keystore/ |
AndroidKeyStoreProvider.java | 136 * primitive. 140 * @return KeyStore operation handle or {@code 0} if the provided primitive's KeyStore operation 143 * @throws IllegalArgumentException if the provided primitive is not supported or is not backed 145 * @throws IllegalStateException if the provided primitive is not initialized. 159 throw new IllegalArgumentException("Unsupported crypto primitive: " + cryptoPrimitive 163 throw new IllegalStateException("Crypto primitive not initialized"); 166 "Crypto primitive not backed by AndroidKeyStore provider: " + cryptoPrimitive
|
/external/deqp/modules/gles2/stress/ |
es2sDrawTests.cpp | 47 spec.primitive = gls::DrawTestSpec::PRIMITIVE_TRIANGLES; 235 gls::DrawTestSpec::Primitive primitives[] = 312 spec.primitive = random.chooseWeighted<gls::DrawTestSpec::Primitive> (DE_ARRAY_BEGIN(primitives), DE_ARRAY_END(primitives), primitiveWeights.weights); 359 if (spec.primitive != gls::DrawTestSpec::PRIMITIVE_POINTS) 365 if (spec.drawMethod == gls::DrawTestSpec::DRAWMETHOD_DRAWELEMENTS_RANGED && spec.indexMin == spec.indexMax && spec.primitive != gls::DrawTestSpec::PRIMITIVE_POINTS) 367 if (spec.attribs[0].useDefaultAttribute && spec.primitive != gls::DrawTestSpec::PRIMITIVE_POINTS) 371 if (spec.primitive == gls::DrawTestSpec::PRIMITIVE_TRIANGLES || spec.primitive == gls::DrawTestSpec::PRIMITIVE_TRIANGLE_FAN || spec.primitive == gls::DrawTestSpec::PRIMITIVE_TRIANGLE_STRIP [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_ioctl.c | 126 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); [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstType.java | 24 * Constants that represent an arbitrary type (reference or primitive). 96 * class corresponding to a given primitive type. For example, if 100 * @param primitiveType {@code non-null;} the primitive type 116 throw new IllegalArgumentException("not primitive: " + primitiveType); 236 * component type. If this is a primitive type, this returns "default".
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicDouble.java | 31 * <p><a name="bitEquals">This class compares primitive {@code double} 34 * which differs from both the primitive double {@code ==} operator 204 * after a narrowing primitive conversion. 212 * after a narrowing primitive conversion. 220 * after a narrowing primitive conversion.
|
/external/mesa3d/src/mesa/vbo/ |
vbo_split_inplace.c | 129 * primitive starting at 'prim->start', depending on the previous 146 * the primitive to indexed and pass to split_elts(). 200 /* Wrapped the primitive: 213 /* else convert to indexed primitive and pass to split_elts, 215 * vertex primitive for rendering...
|
/art/compiler/optimizing/ |
register_allocator.cc | 98 bool is_core_register = (interval->GetType() != Primitive::kPrimDouble) 99 && (interval->GetType() != Primitive::kPrimFloat); 140 Primitive::Type type = location.IsRegister() 141 ? Primitive::kPrimInt 142 : Primitive::kPrimFloat; 246 LiveInterval::MakeTempInterval(allocator_, Primitive::kPrimInt); 255 LiveInterval::MakeTempInterval(allocator_, Primitive::kPrimDouble); 258 if (codegen_->NeedsTwoRegisters(Primitive::kPrimDouble)) { 275 bool core_register = (instruction->GetType() != Primitive::kPrimDouble) 276 && (instruction->GetType() != Primitive::kPrimFloat) [all...] |
code_generator_arm64.h | 66 Location ARM64ReturnLocation(Primitive::Type return_type); 122 Location GetReturnLocation(Primitive::Type return_type); 137 Location GetReturnLocation(Primitive::Type return_type) const { 151 Location GetNextLocation(Primitive::Type type) OVERRIDE; 152 Location GetReturnLocation(Primitive::Type return_type) const OVERRIDE { 173 Location GetReturnLocation(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { 176 Location GetSetValueLocation(Primitive::Type type, bool is_instance) const OVERRIDE { 177 return Primitive::Is64BitType(type) 183 Location GetFpuLocation(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { 430 void MoveLocation(Location dst, Location src, Primitive::Type dst_type) OVERRIDE [all...] |
code_generator_x86_64.h | 93 Location GetReturnLocation(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { 96 Location GetSetValueLocation(Primitive::Type type, bool is_instance) const OVERRIDE { 97 return Primitive::Is64BitType(type) 103 Location GetFpuLocation(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { 117 Location GetNextLocation(Primitive::Type type) OVERRIDE; 118 Location GetReturnLocation(Primitive::Type type) const OVERRIDE; 302 void MoveLocation(Location dst, Location src, Primitive::Type dst_type) OVERRIDE; 382 bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { 404 void MoveFromReturnRegister(Location trg, Primitive::Type type) OVERRIDE;
|
graph_visualizer.cc | 235 char GetTypeId(Primitive::Type type) { 236 // Note that Primitive::Descriptor would not work for us 239 case Primitive::kPrimBoolean: return 'z'; 240 case Primitive::kPrimByte: return 'b'; 241 case Primitive::kPrimChar: return 'c'; 242 case Primitive::kPrimShort: return 's'; 243 case Primitive::kPrimInt: return 'i'; 244 case Primitive::kPrimLong: return 'j'; 245 case Primitive::kPrimFloat: return 'f'; 246 case Primitive::kPrimDouble: return 'd' [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/javassist/src/main/javassist/bytecode/analysis/ |
Type.java | 33 * All primitive and special types reuse the same instance, so identity comparison can 47 /** Represents the double primitive type */ 49 /** Represents the boolean primitive type */ 51 /** Represents the long primitive type */ 53 /** Represents the char primitive type */ 55 /** Represents the byte primitive type */ 57 /** Represents the short primitive type */ 59 /** Represents the integer primitive type */ 61 /** Represents the float primitive type */ 63 /** Represents the void primitive type * [all...] |
/art/runtime/lambda/ |
shorty_field_type.h | 23 #include "runtime/primitive.h" 37 // TODO: Refactor together with primitive.h 169 // Either a primitive, object, or closure left. No more arrays. 212 // Is this a primitive? 217 // Is this a narrow primitive (i.e. can fit into 1 virtual register)? 232 // Is this a wide primitive (i.e. needs exactly 2 virtual registers)? 361 // Returns true if 'T' is a primitive type (i.e. a built-in without nested references). 367 // Returns true if 'T' is a primitive type that is narrow (i.e. can be stored into 1 vreg). 373 // Returns true if 'T' is a primitive type that is wide (i.e. needs 2 vregs for storage).
|
/art/runtime/ |
utils_test.cc | 49 EXPECT_EQ("boolean", PrettyDescriptor(Primitive::kPrimBoolean)); 50 EXPECT_EQ("byte", PrettyDescriptor(Primitive::kPrimByte)); 51 EXPECT_EQ("char", PrettyDescriptor(Primitive::kPrimChar)); 52 EXPECT_EQ("short", PrettyDescriptor(Primitive::kPrimShort)); 53 EXPECT_EQ("int", PrettyDescriptor(Primitive::kPrimInt)); 54 EXPECT_EQ("float", PrettyDescriptor(Primitive::kPrimFloat)); 55 EXPECT_EQ("long", PrettyDescriptor(Primitive::kPrimLong)); 56 EXPECT_EQ("double", PrettyDescriptor(Primitive::kPrimDouble)); 57 EXPECT_EQ("void", PrettyDescriptor(Primitive::kPrimVoid));
|
reflection.cc | 210 StringPrintf("Invalid primitive conversion from %s to %s", expected, 669 return soa.AddLocalReference<jobject>(BoxPrimitive(Primitive::GetType(shorty[0]), result)); 672 mirror::Object* BoxPrimitive(Primitive::Type src_class, const JValue& value) { 673 if (src_class == Primitive::kPrimNot) { 676 if (src_class == Primitive::kPrimVoid) { 684 case Primitive::kPrimBoolean: 688 case Primitive::kPrimByte: 692 case Primitive::kPrimChar: 696 case Primitive::kPrimDouble: 700 case Primitive::kPrimFloat [all...] |
/art/runtime/verifier/ |
reg_type.cc | 463 Primitive::Type RegType::GetPrimitiveType() const { 465 return Primitive::kPrimNot; 467 return Primitive::kPrimBoolean; 469 return Primitive::kPrimByte; 471 return Primitive::kPrimShort; 473 return Primitive::kPrimChar; 475 return Primitive::kPrimFloat; 477 return Primitive::kPrimInt; 479 return Primitive::kPrimDouble; 482 return Primitive::kPrimLong [all...] |
/external/libchrome/base/memory/ |
shared_memory.h | 36 // The type of OS primitive that should back the SharedMemory object. 64 // around the OS primitive for a memory mapped file. 110 // Duplicates The underlying OS primitive. Returns NULLHandle() on failure. 111 // The caller is responsible for destroying the duplicated OS primitive. 137 // that force the underlying OS primitive to be a POSIX fd. Do not add new 291 // The OS primitive that backs the shared memory region.
|
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicLong.java | 292 * after a narrowing primitive conversion. 293 * @jls 5.1.3 Narrowing Primitive Conversions 309 * after a widening primitive conversion. 310 * @jls 5.1.2 Widening Primitive Conversions 318 * after a widening primitive conversion. 319 * @jls 5.1.2 Widening Primitive Conversions
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldSystemTest.java | 54 // copy from primitive array into object array 62 // copy from object array into primitive array 70 // copy from primitive array into an array of another primitive type 86 // copy from null into an array of a primitive type 94 // copy from a primitive array into null
|
/dalvik/dexgen/src/com/android/dexgen/rop/type/ |
Type.java | 109 * Put all the primitive types into the intern table. This needs 168 * representing a primitive type 175 * representing a primitive type 182 * representing a primitive type 189 * representing a primitive type 196 * representing a primitive type 203 * representing a primitive type 210 * representing a primitive type 217 * representing a primitive type 224 * representing a primitive typ [all...] |
/dalvik/dx/src/com/android/dx/rop/type/ |
Type.java | 107 * Put all the primitive types into the intern table. This needs 152 * representing a primitive type 159 * representing a primitive type 166 * representing a primitive type 173 * representing a primitive type 180 * representing a primitive type 187 * representing a primitive type 194 * representing a primitive type 201 * representing a primitive type 208 * representing a primitive typ [all...] |