Home
last modified time | relevance | path

Searched refs:numTests (Results 1 – 10 of 10) sorted by relevance

/external/lzma/C/Util/SfxSetup/
DSfxSetup.c131 size_t numTests, pos; in FindSignature() local
146 numTests = numPrevBytes - k7zStartHeaderSize; in FindSignature()
147 for (pos = 0; pos < numTests; pos++) in FindSignature()
149 for (; buf[pos] != '7' && pos < numTests; pos++); in FindSignature()
150 if (pos == numTests) in FindSignature()
159 *resPos += numTests; in FindSignature()
160 numPrevBytes -= numTests; in FindSignature()
161 memmove(buf, buf + numTests, numPrevBytes); in FindSignature()
/external/llvm/utils/lit/lit/
Dmain.py20 def __init__(self, opts, numTests, progressBar=None): argument
22 self.numTests = numTests
42 self.progressBar.update(float(self.completed)/self.numTests,
56 self.completed, self.numTests))
/external/clang/utils/
Dtoken-delta.py146 self.numTests = 0
163 self.numTests += 1
229 tbmd.numTests)
/external/compiler-rt/test/builtins/Unit/ppc/
Dfloatditf_test.c15 for (i=0; i<numTests; ++i) { in main()
Dfloatunditf_test.c15 for (i=0; i<numTests; ++i) { in main()
Dfloatunditf_test.h19014 static const int numTests = sizeof(tests) / sizeof(struct testCase); variable
Dfloatditf_test.h38018 static const int numTests = sizeof(tests) / sizeof(struct testCase); variable
/external/deqp/scripts/
Dbuild_android_mustpass.py262 numTests = 0
266 numTests += 1
270 assert numGroups + numTests > 0
272 if numGroups > 0 and numTests > 0:
/external/lzma/CPP/7zip/Archive/7z/
D7zIn.cpp338 UInt32 numTests = numPrevBytes - kHeaderSize; in FindAndReadSignature() local
339 for (UInt32 pos = 0; pos < numTests; pos++) in FindAndReadSignature()
341 for (; buffer[pos] != '7' && pos < numTests; pos++); in FindAndReadSignature()
342 if (pos == numTests) in FindAndReadSignature()
352 curTestPos += numTests; in FindAndReadSignature()
353 numPrevBytes -= numTests; in FindAndReadSignature()
354 memmove(buffer, buffer + numTests, numPrevBytes); in FindAndReadSignature()
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c2708 const int32_t numTests = sizeof(tests)/sizeof(tests[0]); in TestAcceptLanguage() local
2728 for(i=0;i<numTests;i++) { in TestAcceptLanguage()