HomeSort by relevance Sort by last modified time
    Searched full:basictype (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/javassist/src/main/javassist/bytecode/stackmap/
TypeTag.java 22 TypeData INTEGER = new TypeData.BasicType("int", StackMapTable.INTEGER);
23 TypeData FLOAT = new TypeData.BasicType("float", StackMapTable.FLOAT);
24 TypeData DOUBLE = new TypeData.BasicType("double", StackMapTable.DOUBLE);
25 TypeData LONG = new TypeData.BasicType("long", StackMapTable.LONG);
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 294 DataType basicType = curType.getBasicType();
296 if (isDataTypeMatrix(basicType))
298 else if (isDataTypeVector(basicType))
349 DataType basicType = curType->getBasicType();
353 if (!isDataTypeMatrix(basicType))
356 basicType = getDataTypeFloatVec(getDataTypeMatrixNumRows(basicType));
362 if (!isDataTypeVector(basicType))
365 basicType = getDataTypeScalarType(basicType);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 262 private final int basicType;
491 * @param basicType basic type corresponding to this type; one of the
495 private Type(String descriptor, int basicType, int newAt) {
500 if ((basicType < 0) || (basicType >= BT_COUNT)) {
501 throw new IllegalArgumentException("bad basicType");
509 this.basicType = basicType;
522 * @param basicType basic type corresponding to this type; one of the
525 private Type(String descriptor, int basicType) {
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 246 private final int basicType;
424 * @param basicType basic type corresponding to this type; one of the
428 private Type(String descriptor, int basicType, int newAt) {
433 if ((basicType < 0) || (basicType >= BT_COUNT)) {
434 throw new IllegalArgumentException("bad basicType");
442 this.basicType = basicType;
455 * @param basicType basic type corresponding to this type; one of the
458 private Type(String descriptor, int basicType) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 247 private final int basicType;
425 * @param basicType basic type corresponding to this type; one of the
429 private Type(String descriptor, int basicType, int newAt) {
434 if ((basicType < 0) || (basicType >= BT_COUNT)) {
435 throw new IllegalArgumentException("bad basicType");
443 this.basicType = basicType;
456 * @param basicType basic type corresponding to this type; one of the
459 private Type(String descriptor, int basicType) {
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderSharedVarTests.cpp 73 SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize);
91 static std::string getBasicCaseDescription (DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
96 str << getDataTypeName(basicType) << ", work group size = " << workGroupSize;
100 SharedBasicVarCase::SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
101 : TestCase (context, name, getBasicCaseDescription(basicType, precision, workGroupSize).c_str())
102 , m_basicType (basicType)
367 for (int basicType = TYPE_FLOAT; basicType <= TYPE_BOOL_VEC4; basicType++)
369 if (glu::isDataTypeBoolOrBVec(DataType(basicType)))
    [all...]
es31fSSBOLayoutCase.cpp 377 glu::DataType basicType = type.getBasicType();
379 if (glu::isDataTypeMatrix(basicType))
382 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
383 : glu::getDataTypeMatrixNumRows(basicType);
389 return getDataTypeByteAlignment(basicType);
418 glu::DataType basicType = type.getBasicType();
420 if (glu::isDataTypeMatrix(basicType))
423 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
424 : glu::getDataTypeMatrixNumRows(basicType);
430 return getDataTypeByteAlignment(basicType);
    [all...]
  /external/lldb/include/lldb/API/
SBType.h 116 // Get the "lldb::BasicType" enumeration for a type. If a type is not a basic
118 lldb::BasicType
123 GetBasicType(lldb::BasicType type);
  /dalvik/tools/hprof-conv/
HprofConv.c 317 static int computeBasicLen(HprofBasicType basicType)
322 assert(basicType >= 0);
323 if (basicType >= maxSize)
325 return sizes[basicType];
349 HprofBasicType basicType;
352 basicType = buf[2];
353 basicLen = computeBasicLen(basicType);
355 DBUG("ERROR: invalid basicType %d\n", basicType);
370 HprofBasicType basicType;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
FetchResponseData.h 24 enum Type { BasicType, CORSType, DefaultType, ErrorType, OpaqueType };
FetchResponseData.cpp 34 FetchResponseData* response = new FetchResponseData(BasicType, m_status, m_statusMessage);
  /external/chromium_org/third_party/angle/src/compiler/translator/
parseConst.cpp 172 TBasicType basicType = mType.getBasicType();
185 leftUnionArray[mIndex].cast(basicType, rightUnionArray[i]);
200 leftUnionArray[i].cast(basicType, rightUnionArray[count]);
215 leftUnionArray[i].cast(basicType, rightUnionArray[0]);
IntermNode.cpp 450 TBasicType basicType = mLeft->getBasicType();
459 setType(TType(basicType, higherPrecision, EvqTemporary,
465 setType(TType(basicType, higherPrecision, EvqTemporary,
474 setType(TType(basicType, higherPrecision, EvqTemporary,
485 setType(TType(basicType, higherPrecision, EvqTemporary,
497 setType(TType(basicType, higherPrecision, EvqTemporary,
540 setType(TType(basicType, higherPrecision, EvqTemporary,
554 setType(TType(basicType, higherPrecision, EvqTemporary,
602 setType(TType(basicType, higherPrecision, EvqTemporary,
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp 385 log_uniform(const void *values, enum glsl_base_type basicType,
405 switch (basicType) {
583 enum glsl_base_type basicType;
598 basicType = GLSL_TYPE_FLOAT;
602 basicType = GLSL_TYPE_FLOAT;
606 basicType = GLSL_TYPE_FLOAT;
610 basicType = GLSL_TYPE_FLOAT;
614 basicType = GLSL_TYPE_UINT;
618 basicType = GLSL_TYPE_UINT;
622 basicType = GLSL_TYPE_UINT
    [all...]
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 385 log_uniform(const void *values, enum glsl_base_type basicType,
405 switch (basicType) {
583 enum glsl_base_type basicType;
598 basicType = GLSL_TYPE_FLOAT;
602 basicType = GLSL_TYPE_FLOAT;
606 basicType = GLSL_TYPE_FLOAT;
610 basicType = GLSL_TYPE_FLOAT;
614 basicType = GLSL_TYPE_UINT;
618 basicType = GLSL_TYPE_UINT;
622 basicType = GLSL_TYPE_UINT
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 480 const glu::DataType basicType = symbol.varType.getBasicType();
481 const int vecSize = glu::getDataTypeScalarSize(basicType);
483 if (glu::isDataTypeFloatOrVec(basicType))
485 else if (glu::isDataTypeIntOrIVec(basicType))
487 else if (glu::isDataTypeUintOrUVec(basicType))
489 else if (glu::isDataTypeMatrix(basicType))
491 int numRows = glu::getDataTypeMatrixNumRows(basicType);
492 int numCols = glu::getDataTypeMatrixNumColumns(basicType);
670 const glu::DataType basicType = outputType.getBasicType();
671 const int numComps = glu::getDataTypeNumComponents(basicType);
    [all...]
glsUniformBlockCase.hpp 76 VarType (glu::DataType basicType, deUint32 flags);
86 glu::DataType getBasicType (void) const { return m_data.basicType; }
109 glu::DataType basicType;
glsUniformBlockCase.cpp 128 VarType::VarType (glu::DataType basicType, deUint32 flags)
132 m_data.basicType = basicType;
420 glu::DataType basicType = type.getBasicType();
422 if (glu::isDataTypeMatrix(basicType))
425 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
426 : glu::getDataTypeMatrixNumRows(basicType);
431 return getDataTypeByteAlignment(basicType);
474 glu::DataType basicType = type.getBasicType();
478 entry.type = basicType;
    [all...]
  /frameworks/base/tools/aidl/
Type.cpp 44 VOID_TYPE = new BasicType("void",
52 BYTE_TYPE = new BasicType("byte",
60 INT_TYPE = new BasicType("int",
65 LONG_TYPE = new BasicType("long",
70 FLOAT_TYPE = new BasicType("float",
75 DOUBLE_TYPE = new BasicType("double",
325 BasicType::BasicType(const string& name, const string& marshallParcel,
345 BasicType::WriteToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags)
351 BasicType::CreateFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable**
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 353 int basicType = ref.getBasicType();
354 switch (basicType) {
366 int basicType = ref.getBasicType();
367 switch (basicType) {
379 int basicType = ref.getBasicType();
380 switch (basicType) {
392 int basicType = ref.getBasicType();
393 switch (basicType) {
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 524 int basicType = ref.getBasicType();
525 switch (basicType) {
537 int basicType = ref.getBasicType();
538 switch (basicType) {
550 int basicType = ref.getBasicType();
551 switch (basicType) {
563 int basicType = ref.getBasicType();
564 switch (basicType) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 525 int basicType = ref.getBasicType();
526 switch (basicType) {
538 int basicType = ref.getBasicType();
539 switch (basicType) {
551 int basicType = ref.getBasicType();
552 switch (basicType) {
564 int basicType = ref.getBasicType();
565 switch (basicType) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
ir.py 173 class BasicType(genpyx.BasicType, Named):
189 class GCCBuiltin(genpyx.GCCBuiltin, BasicType):
563 return self.spec and BasicType('void') in self.spec
573 if spec and BasicType('char') in spec and not BasicType('unsigned') in spec:
594 return spec and spec.find(BasicType)
614 # if BasicType("char") in spec and not Qualifier("unsigned") in spec:
654 # each TypeSpecifier needs to absorb primitive siblings (StorageClass, BasicType etc.)
661 if type(parent[i]) in (StorageClass, BasicType, Qualifier)
    [all...]
lexer.py 16 #from cparse import BasicType, Qualifier, StorageClass, Typedef, Ellipses, GCCBuiltin
30 self.lookup[t] = host.BasicType( t )
  /external/lldb/test/python_api/type/
TestTypeList.py 115 # SBType.GetBasicType() takes an enum 'BasicType' (lldb-enumerations.h).

Completed in 1083 milliseconds

1 2 3