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

1 2 3 4 5 6 7

  /external/skia/tools/mdbviz/
Model.cpp 10 #include "Model.h"
18 Model::Model() : fCurOp(0) {
23 Model::~Model() {
27 Model::ErrorCode Model::load(const char* filename) {
54 const char* Model::ErrorString(ErrorCode err) {
64 const char* Model::getOpName(int index) const {
68 bool Model::isHierarchyPush(int index) const
    [all...]
Model.h 15 class Model {
23 Model();
24 ~Model();
  /external/skqp/tools/mdbviz/
Model.cpp 10 #include "Model.h"
18 Model::Model() : fCurOp(0) {
23 Model::~Model() {
27 Model::ErrorCode Model::load(const char* filename) {
54 const char* Model::ErrorString(ErrorCode err) {
64 const char* Model::getOpName(int index) const {
68 bool Model::isHierarchyPush(int index) const
    [all...]
Model.h 15 class Model {
23 Model();
24 ~Model();
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 86 TLSModel::Model Model;
89 Model = Printer.TM.getTLSModel(GV);
91 Model == TLSModel::LocalDynamic)
92 Model = TLSModel::GeneralDynamic;
100 Model = TLSModel::GeneralDynamic;
102 switch (Model) {
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Default, Static, PIC_, DynamicNoPIC };
25 // Code model types.
27 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
  /external/swiftshader/third_party/LLVM/lib/Support/
Host.cpp 96 unsigned &Model) {
98 Model = (EAX >> 4) & 0xf; // Bits 4 - 7
103 // Examine extended model ID if family ID is 6 or F.
104 Model += ((EAX >> 16) & 0xf) << 4; // Bits 16 - 19
113 unsigned Model = 0;
114 DetectX86FamilyModel(EAX, Family, Model);
131 switch (Model) {
144 switch (Model) {
162 switch (Model) {
167 // model 0
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/feature/
Model.java 21 /** Holder for {@link android.os.Build#MODEL} features. */
22 public interface Model {
26 /** True when the {@link android.os.Build#MODEL} equals the {@code model} given. */
30 private ModelFeature(String model) {
31 mModel = model;
40 return android.os.Build.MODEL.equals(mModel);
  /external/llvm/lib/Target/
TargetMachine.cpp 82 /// Returns the code generation relocation model. The choices are static, PIC,
84 Reloc::Model TargetMachine::getRelocationModel() const { return RM; }
86 /// Returns the code model. The choices are small, kernel, medium, large, and
88 CodeModel::Model TargetMachine::getCodeModel() const { return CMModel; }
90 /// Get the IR-specified TLS model for Var.
91 static TLSModel::Model getSelectedTLSModel(const GlobalValue *GV) {
105 llvm_unreachable("invalid TLS model");
113 Reloc::Model RM = getRelocationModel();
153 TLSModel::Model TargetMachine::getTLSModel(const GlobalValue *GV) const {
155 Reloc::Model RM = getRelocationModel()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86Subtarget.cpp 70 // Large model never uses stubs.
241 unsigned Model = 0;
242 X86_MC::DetectFamilyModel(EAX, Family, Model);
243 if (IsAMD || (Family == 6 && Model >= 13)) {
248 if (Family == 15 && Model == 26) {
  /external/testng/src/main/java/org/testng/mustache/
Model.java 7 public class Model {
15 public Model(Map<String, Object> model) {
16 m_model = model;
81 return "[Model " + m_model + " subModel:" + m_subModels + "]";
  /frameworks/av/services/soundtrigger/
SoundTriggerHwService.h 64 class Model : public RefBase {
72 Model(sound_model_handle_t handle, audio_session_t session, audio_io_handle_t ioHandle,
75 ~Model() {}
131 sp<Model> getModel(sound_model_handle_t handle);
148 DefaultKeyedVector< sound_model_handle_t, sp<Model> > mModels;
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/Register/
Microcode.h 44 UINT32 Model:4;
80 /// Extended family, extended model, type, family, model, and stepping
83 /// given extended family, extended model, type, family, model, and
162 /// Extended family, extended model, type, family, model, and stepping
165 /// given extended family, extended model, type, family, model, and
  /external/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /external/tensorflow/tensorflow/python/keras/_impl/keras/engine/
training.py 75 List of standardized input arrays (one array per model input).
82 raise ValueError('Error when checking model ' + exception_prefix + ': '
116 raise ValueError('Error when checking model ' + exception_prefix +
118 'your model is not the size the model expected. '
124 'Error when checking model ' + exception_prefix +
125 ': you are passing a list as input to your model, '
126 'but the model expects a list of ' + str(len(names)) +
129 raise TypeError('Error when checking model ' + exception_prefix +
159 """Maps `sample_weight` or `class_weight` to model outputs
    [all...]
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonModel.h 41 using NeuralnetworksModel = ::android::hardware::neuralnetworks::V1_0::Model;
68 class Model {
71 Model() = delete;
72 Model(const Model&) = delete;
73 Model& operator=(const Model&) = delete;
74 Model(Model&& other);
75 Model& operator=(Model&& other)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
CodeGen.h 11 // example, relocation model.
20 // Relocation model types.
22 enum Model { Static, PIC_, DynamicNoPIC, ROPI, RWPI, ROPI_RWPI };
25 // Code model types.
28 enum Model { Default, JITDefault, Small, Kernel, Medium, Large };
42 enum Model {

Completed in 1049 milliseconds

1 2 3 4 5 6 7