Home
last modified time | relevance | path

Searched refs:nValue (Results 1 – 7 of 7) sorted by relevance

/third_party/openmax/api/1.1.2/
DOMX_Types.h257 OMX_U32 nValue; /**< actual value */ member
265 OMX_S32 nValue; /**< actual value */ member
DOMX_Component.h253 OMX_U8 nValue[1]; member
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderPrimitiveCounter.cpp480 for (unsigned int nValue = (nEmittedValuesPerPrimitive * (nDrawnPrimitive)); in checkResult() local
481 nValue < (nEmittedValuesPerPrimitive * (nDrawnPrimitive + 1)); nValue++) in checkResult()
483 if ((unsigned int)data[nValue] != nDrawnPrimitive) in checkResult()
486 << "[" << nValue << "/" << (m_testConfiguration.m_numberOfDrawnPrimitives * in checkResult()
488 << "]: " << data[nValue] << " != " << nEmittedValuesPerPrimitive in checkResult()
/third_party/skia/third_party/externals/tint/tools/src/cmd/fix-tests/
Dmain.go149 …reExpectHasSubstr = regexp.MustCompile(`([./\\\w_\-:]*):(\d+).*\nValue of: .*\nExpected: has subst…
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingMiscTests.cpp3085 for (deUint32 nValue = 0; nValue < m_nRayAttributeU32s; ++nValue) in verifyResultBuffer() local
3089 if (ahitValues[nValue] != 1 + nHit + nValue) in verifyResultBuffer()
3094 if (chitValues[nValue] != 1 + nHit + nValue) in verifyResultBuffer()
3101 if (ahitValues[nValue] != 0) in verifyResultBuffer()
3106 if (chitValues[nValue] != 0) in verifyResultBuffer()
7361 for (deUint32 nValue = 0; nValue < m_nRayPayloadU32s; ++nValue) in verifyResultBuffer() local
7363 if (resultItemDataPtr[nValue] != (1 + nValue)) in verifyResultBuffer()
/third_party/flutter/skia/third_party/externals/wuffs/lang/check/
Dbounds.go1294 nValue := n.SmallPowerOf2Value()
1295 if nValue == 0 {
1298 cv := big.NewInt(int64(nValue))
/third_party/sqlite/src/
Dsqlite3.c157138 i64 nValue;
157165 p->nValue++;
157168 sqlite3_result_int64(pCtx, p->nValue);
157277 if( p->nValue==0 ){
157278 p->nValue = p->nStep;
157288 sqlite3_result_int64(pCtx, p->nValue);
157289 p->nValue = 0;
157327 p->nValue = p->nStep;
157329 double r = (double)p->nValue / (double)(p->nTotal-1);