HomeSort by relevance Sort by last modified time
    Searched defs:Mod (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Mod.java 19 * $Id: Mod.java 468655 2006-10-28 07:12:06Z minchau $
28 * The 'mod' operation expression executer.
30 public class Mod extends Operation
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 27 auto Mod = parseAssemblyString(Source, Error, Ctx);
29 EXPECT_TRUE(Mod != nullptr);
40 std::unique_ptr<Module> Mod;
41 EXPECT_DEATH(Mod = parseAssemblyString(Source.substr(0, Source.size() - 2),
54 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping);
56 EXPECT_TRUE(Mod != nullptr);
72 auto Mod = parseAssemblyString(Source, Error, Ctx);
73 ASSERT_TRUE(Mod != nullptr);
74 auto &M = *Mod;
137 auto Mod = parseAssemblyString(Source, Error, Ctx, &Mapping)
    [all...]
  /external/llvm/include/llvm/ADT/
StringExtras.h 65 unsigned char Mod = static_cast<unsigned char>(X) & 15;
66 *--BufPtr = hexdigit(Mod, LowerCase);
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 37 Module *Mod;
58 Mod = &M;
130 Function *NewF = Mod->getFunction(Name);
132 NewF = Function::Create(FunctionType::get(F->getReturnType(), Types, false), GlobalValue::ExternalLinkage, Name, Mod);
R600TextureIntrinsicsReplacer.cpp 30 Module *Mod;
148 Function *F = Mod->getFunction(Name);
150 F = Function::Create(FT, GlobalValue::ExternalLinkage, Name, Mod);
214 Mod = &M;
AMDGPUPromoteAlloca.cpp 33 Module *Mod;
51 Mod = &M;
78 for (Module::global_iterator I = Mod->global_begin(),
79 E = Mod->global_end(); I != E; ++I) {
91 Mod->getDataLayout().getTypeAllocSize(GVTy->getElementType());
299 WorkGroupSize * Mod->getDataLayout().getTypeAllocSize(AllocaTy);
318 *Mod, GVTy, false, GlobalValue::ExternalLinkage, 0, I.getName(), 0,
322 Type::getInt32Ty(Mod->getContext()), false);
324 AttrSet.addAttribute(Mod->getContext(), 0, Attribute::ReadNone);
326 Value *ReadLocalSizeY = Mod->getOrInsertFunction
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonGenExtract.cpp 201 Module *Mod = BB->getParent()->getParent();
202 Value *ExtF = Intrinsic::getDeclaration(Mod, IntId);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP192K1Field.P, ((SecP192K1FieldElement)b).x, z);
121 Mod.invert(SecP192K1Field.P, x, z);
SecP192R1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP192R1Field.P, ((SecP192R1FieldElement)b).x, z);
121 Mod.invert(SecP192R1Field.P, x, z);
SecP224K1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
102 Mod.invert(SecP224K1Field.P, ((SecP224K1FieldElement)b).x, z);
125 Mod.invert(SecP224K1Field.P, x, z);
209 * which is ((4x)^(m + 1))/2 mod Q
SecP256K1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP256K1Field.P, ((SecP256K1FieldElement)b).x, z);
121 Mod.invert(SecP256K1Field.P, x, z);
SecP256R1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP256R1Field.P, ((SecP256R1FieldElement)b).x, z);
121 Mod.invert(SecP256R1Field.P, x, z);
SecP384R1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP384R1Field.P, ((SecP384R1FieldElement)b).x, z);
121 Mod.invert(SecP384R1Field.P, x, z);
SecP521R1FieldElement.java 6 import org.bouncycastle.math.raw.Mod;
98 Mod.invert(SecP521R1Field.P, ((SecP521R1FieldElement)b).x, z);
121 Mod.invert(SecP521R1Field.P, x, z);
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Mod.java 7 public abstract class Mod
11 // int x = d + (((d + 1) & 4) << 1); // d.x == 1 mod 2**4
12 int x = d; // d.x == 1 mod 2**3
13 x *= 2 - d * x; // d.x == 1 mod 2**6
14 x *= 2 - d * x; // d.x == 1 mod 2**12
15 x *= 2 - d * x; // d.x == 1 mod 2**24
16 x *= 2 - d * x; // d.x == 1 mod 2**48
  /external/clang/lib/Basic/
Module.cpp 246 Module *Mod = *I;
247 if (!Mod->IsExplicit)
248 Exported.push_back(Mod);
256 Module *Mod = Exports[I].getPointer();
259 Exported.push_back(Mod);
284 Module *Mod = Imports[I];
290 if (Mod == Restriction || Mod->isSubModuleOf(Restriction)) {
300 Exported.push_back(Mod);
  /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;
713 Module *Mod = getModuleContainingLocation(MD->getLocation());
714 if (Mod != LeavingMod)
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 182 std::unique_ptr<Module> Mod(unwrap(M));
184 if (Mod)
187 for (auto &F : *Mod) {
196 EngineBuilder builder(std::move(Mod));
258 Module *Mod = unwrap(M);
259 unwrap(EE)->removeModule(Mod);
260 *OutMod = wrap(Mod);
  /external/llvm/lib/Target/
TargetMachineC.cpp 193 Module* Mod = unwrap(M);
199 Mod->setDataLayout(TM->createDataLayout());
216 pass.run(*Mod);
  /external/llvm/tools/lli/
lli.cpp 407 Module *Mod = Owner.get();
408 if (!Mod) {
419 Mod->setModuleIdentifier(CacheName);
424 if (std::error_code EC = Mod->materializeAll()) {
446 Mod->setTargetTriple(Triple::normalize(TargetTriple));
538 if (RemoteMCJIT && Triple(Mod->getTargetTriple()).isOSCygMing()) {
539 addCygMingExtraModule(EE, Context, Mod->getTargetTriple());
574 Function *EntryFn = Mod->getFunction(EntryFunc);
588 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/llvm/include/llvm/MC/
MCExpr.h 424 Mod, ///< Signed remainder.
490 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/opencv3/3rdparty/jinja2/
nodes.py 32 '%': operator.mod,
753 class Mod(BinExpr):

Completed in 624 milliseconds

1 2 3