Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DTreeBasedTable.java329 C lastValue; in createColumnKeyIterator()
336 lastValue != null && comparator.compare(next, lastValue) == 0; in createColumnKeyIterator()
340 lastValue = next; in createColumnKeyIterator()
341 return lastValue; in createColumnKeyIterator()
345 lastValue = null; // clear reference to unused data in createColumnKeyIterator()
/external/tpm2/
DCryptoEngine.h149 UINT32 lastValue[4]; // used when the TPM does continuous self-test member
/external/protobuf/js/binary/
Ddecoder.js191 var lastValue = this.nextValue_;
207 return lastValue;
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
DFastFourierTransformer.java707 Complex lastValue = (Complex) lastDimension[vector[dimensionSize.length - 1]]; in set() local
710 return lastValue; in set()
/external/deqp/modules/gles31/functional/
Des31fAtomicCounterTests.cpp714 …const deUint32 lastValue = initialValue + (spec.useBranches ? spec.threadCount*spec.callCount - s… in checkPath() local
763 if (incrementCounts[pos] > 0 && pos >= (int)(lastValue - minValue)) in checkPath()
788 if (minValue + pos != lastValue) in checkPath()
/external/guava/guava-tests/test/com/google/common/collect/
DMapMakerInternalMapTest.java1658 private V lastValue; field in MapMakerInternalMapTest.CountingRemovalListener
1664 lastValue = notification.getValue(); in onRemoval()
1676 return lastValue; in getLastEvictedValue()
/external/clang/include/clang/AST/
DDecl.h608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; } in classofKind()