HomeSort by relevance Sort by last modified time
    Searched defs:Mod (Results 51 - 75 of 87) sorted by null

1 23 4

  /external/clang/lib/Sema/
Sema.cpp 753 Module *Mod = Stack.pop_back_val();
759 ModMap.resolveExports(Mod, /*Complain=*/false);
760 ModMap.resolveUses(Mod, /*Complain=*/false);
761 ModMap.resolveConflicts(Mod, /*Complain=*/false);
764 Stack.append(Mod->submodule_begin(), Mod->submodule_end());
    [all...]
SemaCodeComplete.cpp     [all...]
  /external/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 535 ulittle16_t Mod; // Module containing the actual symbol
1021 ulittle32_t ModFilenameOffset; // Index of mod filename in string table
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 693 unsigned Mod = BitWidth % APINT_BITS_PER_WORD;
694 Count -= Mod > 0 ? APINT_BITS_PER_WORD - Mod : 0;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ScalarEvolution.cpp 739 APInt Mod = APInt::getSignedMinValue(W+1);
741 MultiplyFactor = MultiplyFactor.multiplicativeInverse(Mod);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/clang/include/clang/Serialization/
ASTWriter.h 317 Module *Mod;
331 : Kind(Kind), Mod(M) {}
342 Module *getModule() const { return Mod; }
421 unsigned getSubmoduleID(Module *Mod);
616 unsigned getLocalOrImportedSubmoduleID(Module *Mod);
667 void ModuleRead(serialization::SubmoduleID ID, Module *Mod) override;
    [all...]
ASTReader.h 489 ModuleFile *Mod;
492 FileDeclsInfo() : Mod(nullptr) {}
493 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls)
494 : Mod(Mod), Decls(Decls) {}
520 ModuleFile *Mod;
624 Module *Mod;
    [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp 811 if (Module *Mod = ImportD->getImportedModule()) {
812 std::string ModName = Mod->getFullModuleName();
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 376 SDNode *Mod = CurDAG->getMachineNode(Hexagon::A2_tfrrcr, dl, MVT::i32,
384 { IntN->getOperand(2), I, SDValue(Mod,0), IntN->getOperand(0) });
398 SDNode *Mod = CurDAG->getMachineNode(Hexagon::A2_tfrrcr, dl, MVT::i32,
404 { IntN->getOperand(2), SDValue(Mod,0), IntN->getOperand(0) });
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 226 Module *Mod;
436 Mod = &M;
574 Constant *C = Mod->getOrInsertFunction(FName, FTT);
610 ArgTLS = Mod->getOrInsertGlobal("__dfsan_arg_tls", ArgTLSTy);
615 RetvalTLS = Mod->getOrInsertGlobal("__dfsan_retval_tls", ShadowTy);
621 Mod->getOrInsertGlobal(kDFSanExternShadowPtrMask, IntptrTy);
623 DFSanUnionFn = Mod->getOrInsertFunction("__dfsan_union", DFSanUnionFnTy);
631 DFSanCheckedUnionFn = Mod->getOrInsertFunction("dfsan_union", DFSanUnionFnTy);
640 Mod->getOrInsertFunction("__dfsan_union_load", DFSanUnionLoadFnTy);
647 Mod->getOrInsertFunction("__dfsan_unimplemented", DFSanUnimplementedFnTy)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
Verifier.cpp 123 Module *Mod; // Module we are verifying right now
147 action(AbortProcessAction), Mod(0), Context(0), DT(0),
152 : FunctionPass(ID), Broken(false), RealPass(true), action(ctn), Mod(0),
158 Mod = &M;
173 Mod = F.getParent();
315 WriteAsOperand(MessagesStr, V, true, Mod);
    [all...]
Core.cpp     [all...]
  /external/v8/src/mips64/
macro-assembler-mips64.cc 813 void MacroAssembler::Mod(Register rd, Register rs, const Operand& rt) {
819 mod(rd, rs, rt.rm());
829 mod(rd, rs, at);
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 18 typedef enum _operator { Add=1, Sub=2, Mult=3, Div=4, Mod=5, Pow=6, LShift=7,
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 760 mod(rem, rs, rt.rm());
772 mod(rem, rs, at);
800 void MacroAssembler::Mod(Register rd, Register rs, const Operand& rt) {
806 mod(rd, rs, rt.rm());
816 mod(rd, rs, at);
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 155 llvm::DIScope *Mod = getParentModuleOrNull(D);
157 Mod ? Mod : TheCU);
    [all...]
CodeGenModule.cpp     [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 2428 CXModule mod = clang_Cursor_getModule(Cursor); local
    [all...]

Completed in 944 milliseconds

1 23 4