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

  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 92 // MemKind says what type of memory this is and RegKind says what type
98 unsigned MemKind : 4;
165 createMem(MemoryKind MemKind, RegisterKind RegKind, unsigned Base,
169 Op->Mem.MemKind = MemKind;
234 bool isMem(MemoryKind MemKind) const {
236 (Mem.MemKind == MemKind ||
239 (Mem.MemKind == BDMem && MemKind == BDXMem)))
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocChecker.cpp 266 MemoryOperationKind MemKind) const;
567 MemoryOperationKind MemKind) const {
571 bool CheckFree = (MemKind == MemoryOperationKind::MOK_Any ||
572 MemKind == MemoryOperationKind::MOK_Free);
573 bool CheckAlloc = (MemKind == MemoryOperationKind::MOK_Any ||
574 MemKind == MemoryOperationKind::MOK_Allocate);
    [all...]

Completed in 67 milliseconds