HomeSort by relevance Sort by last modified time
    Searched refs:Raw (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 41 // Escape XML characters inside the raw string.
42 static void emitString(llvm::raw_svector_ostream &OS, const StringRef Raw) {
43 for (StringRef::iterator I = Raw.begin(), E = Raw.end(); I != E; ++I) {
ASTUnit.cpp     [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 7 Integer, Floating, Raw, Template
19 constexpr LitKind operator"" _kind2(const char *p) { return LitKind::Raw; }
38 static_assert(4e6_kind2 == LitKind::Raw, "");
  /external/llvm/include/llvm/
Attributes.h 80 uint64_t Raw() const { return Bits; }
95 // and also raw uint64_t objects with _i suffix to be used below for other
200 return 1U << ((Align.Raw() >> 16) - 1);
222 return 1U << ((StackAlign.Raw() >> 26) - 1);
341 /// getRawPointer - Return a raw pointer that uniquely identifies this
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 331 unsigned Raw;
332 memcpy(&Raw, static_cast<char *>(Data) + Offset, sizeof(unsigned));
333 return SourceLocation::getFromRawEncoding(Raw);
422 unsigned Raw = Loc.getRawEncoding();
423 Append(reinterpret_cast<char *>(&Raw),
424 reinterpret_cast<char *>(&Raw) + sizeof(unsigned),
  /external/oprofile/events/mips/25K/
events 36 event:0x12 counters:0,1 um:zero minimum:500 name:JTLB_MISSES_IFETCH : Raw count of Joint-TLB misses for instruction fetch
37 event:0x13 counters:0,1 um:zero minimum:500 name:JTLB_MISSES_LOADS_STORES : Raw count of Joint-TLB misses for loads/stores
  /external/llvm/lib/VMCore/
Attributes.cpp 158 ID.AddInteger(Attr[i].Attrs.Raw());
Core.cpp     [all...]
  /external/v8/tools/
grokdump.py 99 class Raw(ctypes.Structure):
105 for field, _ in Raw._fields_) + "}"
106 return Raw
    [all...]
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 179 // Store the alignment in the bitcode as a 16-bit raw value instead of a
182 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
185 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
186 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 150 // Store the alignment in the bitcode as a 16-bit raw value instead of a
153 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
156 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
157 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 172 // Store the alignment in the bitcode as a 16-bit raw value instead of a
175 uint64_t FauxAttr = PAWI.Attrs.Raw() & 0xffff;
178 (((PAWI.Attrs & Attribute::Alignment).Raw()-1) >> 16);
179 FauxAttr |= (PAWI.Attrs.Raw() & (0x3FFull << 21)) << 11;
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 469 // The alignment is stored as a 16-bit raw value from bits 31--16.
482 Record[i+1] = ReconstitutedAttr.Raw();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 496 // The alignment is stored as a 16-bit raw value from bits 31--16.
509 Record[i+1] = ReconstitutedAttr.Raw();
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 775 // The alignment is stored as a 16-bit raw value from bits 31--16.
788 Record[i+1] = ReconstitutedAttr.Raw();
    [all...]

Completed in 256 milliseconds