Home
last modified time | relevance | path

Searched refs:funcInfo (Results 1 – 15 of 15) sorted by relevance

/external/v8/tools/
Dtickprocessor.js633 function addEntry(funcInfo) { argument
638 prevEntry.start < funcInfo.start &&
639 prevEntry.start >= libStart && funcInfo.start <= libEnd) {
640 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start);
642 if (funcInfo.end &&
643 (!prevEntry || prevEntry.start != funcInfo.start) &&
644 funcInfo.start >= libStart && funcInfo.end <= libEnd) {
645 processorFunc(funcInfo.name, funcInfo.start, funcInfo.end);
647 prevEntry = funcInfo;
651 var funcInfo = this.parseNextLine();
[all …]
/external/deqp/modules/gles2/functional/
Des2fShaderOperatorTests.cpp1236 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1237 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1238 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1239 …bool isIntCase = (funcInfo.input0.valueType & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)… in init()
1241 …bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != … in init()
1242 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0; in init()
1245 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName)) in init()
1248 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str()); in init()
1254 …int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL)) ? … in init()
1261 if (inScalarSize == 1) evalFunc = funcInfo.evalFuncScalar; in init()
[all …]
/external/deqp/modules/gles3/functional/
Des3fShaderOperatorTests.cpp1874 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1875 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1876 bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1877 …bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)) != … in init()
1878 bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) != 0; in init()
1879 …bool isUintOut = (funcInfo.outValue & (VALUE_UINT | VALUE_UINT_VEC | VALUE_UINT_GENTYPE)) != … in init()
1882 if (!innerGroup || (string(innerGroup->getName()) != funcInfo.caseName)) in init()
1885 innerGroup = new TestCaseGroup(m_context, funcInfo.caseName, groupDesc.c_str()); in init()
1891 …int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL)) ? … in init()
1899 if (inScalarSize == 1) evalFunc = funcInfo.evalFuncScalar; in init()
[all …]
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp175 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, in MipsFastISel() argument
177 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), in MipsFastISel()
178 Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), in MipsFastISel()
180 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); in MipsFastISel()
181 Context = &funcInfo.Fn->getContext(); in MipsFastISel()
1454 FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
1456 return new MipsFastISel(funcInfo, libInfo); in createFastISel()
DMipsISelLowering.h227 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
564 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DMipsISelLowering.cpp438 MipsTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
441 return TargetLowering::createFastISel(funcInfo, libInfo); in createFastISel()
442 return Mips::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h269 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
512 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DAArch64ISelLowering.cpp774 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
776 return AArch64::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp93 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, in ARMFastISel() argument
95 : FastISel(funcInfo, libInfo), in ARMFastISel()
97 &static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget())), in ARMFastISel()
98 M(const_cast<Module &>(*funcInfo.Fn->getParent())), in ARMFastISel()
99 TM(funcInfo.MF->getTarget()), TII(*Subtarget->getInstrInfo()), in ARMFastISel()
101 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); in ARMFastISel()
103 Context = &funcInfo.Fn->getContext(); in ARMFastISel()
3062 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3064 const TargetMachine &TM = funcInfo.MF->getTarget(); in createFastISel()
3066 static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget()); in createFastISel()
[all …]
DARMISelLowering.h371 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
614 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DARMISelLowering.cpp1177 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
1179 return ARM::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/X86/
DX86ISelLowering.h839 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
1081 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DX86FastISel.cpp60 explicit X86FastISel(FunctionLoweringInfo &funcInfo, in X86FastISel() argument
62 : FastISel(funcInfo, libInfo) { in X86FastISel()
63 Subtarget = &funcInfo.MF->getSubtarget<X86Subtarget>(); in X86FastISel()
3527 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3529 return new X86FastISel(funcInfo, libInfo); in createFastISel()
DX86ISelLowering.cpp3468 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3470 return X86::createFastISel(funcInfo, libInfo); in createFastISel()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...