OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:unsigned_type
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/AST/
BuiltinTypes.def
23
//
UNSIGNED_TYPE
(Id, SingletonId) - An unsigned integral type.
40
#ifndef
UNSIGNED_TYPE
41
#define
UNSIGNED_TYPE
(Id, SingletonId) BUILTIN_TYPE(Id, SingletonId)
64
UNSIGNED_TYPE
(Bool, BoolTy)
67
SHARED_SINGLETON_TYPE(
UNSIGNED_TYPE
(Char_U, CharTy))
70
UNSIGNED_TYPE
(UChar, UnsignedCharTy)
73
SHARED_SINGLETON_TYPE(
UNSIGNED_TYPE
(WChar_U, WCharTy))
76
UNSIGNED_TYPE
(Char16, Char16Ty)
79
UNSIGNED_TYPE
(Char32, Char32Ty)
82
UNSIGNED_TYPE
(UShort, UnsignedShortTy
[
all
...]
/art/runtime/base/
bit_utils.h
180
typedef typename std::make_unsigned<T>::type
unsigned_type
;
typedef
181
static_assert(sizeof(T) == sizeof(
unsigned_type
), "Unexpected type size mismatch!");
182
static_assert(std::numeric_limits<
unsigned_type
>::radix == 2, "Unexpected radix!");
183
return std::numeric_limits<
unsigned_type
>::digits;
260
typedef typename std::make_unsigned<T>::type
unsigned_type
;
typedef
264
? static_cast<
unsigned_type
>(-1 - value) + 1u // Avoid overflow.
265
: static_cast<
unsigned_type
>(value));
/external/clang/lib/Analysis/
PrintfFormatString.cpp
618
#define
UNSIGNED_TYPE
(Id, SingletonId)
/external/clang/lib/AST/
Type.cpp
[
all
...]
/external/clang/tools/libclang/
CIndex.cpp
[
all
...]
Completed in 435 milliseconds