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

12 3 4

  /external/clang/lib/Lex/
PPLexerChange.cpp 480 if (Module *Mod = getCurrentModule()) {
481 if (Mod->getUmbrellaHeader()) {
488 const DirectoryEntry *Dir = Mod->getUmbrellaDir().Entry;
510 << Mod->getFullModuleName() << RelativePath;
748 Module *Mod = getModuleContainingLocation(MD->getLocation());
749 if (Mod != LeavingMod &&
750 Mod->getTopLevelModule() == LeavingMod->getTopLevelModule())
  /external/llvm/lib/DebugInfo/PDB/Raw/
ModInfo.cpp 47 ulittle32_t Mod; // Currently opened module. This field is a
62 // implementation, but as with `Mod`, we ignore it
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 183 std::unique_ptr<Module> Mod(unwrap(M));
185 if (Mod)
188 for (auto &F : *Mod) {
197 EngineBuilder builder(std::move(Mod));
261 Module *Mod = unwrap(M);
262 unwrap(EE)->removeModule(Mod);
263 *OutMod = wrap(Mod);
  /external/llvm/lib/Target/
TargetMachineC.cpp 182 Module* Mod = unwrap(M);
188 Mod->setDataLayout(TM->createDataLayout());
205 pass.run(*Mod);
  /external/llvm/tools/lli/
lli.cpp 394 Module *Mod = Owner.get();
395 if (!Mod) {
406 Mod->setModuleIdentifier(CacheName);
411 if (std::error_code EC = Mod->materializeAll()) {
434 Mod->setTargetTriple(Triple::normalize(TargetTriple));
533 if (RemoteMCJIT && Triple(Mod->getTargetTriple()).isOSCygMing()) {
534 addCygMingExtraModule(*EE, Context, Mod->getTargetTriple());
569 Function *EntryFn = Mod->getFunction(EntryFunc);
602 Constant *Exit = Mod->getOrInsertFunction("exit", Type::getVoidTy(Context),
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 42 Module *Mod;
97 Module *Mod = const_cast<Function*>(Fun)->getParent();
98 NamedMDNode * MD = Mod->getOrInsertNamedMetadata("opencl.kernels");
449 Mod = &M;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasAnalysis.h 12 // implemented by all alias analysis implementations. Mod/Ref information is
212 /// Simple mod/ref information...
215 /// ModRefResult - Represent the result of a mod/ref query. Mod and Ref are
218 enum ModRefResult { NoModRef = 0, Ref = 1, Mod = 2, ModRef = 3 };
318 return !(MRB & Mod);
466 /// Higher level methods for querying mod/ref information.
CallGraph.h 74 Module *Mod; // The module this call graph represents
89 Module &getModule() const { return *Mod; }
  /prebuilts/go/darwin-x86/src/math/big/
int.go 249 // Mod sets z to the modulus x%y for y != 0 and returns z.
251 // Mod implements Euclidean modulus (unlike Go); see DivMod for more details.
252 func (z *Int) Mod(x, y *Int) *Int {
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
279 // div and mod''. ACM Transactions on Programming Languages and
405 // Exp sets z = x**y mod |m| (i.e. the sign of m is ignored), and returns z.
406 // If y <= 0, the result is 1 mod |m|; if m == nil or m == 0, z = x**y.
427 z.abs = z.abs.sub(mWords, z.abs) // z == x**y mod |m| && 0 <= z < |m|
573 g = g2.Mod(g, n)
616 a.Mod(&a, &b
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
int.go 249 // Mod sets z to the modulus x%y for y != 0 and returns z.
251 // Mod implements Euclidean modulus (unlike Go); see DivMod for more details.
252 func (z *Int) Mod(x, y *Int) *Int {
269 // DivMod sets z to the quotient x div y and m to the modulus x mod y
279 // div and mod''. ACM Transactions on Programming Languages and
405 // Exp sets z = x**y mod |m| (i.e. the sign of m is ignored), and returns z.
406 // If y <= 0, the result is 1 mod |m|; if m == nil or m == 0, z = x**y.
427 z.abs = z.abs.sub(mWords, z.abs) // z == x**y mod |m| && 0 <= z < |m|
573 g = g2.Mod(g, n)
616 a.Mod(&a, &b
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP224R1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
99 Mod.invert(SecP224R1Field.P, ((SecP224R1FieldElement)b).x, z);
122 Mod.invert(SecP224R1Field.P, x, z);
141 int[] r = Mod.random(SecP224R1Field.P);
265 Mod.invert(SecP224R1Field.P, e0, t);
  /external/llvm/include/llvm/MC/
MCExpr.h 400 Mod, ///< Signed remainder.
466 return create(Mod, LHS, RHS, Ctx);
  /external/llvm/lib/Analysis/
Lint.cpp 107 Module *Mod;
140 V->printAsOperand(MessagesStr, true, Mod);
182 Mod = F.getParent();
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Lint.cpp 102 Module *Mod;
129 WriteAsOperand(MessagesStr, V, true, Mod);
173 Mod = F.getParent();
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 842 Module *Mod = M->getParent()->getParent()->getParent();
846 M->setCalledFunction(Intrinsic::getDeclaration(Mod, Intrinsic::memcpy,
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 938 class Mod(Node):
951 return "Mod((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecImpl.c 47 UINT8 Mod;
64 Mod = (UINT8) (PrefixLength % 8);
69 // Check whether the mod part of host scope is zero or not.
71 if (Mod > 0) {
72 Mask = (UINT8) (0xFF << (8 - Mod));
112 UINT8 Mod;
121 Mod = (UINT8) (PrefixLength % 8);
127 // Zero the mod part of host scope.
129 if (Mod > 0) {
130 Mask = (UINT8) (0xFF << (8 - Mod));
    [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 32 '%': operator.mod,
753 class Mod(BinExpr):
  /external/llvm/lib/Target/AMDGPU/
AMDGPUPromoteAlloca.cpp 34 Module *Mod;
68 Mod(nullptr),
105 Mod = &M;
106 DL = &Mod->getDataLayout();
112 MDBuilder MDB(Mod->getContext());
150 const DataLayout &DL = Mod->getDataLayout();
154 for (GlobalVariable &GV : Mod->globals()) {
234 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_y);
236 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_z);
282 = Intrinsic::getDeclaration(Mod, Intrinsic::amdgcn_dispatch_ptr)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCExpr.h 299 Mod, ///< Signed remainder.
364 return Create(Mod, LHS, RHS, Ctx);
  /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)

Completed in 1380 milliseconds

12 3 4