/prebuilts/gdb/darwin-x86/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 938 class Mod(Node): 951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECFieldElement.java | 6 import org.bouncycastle.math.raw.Mod; 416 Mod.invert(p, n, z); 457 x = x.mod(q); 712 // Output: c(z) = a(z) * b(z) mod f(z)
|
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 315 Module *Mod; 329 : Kind(Kind), Mod(M) {} 340 Module *getModule() const { return Mod; } 502 unsigned getSubmoduleID(Module *Mod); 780 unsigned getLocalOrImportedSubmoduleID(Module *Mod); [all...] |
ASTReader.h | 473 ModuleFile *Mod; 477 ReplacedDeclInfo() : Mod(nullptr), Offset(0), RawLoc(0) {} 478 ReplacedDeclInfo(ModuleFile *Mod, uint64_t Offset, unsigned RawLoc) 479 : Mod(Mod), Offset(Offset), RawLoc(RawLoc) {} 498 ModuleFile *Mod; 501 FileDeclsInfo() : Mod(nullptr) {} 502 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls) 503 : Mod(Mod), Decls(Decls) { [all...] |
/external/clang/lib/Sema/ |
Sema.cpp | 756 Module *Mod = Stack.pop_back_val(); 762 ModMap.resolveExports(Mod, /*Complain=*/false); 763 ModMap.resolveUses(Mod, /*Complain=*/false); 764 ModMap.resolveConflicts(Mod, /*Complain=*/false); 767 Stack.append(Mod->submodule_begin(), Mod->submodule_end()); [all...] |
SemaCodeComplete.cpp | [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/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/v8/src/mips64/ |
macro-assembler-mips64.cc | 868 void MacroAssembler::Mod(Register rd, Register rs, const Operand& rt) { 874 mod(rd, rs, rt.rm()); 884 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...] |
ASTReader.cpp | [all...] |
/external/v8/src/mips/ |
macro-assembler-mips.cc | 801 mod(rem, rs, rt.rm()); 813 mod(rem, rs, at); 841 void MacroAssembler::Mod(Register rd, Register rs, const Operand& rt) { 847 mod(rd, rs, rt.rm()); 857 mod(rd, rs, at); [all...] |
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | 154 llvm::DIScope *Mod = getParentModuleOrNull(D); 156 Mod ? Mod : TheCU); [all...] |
CodeGenModule.cpp | [all...] |
CGObjCMac.cpp | [all...] |
/external/clang/tools/c-index-test/ |
c-index-test.c | 2372 CXModule mod = clang_Cursor_getModule(Cursor); local [all...] |
/external/llvm/lib/IR/ |
Core.cpp | [all...] |