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

  /external/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/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/Mms/src/com/android/mms/model/
Model.java 18 package com.android.mms.model;
22 public class Model {
  /external/llvm/lib/Target/X86/
X86Subtarget.cpp 70 // Large model never uses stubs.
243 unsigned Model = 0;
244 X86_MC::DetectFamilyModel(EAX, Family, Model);
245 if (IsAMD || (Family == 6 && Model >= 13)) {
251 if (Family == 15 && Model == 26) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumView.java 40 public static interface Model {
65 public void setModel(Model model) {
71 if (model != null) {
73 mActivity, model, CACHE_SIZE,
77 setSlotCount(model.size());
AlbumSetView.java 47 public static interface Model {
92 public void setModel(AlbumSetView.Model model) {
98 if (model != null) {
100 mSelectionDrawer, model, CACHE_SIZE);
PhotoView.java 83 private Model mModel;
156 public void setModel(Model model) {
157 if (mModel == model) return;
158 mModel = model;
159 mTileView.setModel(model);
160 if (model != null) notifyOnNewImage();
641 public static interface Model extends TileImageView.Model {
TileImageView.java 73 private Model mModel;
122 public static interface Model {
138 public void setModel(Model model) {
139 mModel = model;
140 if (model != null) notifyModelInvalidated();
  /external/llvm/include/llvm/Target/
TargetLowering.h 66 enum Model {
73 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowPage.java 58 public static interface Model {
79 private Model mModel;
PhotoPage.java 84 private PhotoPage.Model mModel;
108 public static interface Model extends PhotoView.Model {
  /external/clang/lib/Driver/
Tools.cpp     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 664 * Light model state.
887 struct gl_lightmodel Model; /**< Lighting model */
    [all...]

Completed in 333 milliseconds