Searched defs:APInt (Results 1 - 5 of 5) sorted by relevance

/external/clang/test/SemaCXX/
H A Dunused.cpp7 class APInt { class in namespace:PR4103
10 class APSInt : public APInt {
17 APInt::operator=(RHS);
/external/llvm/include/llvm/ADT/
H A DAPInt.h1 //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
44 // APInt Class
49 /// APInt is a functional replacement for common case unsigned integer type like
52 /// than 64-bits of precision. APInt provides a variety of arithmetic operators
61 /// * All binary operators must be on APInt instances of the same bit width.
73 class APInt { class in namespace:llvm
74 unsigned BitWidth; ///< The number of bits in this APInt.
83 /// This enum is used to hold the constants we needed for APInt.
98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {} function in class:llvm::APInt
100 /// \brief Determine if this APInt jus
236 APInt(unsigned numBits, uint64_t val, bool isSigned = false) function in class:llvm::APInt
279 APInt(const APInt &that) : BitWidth(that.BitWidth), VAL(0) { function in class:llvm::APInt
287 APInt(APInt &&that) : BitWidth(that.BitWidth), VAL(that.VAL) { function in class:llvm::APInt
302 explicit APInt() : BitWidth(1), VAL(0) {} function in class:llvm::APInt
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPInt.h1 //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
44 // APInt Class
47 /// APInt - This class represents arbitrary precision constant integral values.
51 /// than 64-bits of precision. APInt provides a variety of arithmetic operators
60 /// * All binary operators must be on APInt instances of the same bit width.
73 class APInt { class in namespace:llvm
74 unsigned BitWidth; ///< The number of bits in this APInt.
83 /// This enum is used to hold the constants we needed for APInt.
95 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { } function in class:llvm::APInt
98 /// @brief Determine if this APInt jus
227 APInt(unsigned numBits, uint64_t val, bool isSigned = false) function in class:llvm::APInt
266 APInt(const APInt& that) function in class:llvm::APInt
283 explicit APInt() : BitWidth(1) {} function in class:llvm::APInt
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPInt.cpp1 //===-- APInt.cpp - Implement APInt class ---------------------------------===//
16 #include "llvm/ADT/APInt.h"
34 assert(result && "APInt memory allocation fails!");
43 assert(result && "APInt memory allocation fails!");
75 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
83 void APInt::initSlowCase(const APInt& that) {
88 void APInt::initFromArray(ArrayRef<uint64_t> bigVal) {
105 APInt function in class:APInt
110 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) function in class:APInt
115 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) function in class:APInt
[all...]
/external/llvm/lib/Support/
H A DAPInt.cpp1 //===-- APInt.cpp - Implement APInt class ---------------------------------===//
15 #include "llvm/ADT/APInt.h"
37 assert(result && "APInt memory allocation fails!");
46 assert(result && "APInt memory allocation fails!");
78 void APInt::initSlowCase(uint64_t val, bool isSigned) {
86 void APInt::initSlowCase(const APInt& that) {
91 void APInt::initFromArray(ArrayRef<uint64_t> bigVal) {
108 APInt function in class:APInt
113 APInt::APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]) function in class:APInt
118 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) function in class:APInt
[all...]

Completed in 919 milliseconds