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 69 EmitIntValue(dwarf::DW_LNS_extended_op, 1);
71 EmitIntValue(dwarf::DW_LNE_set_address, 1);
78 /// EmitIntValue - Special case of EmitValue that avoids the client having to
80 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size,
MCAsmStreamer.cpp 182 virtual void EmitIntValue(uint64_t Value, unsigned Size,
387 EmitIntValue(dwarf::DW_CFA_advance_loc4, 1);
610 void MCAsmStreamer::EmitIntValue(uint64_t Value, unsigned Size,
632 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
633 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
635 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
636 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
    [all...]

Completed in 40 milliseconds