HomeSort by relevance Sort by last modified time
    Searched refs:NumBytes (Results 26 - 50 of 68) sorted by null

12 3

  /external/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 105 unsigned NumBytes = 0;
108 ++NumBytes;
110 return NumBytes+1;
122 unsigned NumBytes = 0;
126 ++NumBytes;
132 return NumBytes+1;
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 173 unsigned &NumBytes,
177 unsigned &NumBytes, bool IsVarArg);
    [all...]
PPCISelLowering.cpp     [all...]
PPCISelLowering.h 581 int SPDiff, unsigned NumBytes,
  /external/llvm/include/llvm/MC/
MCStreamer.h 596 /// EmitFill - Emit NumBytes bytes worth of the value specified by
598 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
600 /// \brief Emit NumBytes worth of zeros.
602 virtual void EmitZeros(uint64_t NumBytes);
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 111 /// \brief Gets an llvm type of size NumBytes and alignment 1.
112 llvm::Type *getByteArrayType(CharUnits NumBytes) {
113 assert(!NumBytes.isZero() && "Empty byte arrays aren't allowed.");
115 return NumBytes == CharUnits::One() ? Type :
116 (llvm::Type *)llvm::ArrayType::get(Type, NumBytes.getQuantity());
    [all...]
CodeGenModule.cpp     [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 163 /// EmitFill - Emit NumBytes bytes worth of the value specified by
165 void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
167 for (uint64_t i = 0, e = NumBytes; i != e; ++i)
172 void MCStreamer::EmitZeros(uint64_t NumBytes) {
173 EmitFill(NumBytes, 0);
MCAsmStreamer.cpp 175 void EmitFill(uint64_t NumBytes, uint8_t FillValue) override;
732 /// EmitFill - Emit NumBytes bytes worth of the value specified by
734 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
735 if (NumBytes == 0) return;
738 OS << ZeroDirective << NumBytes;
746 MCStreamer::EmitFill(NumBytes, FillValue);
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 736 unsigned NumBytes = getFixupKindNumBytes(Fixup.getKind());
741 assert(Offset + NumBytes <= DataSize && "Invalid fixup offset!");
748 assert(NumBytes <= FullSizeBytes && "Invalid fixup size!");
754 for (unsigned i = 0; i != NumBytes; ++i) {
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 143 unsigned &NumBytes);
145 const Instruction *I, CallingConv::ID CC, unsigned &NumBytes);
    [all...]
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 205 unsigned &NumBytes,
210 unsigned &NumBytes, bool isVarArg);
    [all...]
ARMBaseInstrInfo.cpp     [all...]
ARMExpandPseudoInsts.cpp     [all...]
ARMISelDAGToDAG.cpp     [all...]
  /external/clang/lib/Frontend/
CacheTokens.cpp 215 void EmitBuf(const char *Ptr, unsigned NumBytes) {
216 Out.write(Ptr, NumBytes);
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 57 STATISTIC(NumBytes, "Number of bytes of machine code compiled");
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 828 int NumBytes = FltVal.getBitWidth() / 8; // 8 bits per byte.
831 int Start = (LittleEndian ? 0 : NumBytes - 1);
832 int Stop = (LittleEndian ? NumBytes : -1);
    [all...]
AsmPrinter.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 591 unsigned NumBytes = CCInfo.getNextStackOffset();
593 Chain = DAG.getCALLSEQ_START(Chain ,DAG.getConstant(NumBytes,
699 DAG.getConstant(NumBytes, getPointerTy(), true),
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 224 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
225 if (NumBytes->isNullValue())
228 if (ConstantInt *CI = dyn_cast<ConstantInt>(NumBytes))
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 462 unsigned NumBytes = CCInfo.getNextStackOffset();
529 Chain = DAG.getCALLSEQ_START(Chain, DAG.getConstant(NumBytes,
605 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
    [all...]

Completed in 651 milliseconds

12 3