HomeSort by: relevance | last modified time | path
    Searched defs:APInt (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APInt.cpp 1 //===-- APInt.cpp - Implement APInt class ---------------------------------===//
14 #include "llvm/ADT/APInt.h"
33 #define DEBUG_TYPE "apint"
77 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::APInt(unsigned numBits, ArrayRef<uint64_t> bigVal
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APInt.h 1 //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
36 class APInt;
38 inline APInt operator-(APInt);
41 // APInt Class
46 /// APInt is a functional replacement for common case unsigned integer type like
49 /// than 64-bits of precision. APInt provides a variety of arithmetic operators
58 /// * All binary operators must be on APInt instances of the same bit width.
70 class LLVM_NODISCARD APInt {
74 /// This enum is used to hold the constants we needed for APInt
    [all...]

Completed in 18 milliseconds