HomeSort by relevance Sort by last modified time
    Searched full:mpart (Results 1 - 20 of 20) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/actions/
AddNativeAction.java 32 private IWorkbenchPart mPart;
51 AddNativeWizard wizard = new AddNativeWizard(project, mPart.getSite()
53 WizardDialog dialog = new WizardDialog(mPart.getSite().getShell(), wizard);
66 mPart = targetPart;
  /external/llvm/tools/llvm-split/
llvm-split.cpp 56 SplitModule(std::move(M), NumOutputs, [&](std::unique_ptr<Module> MPart) {
65 verifyModule(*MPart);
66 WriteBitcodeToFile(MPart.get(), Out->os());
  /external/llvm/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Utils/
SplitModule.h 28 /// is called N times passing each individual partition as the MPart argument.
39 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 116 float fpart, mpart; local
134 mpart = pow2_table[POW2_TABLE_OFFSET + (int)(fpart * POW2_TABLE_SCALE)];
136 return epart.f * mpart;
164 float epart, mpart; local
167 /* mpart = log2_table[mantissa*LOG2_TABLE_SCALE + 0.5] */
168 mpart = log2_table[((num.i & 0x007fffff) + (1 << (22 - LOG2_TABLE_SIZE_LOG2))) >> (23 - LOG2_TABLE_SIZE_LOG2)];
169 return epart + mpart;
  /external/llvm/lib/Transforms/Utils/
SplitModule.cpp 230 function_ref<void(std::unique_ptr<Module> MPart)> ModuleCallback,
252 std::unique_ptr<Module> MPart(
260 MPart->setModuleInlineAsm("");
261 ModuleCallback(std::move(MPart));
  /external/llvm/lib/CodeGen/
ParallelCG.cpp 60 [&](std::unique_ptr<Module> MPart) {
69 WriteBitcodeToFile(MPart.get(), BCOS);

Completed in 1844 milliseconds