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

  /bionic/libc/upstream-openbsd/lib/libc/locale/
wcstoul.c 14 typedef unsigned long uint_type; typedef
wcstoull.c 14 typedef unsigned long long int uint_type; typedef
wcstoumax.c 15 typedef uintmax_t uint_type; typedef
  /art/compiler/optimizing/
data_type.cc 40 uint32_t uint_type = static_cast<uint32_t>(type); local
41 CHECK_LE(uint_type, static_cast<uint32_t>(Type::kLast));
42 return kTypeNames[uint_type];
46 uint32_t uint_type = static_cast<uint32_t>(type); local
47 if (uint_type <= static_cast<uint32_t>(DataType::Type::kLast)) {
48 os << kTypeNames[uint_type];
50 os << "Type[" << uint_type << "]"; local
  /external/mesa3d/src/compiler/glsl/
ir_expression_operation.py 81 uint_type = type("unsigned", "u", "GLSL_TYPE_UINT") variable
87 all_types = (uint_type, int_type, float_type, double_type, bool_type)
88 numeric_types = (uint_type, int_type, float_type, double_type)
90 integer_types = (uint_type, int_type)
434 operation("f2u", 1, source_types=(float_type,), dest_type=uint_type, c_expression="(unsigned) {src0}"),
446 operation("u2f", 1, source_types=(uint_type,), dest_type=float_type, c_expression="(float) {src0}"),
448 operation("i2u", 1, source_types=(int_type,), dest_type=uint_type, c_expression="{src0}"),
450 operation("u2i", 1, source_types=(uint_type,), dest_type=int_type, c_expression="{src0}"),
460 operation("d2u", 1, source_types=(double_type,), dest_type=uint_type, c_expression="{src0}"),
462 operation("u2d", 1, source_types=(uint_type,), dest_type=double_type, c_expression="{src0}")
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
hex_float.h 66 // To specialize this type, you must override uint_type to define
72 typedef void uint_type; typedef in struct:spvutils::FloatProxyTraits
77 typedef uint32_t uint_type; typedef in struct:spvutils::FloatProxyTraits
89 typedef uint64_t uint_type; typedef in struct:spvutils::FloatProxyTraits
101 typedef uint16_t uint_type; typedef in struct:spvutils::FloatProxyTraits
117 typedef typename FloatProxyTraits<T>::uint_type uint_type; typedef in class:spvutils::FloatProxy
125 FloatProxy(T val) { data_ = BitwiseCast<uint_type>(val); }
129 FloatProxy(uint_type val) { data_ = val; }
133 return static_cast<uint_type>(data_
180 typedef void uint_type; typedef in struct:spvutils::HexFloatTraits
204 typedef uint32_t uint_type; typedef in struct:spvutils::HexFloatTraits
218 typedef uint64_t uint_type; typedef in struct:spvutils::HexFloatTraits
232 typedef uint16_t uint_type; typedef in struct:spvutils::HexFloatTraits
255 typedef typename Traits::uint_type uint_type; typedef in class:spvutils::HexFloat
670 typedef typename HF::uint_type uint_type; typedef
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cGPUShaderFP64Tests.cpp 13934 const Utils::_variable_type uint_type = Utils::getUintVariableType(1, n_rows); local
    [all...]

Completed in 271 milliseconds