Home
last modified time | relevance | path

Searched refs:spaceNeeded (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dreapits.c1068 int32_t spaceNeeded; in TestRegexCAPI() local
1098 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1102 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1129 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1133 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1136 spaceNeeded = u_strlen(textToSplit) - in TestRegexCAPI()
1140 for (sz=0; sz < spaceNeeded+1; sz++) { in TestRegexCAPI()
1145 if (sz >= spaceNeeded) { in TestRegexCAPI()
1155 TEST_ASSERT(spaceNeeded == requiredCapacity); in TestRegexCAPI()
1174 int32_t spaceNeeded; in TestRegexCAPI() local
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp1517 const unsigned int spaceNeeded = in drawLineLoop() local
1519 ANGLE_TRY(mLineLoopIB->reserveBufferSpace(context, spaceNeeded, in drawLineLoop()
1524 ANGLE_TRY(mLineLoopIB->mapBuffer(context, spaceNeeded, &mappedMemory, &offset)); in drawLineLoop()
1584 const unsigned int spaceNeeded = in drawLineLoop() local
1586 ANGLE_TRY(mLineLoopIB->reserveBufferSpace(context, spaceNeeded, in drawLineLoop()
1591 ANGLE_TRY(mLineLoopIB->mapBuffer(context, spaceNeeded, &mappedMemory, &offset)); in drawLineLoop()
1689 const unsigned int spaceNeeded = static_cast<unsigned int>(count) * sizeof(unsigned short); in getCountingIB() local
1691 if (!mCountingIB || mCountingIB->getBufferSize() < spaceNeeded) in getCountingIB()
1695 ANGLE_TRY(mCountingIB->reserveBufferSpace(context, spaceNeeded, in getCountingIB()
1699 ANGLE_TRY(mCountingIB->mapBuffer(context, spaceNeeded, &mappedMemory, nullptr)); in getCountingIB()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DRenderer11.cpp2001 unsigned int spaceNeeded = in drawLineLoop() local
2004 mLineLoopIB->reserveBufferSpace(context, spaceNeeded, gl::DrawElementsType::UnsignedInt)); in drawLineLoop()
2008 ANGLE_TRY(mLineLoopIB->mapBuffer(context, spaceNeeded, &mappedMemory, &offset)); in drawLineLoop()
2083 const unsigned int spaceNeeded = in drawTriangleFan() local
2085 ANGLE_TRY(mTriangleFanIB->reserveBufferSpace(context, spaceNeeded, in drawTriangleFan()
2090 ANGLE_TRY(mTriangleFanIB->mapBuffer(context, spaceNeeded, &mappedMemory, &offset)); in drawTriangleFan()
2092 memcpy(mappedMemory, &mScratchIndexDataBuffer[0], spaceNeeded); in drawTriangleFan()
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssTokens.java370 int spaceNeeded = openLimit - openLimitAfterClose; in closeBrackets() local
371 brackets = expandIfNecessary(brackets, bracketsLimit, spaceNeeded); in closeBrackets()