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

  /external/clang/test/SemaCXX/
unused.cpp 5 class APInt {
8 class APSInt : public APInt {
15 APInt::operator=(RHS);
  /external/llvm/include/llvm/ADT/
APInt.h 1 //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
46 // APInt Class
51 /// APInt is a functional replacement for common case unsigned integer type like
54 /// than 64-bits of precision. APInt provides a variety of arithmetic operators
63 /// * All binary operators must be on APInt instances of the same bit width.
75 class APInt {
76 unsigned BitWidth; ///< The number of bits in this APInt.
85 /// This enum is used to hold the constants we needed for APInt.
98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
100 /// \brief Determine if this APInt just has one word to store value
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 1 //===-- APInt.cpp - Implement APInt class ---------------------------------===//
15 #include "llvm/ADT/APInt.h"
30 #define DEBUG_TYPE "apint"
36 assert(result && "APInt memory allocation fails!");
45 assert(result && "APInt memory allocation fails!");
77 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
85 void APInt::initSlowCase(const APInt& that) {
90 void APInt::initFromArray(ArrayRef<uint64_t> bigVal)
    [all...]

Completed in 142 milliseconds