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

  /external/llvm/lib/MC/
MCStreamer.cpp 79 EmitIntValue(dwarf::DW_LNS_extended_op, 1);
81 EmitIntValue(dwarf::DW_LNE_set_address, 1);
88 /// EmitIntValue - Special case of EmitValue that avoids the client having to
90 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size,
MCAsmStreamer.cpp 191 virtual void EmitIntValue(uint64_t Value, unsigned Size,
440 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
669 void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
691 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
692 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
694 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
695 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
    [all...]

Completed in 22 milliseconds