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

  /art/compiler/optimizing/
instruction_simplifier_mips.cc 41 DataType::Type packed_type);
51 DataType::Type packed_type) {
64 if (packed_type != DataType::Type::kInt16 && packed_type != DataType::Type::kUint16 &&
65 packed_type != DataType::Type::kInt32 && packed_type != DataType::Type::kInt64 &&
66 packed_type != DataType::Type::kFloat32 && packed_type != DataType::Type::kFloat64) {
76 size_t component_shift = DataType::SizeShift(packed_type);
121 DataType::Type packed_type = instruction->GetType() local
128 DataType::Type packed_type = instruction->GetComponentType(); local
    [all...]
instruction_simplifier_shared.cc 293 DataType::Type packed_type = access->GetPackedType(); local
295 DataType::Size(packed_type)).Uint32Value();
296 size_t component_shift = DataType::SizeShift(packed_type);
  /external/mesa3d/src/compiler/glsl/
lower_packed_varyings.cpp 623 const glsl_type *packed_type; local
626 packed_type = glsl_type::get_instance(GLSL_TYPE_INT, components[slot], 1);
628 packed_type = glsl_type::get_instance(GLSL_TYPE_FLOAT, components[slot], 1);
630 packed_type =
631 glsl_type::get_array_instance(packed_type,
635 ir_variable(packed_type, packed_name, this->mode);
645 packed_var->data.interpolation = packed_type == glsl_type::ivec4_type
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 345 Reference(const uint8_t *data, uint8_t parent_width, uint8_t packed_type)
347 byte_width_ = 1U << static_cast<BitWidth>(packed_type & 3);
348 type_ = static_cast<Type>(packed_type >> 2);
736 auto packed_type = (data_ + len * byte_width_)[i];
738 return Reference(elem, byte_width_, packed_type);
788 auto packed_type = *--end; local
790 return Reference(end, byte_width, packed_type);
    [all...]

Completed in 136 milliseconds