Home
last modified time | relevance | path

Searched refs:nextEntry (Results 1 – 18 of 18) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DSlotIndexes.h656 IndexListEntry *prevEntry, *nextEntry;
659 nextEntry = &getIndexAfter(mi).entry();
660 prevEntry = nextEntry->getPrev();
664 nextEntry = prevEntry->getNext();
669 unsigned dist = ((nextEntry->getIndex() - prevEntry->getIndex())/2) & ~3u;
674 insert(nextEntry, newEntry);
720 IndexListEntry *nextEntry = 0;
723 nextEntry = getTail();
725 nextEntry = &getMBBStartIdx(nextMBB).entry();
728 insert(nextEntry, startEntry);
[all …]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedHashMultimap.java354 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
367 return nextEntry != ValueSet.this; in iterator()
375 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry; in iterator()
378 nextEntry = entry.getSuccessorInValueSet(); in iterator()
491 ValueEntry<K, V> nextEntry = multimapHeaderEntry.successorInMultimap; in entryIterator()
496 return nextEntry != multimapHeaderEntry; in entryIterator()
504 ValueEntry<K, V> result = nextEntry; in entryIterator()
506 nextEntry = nextEntry.successorInMultimap; in entryIterator()
/external/guava/guava/src/com/google/common/collect/
DLinkedHashMultimap.java358 ValueSetLink<K, V> nextEntry = firstEntry; in iterator()
371 return nextEntry != ValueSet.this; in iterator()
379 ValueEntry<K, V> entry = (ValueEntry<K, V>) nextEntry; in iterator()
382 nextEntry = entry.getSuccessorInValueSet(); in iterator()
495 ValueEntry<K, V> nextEntry = multimapHeaderEntry.successorInMultimap; in entryIterator()
500 return nextEntry != multimapHeaderEntry; in entryIterator()
508 ValueEntry<K, V> result = nextEntry; in entryIterator()
510 nextEntry = nextEntry.successorInMultimap; in entryIterator()
DMapMakerInternalMap.java3596 ReferenceEntry<K, V> nextEntry;
3636 if (nextEntry != null) {
3637 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
3638 if (advanceTo(nextEntry)) {
3651 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
3652 if (advanceTo(nextEntry) || nextInChain()) {
3685 WriteThroughEntry nextEntry() {
3706 return nextEntry().getKey();
3714 return nextEntry().getValue();
3769 return nextEntry();
DHashBiMap.java293 BiEntry<K, V> nextEntry = entry.nextInKToVBucket; in rehashIfNecessary() local
295 entry = nextEntry; in rehashIfNecessary()
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
DWeakConcurrentMap.java293 private Map.Entry<WeakKey<K>, V> nextEntry; field in WeakConcurrentMap.EntryIterator
304 nextEntry = iterator.next(); in findNext()
305 nextKey = nextEntry.getKey().get(); in findNext()
310 nextEntry = null; in findNext()
325 return new SimpleEntry(nextKey, nextEntry); in next()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3collections.c201 pANTLR3_HASH_ENTRY nextEntry; in antlr3HashFree() local
225 nextEntry = entry->nextEntry; in antlr3HashFree()
246 entry = nextEntry; /* Load next pointer to see if we shoud free it */ in antlr3HashFree()
308 (*nextPointer) = entry->nextEntry; in antlr3HashRemoveI()
319 … nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */ in antlr3HashRemoveI()
320 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */ in antlr3HashRemoveI()
365 (*nextPointer) = entry->nextEntry; in antlr3HashRemove()
384 … nextPointer = & (entry->nextEntry); /* Address of the next pointer in the current entry */ in antlr3HashRemove()
385 entry = entry->nextEntry; /* Address of the next element in the bucket (if any) */ in antlr3HashRemove()
471 entry = entry->nextEntry; in antlr3HashGetI()
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DAnnotatedBytes.java165 Map.Entry<Integer, AnnotationEndpoint> nextEntry = annotatations.higherEntry(cursor); in annotate() local
166 if (nextEntry != null) { in annotate()
167 int nextKey = nextEntry.getKey(); in annotate()
171 AnnotationEndpoint nextEndpoint = nextEntry.getValue(); in annotate()
195 endPoint = nextEntry.getValue(); in annotate()
/external/deqp/framework/randomshaders/
DrsgVariableManager.hpp131 Iterator nextEntry = m_iter; in operator +() local
133 nextEntry = findNext(m_filter, nextEntry, m_end); in operator +()
134 return FilteredIterator(nextEntry, m_end, m_filter); in operator +()
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
DLocalCache.java543 Entry<K, Timestamped<V>> nextEntry; field in LocalCache.EntryIterator
551 if (nextEntry == null) { in next()
554 if (nextEntry == null) { in next()
559 lastEntry = nextEntry; in next()
560 nextEntry = null; in next()
566 if (nextEntry == null) { in hasNext()
570 nextEntry = next; in hasNext()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DSortedMapNavigationTester.java173 Entry<K, V> nextEntry = entryItr.next(); in testOrderedByComparator() local
174 assertTrue(comparator.compare(prevEntry.getKey(), nextEntry.getKey()) < 0); in testOrderedByComparator()
175 prevEntry = nextEntry; in testOrderedByComparator()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DAnalyzer.java256 while ((entry = nextEntry(zip, location)) != null) { in analyzeZip()
262 private ZipEntry nextEntry(ZipInputStream input, String location) in nextEntry() method in Analyzer
/external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
DInstrumenter.java216 while ((entry = nextEntry(zipin, name)) != null) { in instrumentZip()
232 private ZipEntry nextEntry(ZipInputStream input, String location) in nextEntry() method in Instrumenter
/external/mockito/src/test/java/org/mockito/internal/stubbing/defaultanswers/
DReturnsGenericDeepStubsTest.java41 Map.Entry<? extends Cloneable, Set<Number>> nextEntry = mock.entrySet().iterator().next(); in generic_deep_mock_frenzy__look_at_these_chained_calls() local
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java4254 ReferenceEntry<K, V> nextEntry;
4294 if (nextEntry != null) {
4295 for (nextEntry = nextEntry.getNext(); nextEntry != null; nextEntry = nextEntry.getNext()) {
4296 if (advanceTo(nextEntry)) {
4309 if ((nextEntry = currentTable.get(nextTableIndex--)) != null) {
4310 if (advanceTo(nextEntry) || nextInChain()) {
4344 WriteThroughEntry nextEntry() {
4365 return nextEntry().getKey();
4373 return nextEntry().getValue();
4433 return nextEntry();
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3collections.h83 struct ANTLR3_HASH_ENTRY_struct * nextEntry; member
/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/
Djdk6-compilation.txt96 86 java.util.HashMap$HashIterator::nextEntry (99 bytes)
Djdk7-compilation.txt116 1422 108 b java.util.HashMap$HashIterator::nextEntry (99 bytes)