HomeSort by: relevance | last modified time | path
    Searched refs:maxIndex (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/utils/ABITest/
ABITestGen.py 363 parser.add_option("", "--max", dest="maxIndex", metavar="N",
596 if opts.maxIndex is None:
598 opts.maxIndex = 10000000
600 opts.maxIndex = ftg.cardinality
601 opts.maxIndex = min(opts.maxIndex, ftg.cardinality)
602 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
604 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
664 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
  /src/sys/external/isc/atheros_hal/dist/ar5212/
ar2316.c 388 uint32_t sizeCurrVpdTable, maxIndex, tgtIndex;
468 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
470 while (ss < (int16_t)maxIndex)
480 if (tgtIndex > maxIndex) { /* need to extrapolate above */
484 (ss-maxIndex)*Vpd_step);
ar2317.c 366 uint32_t sizeCurrVpdTable, maxIndex, tgtIndex;
446 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
448 while (ss < (int16_t)maxIndex)
458 if (tgtIndex > maxIndex) { /* need to extrapolate above */
462 (ss-maxIndex)*Vpd_step);
ar2413.c 382 uint32_t sizeCurrVpdTable, maxIndex, tgtIndex;
462 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
464 while (ss < (int16_t)maxIndex)
474 if (tgtIndex > maxIndex) { /* need to extrapolate above */
478 (ss-maxIndex)*Vpd_step);
ar2425.c 387 uint32_t sizeCurrVpdTable, maxIndex, tgtIndex;
463 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
465 while (ss < (int16_t)maxIndex)
475 if (tgtIndex > maxIndex) { /* need to extrapolate above */
479 (ss-maxIndex)*Vpd_step);
ar5413.c 418 uint32_t sizeCurrVpdTable, maxIndex, tgtIndex;
498 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
500 while (ss < (int16_t)maxIndex)
510 if (tgtIndex > maxIndex) { /* need to extrapolate above */
514 (ss-maxIndex)*Vpd_step);
  /src/sys/external/isc/atheros_hal/dist/ar5416/
ar9285_reset.c 686 uint16_t sizeCurrVpdTable, maxIndex, tgtIndex;
787 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
789 while ((ss < maxIndex) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
799 if (tgtIndex >= maxIndex) { /* need to extrapolate above */
802 (ss - maxIndex +1) * vpdStep));
ar5416_reset.c 1966 uint16_t sizeCurrVpdTable, maxIndex, tgtIndex;
2063 maxIndex = (tgtIndex < sizeCurrVpdTable) ? tgtIndex : sizeCurrVpdTable;
2065 while ((ss < maxIndex) && (k < (AR5416_NUM_PDADC_VALUES - 1))) {
2075 if (tgtIndex > maxIndex) { /* need to extrapolate above */
2078 (ss - maxIndex +1) * vpdStep));
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d 71 $(T2 maxIndex,
73 `maxIndex([3, 4, 1, 2])` returns `1`.)
3748 $(LREF maxIndex), $(LREF maxPos)
3998 $(LREF maxIndex), $(REF min, std,algorithm,comparison), $(LREF minCount), $(LREF minElement), $(LREF minPos)
4157 ptrdiff_t maxIndex(alias pred = "a < b", Range)(Range range)
4169 assert(a.maxIndex == 2);
4173 assert(b.maxIndex == -1);
4178 assert(dogs.maxIndex!"a.age < b.age" == 1);
4185 assert(immArr.maxIndex == 0);
4189 assert(c.maxIndex == 1)
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/uni/
package.d 3841 enum maxIndex = roughedMaxIndex < translatedMaxIndex ?
3847 enum maxIndex = deduceMaxIndex!(Prefix)();
4084 static if (maxIndex != 0) // doesn't cover full range of size_t
4086 assert(curIndex <= maxIndex);
4087 addValue!lastLevel(defValue, maxIndex - curIndex);
4099 return Trie!(V, Key, maxIndex, Prefix)(table);
4121 private enum maxIndex = Args[0];
4161 assert(mapTrieIndex!Prefix(key) < maxIndex);
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 4441 size_t maxIndex = ((3U << 29) + (1U << ZSTD_WINDOWLOG_MAX)); /* ZSTD_CURRENT_MAX from zstd_compress_internal.h */
4455 while (approxIndex <= (maxIndex / 4) * 3) {
4481 while (approxIndex <= maxIndex) {

Completed in 39 milliseconds