OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsUnsigned
(Results
1 - 8
of
8
) sorted by null
/external/llvm/include/llvm/ADT/
APSInt.h
23
bool
IsUnsigned
;
26
explicit APSInt() :
IsUnsigned
(false) {}
30
explicit APSInt(uint32_t BitWidth, bool
isUnsigned
= true)
31
: APInt(BitWidth, 0),
IsUnsigned
(
isUnsigned
) {}
33
explicit APSInt(const APInt &I, bool
isUnsigned
= true)
34
: APInt(I),
IsUnsigned
(
isUnsigned
) {}
38
IsUnsigned
= RHS.
IsUnsigned
;
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h
21
bool
IsUnsigned
;
25
: BitWidth(Width),
IsUnsigned
(Unsigned) {}
28
: BitWidth(Value.getBitWidth()),
IsUnsigned
(Value.
isUnsigned
()) {}
31
bool
isUnsigned
() const { return
IsUnsigned
; }
41
Value.setIsUnsigned(
IsUnsigned
);
49
llvm::APSInt Result(Value, Value.
isUnsigned
());
56
return llvm::APSInt(BitWidth,
IsUnsigned
);
61
return llvm::APSInt::getMinValue(BitWidth,
IsUnsigned
);
[
all
...]
/external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp
20
if (
IsUnsigned
&& !AllowSignConversions &&
26
if (Value.isSigned() && !
IsUnsigned
)
37
MinBits = Value.getMinSignedBits() -
IsUnsigned
;
39
MinBits = Value.getActiveBits() + !
IsUnsigned
;
/external/llvm/lib/Support/
APSInt.cpp
21
ID.AddInteger((unsigned) (
IsUnsigned
? 1 : 0));
/external/clang/include/clang/Basic/
TargetBuiltins.h
99
NeonTypeFlags(EltType ET, bool
IsUnsigned
, bool IsQuad) : Flags(ET) {
100
if (
IsUnsigned
)
111
bool
isUnsigned
() const { return (Flags & UnsignedFlag) != 0; }
/external/clang/include/clang/AST/
TemplateBase.h
88
unsigned
IsUnsigned
: 1;
276
return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.
IsUnsigned
);
280
Integer.
IsUnsigned
);
/external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp
[
all
...]
/external/clang/utils/TableGen/
NeonEmitter.cpp
136
NeonTypeFlags(EltType ET, bool
IsUnsigned
, bool IsQuad) : Flags(ET) {
137
if (
IsUnsigned
)
[
all
...]
Completed in 2529 milliseconds