Home
last modified time | relevance | path

Searched refs:uint_type (Results 1 – 5 of 5) sorted by relevance

/aosp12/art/compiler/optimizing/
H A Ddata_type.cc40 uint32_t uint_type = static_cast<uint32_t>(type); in PrettyDescriptor() local
41 CHECK_LE(uint_type, static_cast<uint32_t>(Type::kLast)); in PrettyDescriptor()
42 return kTypeNames[uint_type]; in PrettyDescriptor()
46 uint32_t uint_type = static_cast<uint32_t>(type); in operator <<() local
47 if (uint_type <= static_cast<uint32_t>(DataType::Type::kLast)) { in operator <<()
48 os << kTypeNames[uint_type]; in operator <<()
50 os << "Type[" << uint_type << "]"; in operator <<()
/aosp12/bionic/libc/upstream-openbsd/lib/libc/locale/
H A D_wcstoul.h47 uint_type
51 uint_type acc, cutoff; in FUNCNAME()
90 cutoff = MAX_VALUE / (uint_type)base; in FUNCNAME()
91 cutlim = (int)(MAX_VALUE % (uint_type)base); in FUNCNAME()
106 acc *= (uint_type)base; in FUNCNAME()
H A Dwcstoul.c14 typedef unsigned long uint_type; typedef
H A Dwcstoull.c14 typedef unsigned long long int uint_type; typedef
H A Dwcstoumax.c15 typedef uintmax_t uint_type; typedef