HomeSort by relevance Sort by last modified time
    Searched defs:vectorType (Results 1 - 4 of 4) sorted by null

  /external/flatbuffers/src/
idl_gen_js.cpp 217 case BASE_TYPE_VECTOR: return GenType(type.VectorType());
228 case BASE_TYPE_VECTOR: return GenGetter(type.VectorType(), arguments);
505 auto vectortype = field.value.type.VectorType(); local
506 auto vectortypename = GenTypeName(vectortype, false);
507 auto inline_size = InlineSize(vectortype);
511 if (vectortype.base_type == BASE_TYPE_STRUCT) {
513 } else if (vectortype.base_type == BASE_TYPE_STRING) {
520 if (vectortype.base_type == BASE_TYPE_STRUCT) {
522 } else if (vectortype.base_type == BASE_TYPE_STRING)
    [all...]
  /external/icu/icu4c/source/common/
utrace.c 280 char vectorType;
290 vectorType = fmt[fmtIx]; /* b, h, d, l, p, etc. */
291 if (vectorType != 0) {
304 switch (vectorType) {
  /external/deqp/modules/gles2/functional/
es2fDefaultVertexAttributeTests.cpp 327 const char* const vectorType = glu::getDataTypeName((glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::isDataTypeVector(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::TYPE_FLOAT));
340 buf << " highp " << vectorType << " normalizedValue = " << ((glu::getDataTypeScalarType(m_dataType) == glu::TYPE_FLOAT) ? ("") : (vectorType)) << "(a_value" << ((glu::isDataTypeMatrix(m_dataType)) ? ("[1]") : ("")) << ");\n";
342 buf << " highp " << vectorType << " normalizedValue = " << ((glu::getDataTypeScalarType(m_dataType) == glu::TYPE_FLOAT) ? ("") : (vectorType)) << "(a_value" << ((glu::isDataTypeMatrix(m_dataType)) ? ("[1]") : ("")) << ") / float(" << s_valueRange << ");\n";
345 buf << " highp " << vectorType << " positiveNormalizedValue = (normalizedValue + " << vectorType << "(1.0)) / 2.0;\n";
347 buf << " highp " << vectorType << " positiveNormalizedValue = normalizedValue;\n";
  /external/deqp/modules/gles3/functional/
es3fDefaultVertexAttributeTests.cpp 403 const char* const vectorType = glu::getDataTypeName((glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::isDataTypeVector(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::TYPE_FLOAT));
417 buf << " highp " << vectorType << " normalizedValue = " << ((glu::getDataTypeScalarType(m_dataType) == glu::TYPE_FLOAT) ? ("") : (vectorType)) << "(a_value" << ((glu::isDataTypeMatrix(m_dataType)) ? ("[1]") : ("")) << ");\n";
419 buf << " highp " << vectorType << " normalizedValue = " << ((glu::getDataTypeScalarType(m_dataType) == glu::TYPE_FLOAT) ? ("") : (vectorType)) << "(a_value" << ((glu::isDataTypeMatrix(m_dataType)) ? ("[1]") : ("")) << ") / float(" << s_valueRange << ");\n";
422 buf << " highp " << vectorType << " positiveNormalizedValue = (normalizedValue + " << vectorType << "(1.0)) / 2.0;\n";
424 buf << " highp " << vectorType << " positiveNormalizedValue = normalizedValue;\n";

Completed in 196 milliseconds