HomeSort by relevance Sort by last modified time
    Searched refs:EV (Results 1 - 25 of 36) sorted by null

1 2

  /external/llvm/include/llvm/Support/
WindowsError.h 16 std::error_code mapWindowsError(unsigned EV);
  /external/llvm/lib/Object/
Error.cpp 24 std::string message(int ev) const override;
32 std::string _object_error_category::message(int EV) const {
33 object_error E = static_cast<object_error>(EV);
  /external/llvm/tools/llvm-readobj/
Error.cpp 23 std::string message(int ev) const override;
31 std::string _readobj_error_category::message(int EV) const {
32 switch (static_cast<readobj_error>(EV)) {
  /frameworks/compile/slang/
slang_rs_reflection_cpp.h 112 void genPointerTypeExportVariable(const RSExportVar *EV);
113 void genMatrixTypeExportVariable(const RSExportVar *EV);
114 void genRecordTypeExportVariable(const RSExportVar *EV);
116 void genGetterAndSetter(const RSExportPrimitiveType *EPT, const RSExportVar* EV);
117 void genGetterAndSetter(const RSExportVectorType *EVT, const RSExportVar* EV);
118 void genGetterAndSetter(const RSExportConstantArrayType *AT, const RSExportVar* EV);
119 void genGetterAndSetter(const RSExportRecordType *ERT, const RSExportVar *EV);
slang_rs_reflection_cpp.cpp 220 const RSExportVar *ev = *I; local
221 if (ev->isConst()) {
235 mOut.indent() << GetTypeName(ev->getType()) << " " RS_EXPORT_VAR_PREFIX
236 << ev->getName() << ";\n";
361 const RSExportVar *EV = *I;
362 if (!EV->getInit().isUninit()) {
363 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
365 genZeroInitExportVariable(EV->getName())
    [all...]
slang_rs_reflection.cpp 394 const RSExportVar *EV = *I;
395 if (!EV->getInit().isUninit()) {
396 genInitExportVariable(EV->getType(), EV->getName(), EV->getInit());
397 } else if (EV->getArraySize()) {
399 mOut.indent() << RS_EXPORT_VAR_PREFIX << EV->getName() << " = new "
400 << GetTypeName(EV->getType(), false) << "["
401 << EV->getArraySize() << "];\n";
402 size_t NumInits = EV->getNumInits()
    [all...]
slang_rs_reflection.h 182 void genExportVariable(const RSExportVar *EV);
183 void genPrimitiveTypeExportVariable(const RSExportVar *EV);
184 void genPointerTypeExportVariable(const RSExportVar *EV);
185 void genVectorTypeExportVariable(const RSExportVar *EV);
186 void genMatrixTypeExportVariable(const RSExportVar *EV);
187 void genConstantArrayTypeExportVariable(const RSExportVar *EV);
188 void genRecordTypeExportVariable(const RSExportVar *EV);
191 void genSetExportVariable(const std::string &TypeName, const RSExportVar *EV);
slang_rs_context.cpp 79 RSExportVar *EV = new RSExportVar(this, VD, ET);
80 if (EV == NULL)
83 mExportVars.push_back(EV);
slang_rs_backend.cpp 197 const RSExportVar *EV = *I;
198 const RSExportType *ET = EV->getType();
203 llvm::MDString::get(mLLVMContext, EV->getName().c_str()));
245 EV->getType()->getName().c_str()));
  /external/clang/test/Sema/
ms_class_layout.cpp 140 struct EV : CV, DV {
159 EV *j;
472 // CHECK: 0 | struct EV
486 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
487 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
  /external/llvm/lib/CodeGen/
AtomicExpandLoadLinkedPass.cpp 325 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User);
326 if (!EV)
329 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
332 if (EV->getIndices()[0] == 0)
333 EV->replaceAllUsesWith(Loaded);
335 EV->replaceAllUsesWith(Success);
337 PrunedInsts.push_back(EV);
341 for (auto EV : PrunedInsts)
342 EV->eraseFromParent()
    [all...]
  /external/oprofile/daemon/
opd_ibs_macro.h 389 #define AGG_IBS_EVENT(EV) opd_log_ibs_event(EV, trans)
395 #define AGG_IBS_COUNT(EV, COUNT) opd_log_ibs_count(EV, trans, COUNT)
  /external/llvm/lib/Support/
ErrorHandling.cpp 149 std::error_code llvm::mapWindowsError(unsigned EV) {
150 switch (EV) {
201 return std::error_code(EV, std::system_category());
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 257 if (ExtractValueInst *EV = dyn_cast<ExtractValueInst>(Ins))
258 if (EV->hasIndices())
259 index = *EV->idx_begin();
DeadArgumentElimination.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
InstCombine.h 220 Instruction *visitExtractValueInst(ExtractValueInst &EV);
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/inc/
mm_qcamera_main_menu.h 175 EV = 4,
  /device/moto/shamu/camera/QCamera/stack/mm-camera-test/inc/
mm_qcamera_main_menu.h 176 EV = 4,
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_main_menu.h 214 EV,
  /external/clang/include/clang/Format/
Format.h 34 std::string message(int EV) const override;
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_main_menu.c 92 {EV_GOTO_SUBMENU, "EV changes."},
122 {INCREASE_EV, "Increase EV by one step."},
123 {DECREASE_EV, "Decrease EV by one step."},
158 { EV, "Get exposure value"},
723 printf(" Camera is in EV change mode now \n");
732 printf("\nPlease enter your choice for EV changes: ");
1069 int32_t ev = 0; local
1114 int32_t ev = 0; local
    [all...]
  /device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_main_menu.c 102 {EV_GOTO_SUBMENU, "EV changes."},
132 {INCREASE_EV, "Increase EV by one step."},
133 {DECREASE_EV, "Decrease EV by one step."},
168 { EV, "Get exposure value"},
733 printf(" Camera is in EV change mode now \n");
742 printf("\nPlease enter your choice for EV changes: ");
1079 int32_t ev = 0; local
1124 int32_t ev = 0; local
    [all...]
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/src/
mm_qcamera_main_menu.c 100 {EV_GOTO_SUBMENU, "EV changes."},
135 {INCREASE_EV, "Increase EV by one step."},
136 {DECREASE_EV, "Decrease EV by one step."},
164 { EV, "Get exposure value"},
255 //TODO: find new method to calculate ev.
739 printf(" Camera is in EV change mode now \n");
748 printf("\nPlease enter your choice for EV changes: ");
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]

Completed in 480 milliseconds

1 2