Home
last modified time | relevance | path

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

/external/v8/tools/
Dtickprocessor.js654 function addEntry(funcInfo) { argument
659 prevEntry.start < funcInfo.start &&
660 prevEntry.start >= libStart && funcInfo.start <= libEnd) {
661 processorFunc(prevEntry.name, prevEntry.start, funcInfo.start);
663 if (funcInfo.end &&
664 (!prevEntry || prevEntry.start != funcInfo.start) &&
665 funcInfo.start >= libStart && funcInfo.end <= libEnd) {
666 processorFunc(funcInfo.name, funcInfo.start, funcInfo.end);
668 prevEntry = funcInfo;
672 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/autotest/client/deps/webgl_mpd/src/debug/
Dwebgl-debug.js217 var funcInfo = glValidEnumContexts[functionName];
218 if (funcInfo !== undefined) {
219 var funcInfo = funcInfo[numArgs];
220 if (funcInfo !== undefined) {
221 if (funcInfo[argumentIndex]) {
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderOperatorTests.cpp1834 const BuiltinFuncInfo& funcInfo = outerGroupInfo.funcInfos[funcInfoNdx]; in init() local
1835 const char* shaderFuncName = funcInfo.shaderFuncName; in init()
1836 const bool isBoolCase = (funcInfo.precisionMask == PRECMASK_NA); in init()
1837 …const bool isBoolOut = (funcInfo.outValue & (VALUE_BOOL | VALUE_BOOL_VEC | VALUE_BOOL_GENTYPE)… in init()
1838 …const bool isIntOut = (funcInfo.outValue & (VALUE_INT | VALUE_INT_VEC | VALUE_INT_GENTYPE)) !=… in init()
1839 …const bool isUintOut = (funcInfo.outValue & (VALUE_UINT | VALUE_UINT_VEC | VALUE_UINT_GENTYPE)… in init()
1842 if (!innerGroup || (std::string(innerGroup->getName()) != funcInfo.caseName)) in init()
1845 innerGroup = new TestCaseGroup(m_testCtx, funcInfo.caseName, groupDesc.c_str()); in init()
1851 …const int outScalarSize = ((funcInfo.outValue == VALUE_FLOAT) || (funcInfo.outValue == VALUE_BOOL… in init()
1859 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/WebAssembly/
DWebAssemblyISelLowering.h87 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
/external/llvm/lib/Target/Mips/
DMipsFastISel.cpp188 explicit MipsFastISel(FunctionLoweringInfo &funcInfo, in MipsFastISel() argument
190 : FastISel(funcInfo, libInfo), TM(funcInfo.MF->getTarget()), in MipsFastISel()
191 Subtarget(&funcInfo.MF->getSubtarget<MipsSubtarget>()), in MipsFastISel()
193 MFI = funcInfo.MF->getInfo<MipsFunctionInfo>(); in MipsFastISel()
194 Context = &funcInfo.Fn->getContext(); in MipsFastISel()
1881 FastISel *Mips::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
1883 return new MipsFastISel(funcInfo, libInfo); in createFastISel()
DMipsISelLowering.h231 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
595 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DMipsISelLowering.cpp456 MipsTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
458 if (!funcInfo.MF->getTarget().Options.EnableFastISel) in createFastISel()
459 return TargetLowering::createFastISel(funcInfo, libInfo); in createFastISel()
460 return Mips::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h258 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
554 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DAArch64ISelLowering.cpp829 AArch64TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
831 return AArch64::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/ARM/
DARMFastISel.cpp91 explicit ARMFastISel(FunctionLoweringInfo &funcInfo, in ARMFastISel() argument
93 : FastISel(funcInfo, libInfo), in ARMFastISel()
95 &static_cast<const ARMSubtarget &>(funcInfo.MF->getSubtarget())), in ARMFastISel()
96 M(const_cast<Module &>(*funcInfo.Fn->getParent())), in ARMFastISel()
97 TM(funcInfo.MF->getTarget()), TII(*Subtarget->getInstrInfo()), in ARMFastISel()
99 AFI = funcInfo.MF->getInfo<ARMFunctionInfo>(); in ARMFastISel()
101 Context = &funcInfo.Fn->getContext(); in ARMFastISel()
3063 FastISel *ARM::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3065 if (funcInfo.MF->getSubtarget<ARMSubtarget>().useFastISel()) in createFastISel()
3066 return new ARMFastISel(funcInfo, libInfo); in createFastISel()
DARMISelLowering.h396 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
672 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DARMISelLowering.cpp1272 ARMTargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
1274 return ARM::createFastISel(funcInfo, libInfo); in createFastISel()
/external/llvm/lib/Target/X86/
DX86ISelLowering.h911 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
1157 FastISel *createFastISel(FunctionLoweringInfo &funcInfo,
DX86FastISel.cpp61 explicit X86FastISel(FunctionLoweringInfo &funcInfo, in X86FastISel() argument
63 : FastISel(funcInfo, libInfo) { in X86FastISel()
64 Subtarget = &funcInfo.MF->getSubtarget<X86Subtarget>(); in X86FastISel()
3604 FastISel *X86::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3606 return new X86FastISel(funcInfo, libInfo); in createFastISel()
DX86ISelLowering.cpp3879 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo, in createFastISel() argument
3881 return X86::createFastISel(funcInfo, libInfo); in createFastISel()
/external/guice/extensions/struts2/lib/
Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/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 ...