HomeSort by relevance Sort by last modified time
    Searched refs:Model (Results 51 - 75 of 250) sorted by null

1 23 4 5 6 7 8 910

  /external/llvm/include/llvm/Target/
TargetMachine.h 79 /// CodeGenInfo - Low level target information such as relocation model.
165 /// getRelocationModel - Returns the code generation relocation model. The
167 Reloc::Model getRelocationModel() const;
169 /// getCodeModel - Returns the code model. The choices are small, kernel,
171 CodeModel::Model getCodeModel() const;
173 /// getTLSModel - Returns the TLS model which should be used for the given
175 TLSModel::Model getTLSModel(const GlobalValue *GV) const;
272 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/test/MC/ARM/
eh-directive-unwind_raw.s 62 @ CHECK: Model: Compact (Inline)
70 @ CHECK: Model: Compact (Inline)
80 @ CHECK: Model: Compact
91 @ CHECK: Model: Compact (Inline)
99 @ CHECK: Model: Compact (Inline)
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 63 class Model : public RefBase {
71 Model(sound_model_handle_t handle, audio_session_t session, audio_io_handle_t ioHandle,
73 ~Model() {}
135 sp<Model> getModel(sound_model_handle_t handle);
149 DefaultKeyedVector< sound_model_handle_t, sp<Model> > mModels;
SoundTriggerHwService.cpp 503 sp<Model> model = mModels.valueAt(i); local
504 ALOGV("detach() unloading model %d", model->mHandle);
505 if (model->mState == Model::STATE_ACTIVE) {
506 mHwDevice->stop_recognition(mHwDevice, model->mHandle);
508 mHwDevice->unload_sound_model(mHwDevice, model->mHandle);
555 sp<Model> model = new Model(*handle, session, ioHandle, device, sound_model->type) local
573 sp<Model> model = mModels.valueAt(index); local
599 sp<Model> model = getModel(handle); local
638 sp<Model> model = getModel(handle); local
673 sp<Model> model = getModel(recognitionEvent->model); local
697 sp<Model> model = getModel(soundmodelEvent->model); local
726 sp<Model> model; local
769 sp<Model> model = mModels.valueAt(i); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MmsThumbnailPresenter.java 23 import com.android.mms.model.AudioModel;
24 import com.android.mms.model.ImageModel;
25 import com.android.mms.model.Model;
26 import com.android.mms.model.SlideModel;
27 import com.android.mms.model.SlideshowModel;
28 import com.android.mms.model.VideoModel;
38 public MmsThumbnailPresenter(Context context, ViewInterface view, Model model) {
39 super(context, view, model);
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
datastore_models.py 13 class PersistentObjectStoreItem(db.Model):
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
state.h 56 ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR)
  /external/mesa3d/src/mesa/main/
state.h 56 ctx->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCTargetDesc.cpp 56 static MCCodeGenInfo *createAMDGPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
57 CodeModel::Model CM,
  /external/chromium_org/third_party/openssl/openssl/crypto/des/times/
aix.cc 3 This machine is a Bull Estrella Minitower Model MT604-100
  /external/chromium_org/tools/deep_memory_profiler/visualizer/
services.py 15 class Profiler(ndb.Model):
21 class Template(ndb.Model):
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCTargetDesc.cpp 55 StringRef TT, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) {
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUMCTargetDesc.cpp 57 static MCCodeGenInfo *createAMDGPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
58 CodeModel::Model CM,
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCTargetDesc.cpp 56 static MCCodeGenInfo *createAMDGPUMCCodeGenInfo(StringRef TT, Reloc::Model RM,
57 CodeModel::Model CM,
  /external/openssl/crypto/des/times/
aix.cc 3 This machine is a Bull Estrella Minitower Model MT604-100
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.cpp 71 /// TargetMachine ctor - Create an AArch64 architecture model.
76 Reloc::Model RM, CodeModel::Model CM,
89 Reloc::Model RM, CodeModel::Model CM,
98 Reloc::Model RM, CodeModel::Model CM,
AArch64MCInstLower.cpp 84 TLSModel::Model Model;
87 Model = Printer.TM.getTLSModel(GV);
92 Model = TLSModel::GeneralDynamic;
94 switch (Model) {
  /external/llvm/include/llvm/MC/
MCObjectFileInfo.h 195 void InitMCObjectFileInfo(StringRef TT, Reloc::Model RM, CodeModel::Model CM,
365 Reloc::Model getRelocM() const {
371 Reloc::Model RelocM;
372 CodeModel::Model CMModel;
  /external/llvm/include/llvm/Support/
TargetRegistry.h 85 Reloc::Model RM,
86 CodeModel::Model CM,
99 Reloc::Model RM,
100 CodeModel::Model CM,
292 MCCodeGenInfo *createMCCodeGenInfo(StringRef Triple, Reloc::Model RM,
293 CodeModel::Model CM,
349 Reloc::Model RM = Reloc::Default,
350 CodeModel::Model CM = CodeModel::Default,
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
Learning_StochasticLinearRanker.java 108 StochasticLinearRankerWithPrior.Model model = mLearningSlRanker.getModel(); local
112 objStream.writeObject(model);
117 throw new RuntimeException("Can't get model");
125 StochasticLinearRankerWithPrior.Model model = local
126 (StochasticLinearRankerWithPrior.Model) objStream.readObject();
129 boolean res = mLearningSlRanker.loadModel(model);
132 throw new RuntimeException("Can't load model");
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 204 Reloc::Model RM = Reloc::Default,
205 CodeModel::Model CMM =
580 Reloc::Model RelocModel;
581 CodeModel::Model CMModel;
652 /// setRelocationModel - Set the relocation model that the ExecutionEngine
654 EngineBuilder &setRelocationModel(Reloc::Model RM) {
662 EngineBuilder &setCodeModel(CodeModel::Model M) {
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUTargetMachine.cpp 44 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.cpp 62 /// HexagonTargetMachine ctor - Create an ILP32 architecture model.
70 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/lib/Target/X86/
X86TargetMachine.cpp 36 Reloc::Model RM, CodeModel::Model CM,
  /external/llvm/test/tools/llvm-readobj/ARM/
unwind.s 155 @ CHECK: Model: Compact (Inline)
171 @ CHECK: Model: Compact (Inline)
189 @ CHECK: Model: Compact
209 @ CHECK: Model: Generic
220 @ CHECK: Model: Compact (Inline)
235 @ CHECK: Model: Compact (Inline)
247 @ CHECK: Model: Generic
253 @ CHECK: Model: Compact (Inline)

Completed in 716 milliseconds

1 23 4 5 6 7 8 910