HomeSort by relevance Sort by last modified time
    Searched full:lastentry (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/
EblCmdMmu.c 297 MMU_ENTRY LastEntry, Entry;
309 LastEntry = MmuEntryCreate(Level,Table,Index);
312 LastEntry = PreviousEntry;
318 LastEntry = DumpMmuLevel(Level2,(UINT32*)(Entry.Value & 0xFFFFFC00),LastEntry);
320 if (MmuEntryIsValidAddress(LastEntry.Level,LastEntry.Value)) {
322 MmuEntryGetAddress(LastEntry),MmuEntryGetAddress(PreviousEntry)+MmuEntryGetSize(PreviousEntry)-1,
323 MmuEntryGetAttributesName(LastEntry));
325 LastEntry = Entry;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/MonoStatusCode/Library/Pei/MemoryStatusCode/
MemoryStatusCode.c 77 UINTN LastEntry;
133 PrivateData->StatusCodeMemoryPpi.LastEntry = 0;
223 if (StatusCodeMemoryPpi->LastEntry >= StatusCodeMemoryPpi->FirstEntry) {
224 LastEntry = StatusCodeMemoryPpi->LastEntry - StatusCodeMemoryPpi->FirstEntry;
226 Length = (StatusCodeMemoryPpi->LastEntry - StatusCodeMemoryPpi->FirstEntry) * sizeof (EFI_STATUS_CODE_ENTRY);
232 LastEntry = (PEI_STATUS_CODE_MAX_HEAP_ENTRY - StatusCodeMemoryPpi->FirstEntry) + StatusCodeMemoryPpi->LastEntry;
246 (StatusCodeMemoryPpi->LastEntry * sizeof (EFI_STATUS_CODE_ENTRY))
254 StatusCodeMemoryPpi->LastEntry = 0;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/RtMemoryStatusCode/
RtMemoryStatusCode.c 79 CurrentEntry = (EFI_STATUS_CODE_ENTRY *) (UINTN) (mStatusCodeMemoryPpi.Address + (mStatusCodeMemoryPpi.LastEntry * sizeof (EFI_STATUS_CODE_ENTRY)));
81 mStatusCodeMemoryPpi.LastEntry = (mStatusCodeMemoryPpi.LastEntry + 1) % MaxEntry;
82 if (mStatusCodeMemoryPpi.LastEntry == mStatusCodeMemoryPpi.FirstEntry) {
147 mStatusCodeMemoryPpi.LastEntry = (*StatusCodeMemoryPpi)->LastEntry;
185 for (Counter = mStatusCodeMemoryPpi.FirstEntry; Counter != mStatusCodeMemoryPpi.LastEntry; Counter++) {
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingNavigableMapTest.java 166 * We can't override lastEntry to delegate to standardLastEntry, as it would create an infinite
229 public Entry<K, V> lastEntry() {
277 assertNull(forwarding.lastEntry());
279 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
281 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
283 assertEquals(immutableEntry("c", 3), forwarding.lastEntry());
285 assertEquals(immutableEntry("b", 2), forwarding.lastEntry());
344 forward().lastEntry();
345 assertEquals("[lastEntry]", getCalls());
ForwardingSortedMultisetTest.java 79 public Entry<E> lastEntry() {
234 forward().lastEntry();
235 assertEquals("[lastEntry]", getCalls());
  /external/guava/guava/src/com/google/common/collect/
AbstractNavigableMap.java 49 public Entry<K, V> lastEntry() {
77 Entry<K, V> entry = lastEntry();
88 return headMap(key, false).lastEntry();
94 return headMap(key, true).lastEntry();
DescendingImmutableSortedMultiset.java 39 return forward.lastEntry();
43 public Entry<E> lastEntry() {
ForwardingNavigableMap.java 67 * A sensible definition of {@link #lowerEntry} in terms of the {@code lastEntry()} of
72 return headMap(key, false).lastEntry();
95 * A sensible definition of {@link #floorEntry} in terms of the {@code lastEntry()} of
100 return headMap(key, true).lastEntry();
202 public Entry<K, V> lastEntry() {
203 return delegate().lastEntry();
207 * A sensible definition of {@link #lastEntry} in terms of the {@code iterator()} of the
209 * wish to override {@code lastEntry} to forward to this implementation.
216 * A sensible definition of {@link #lastKey} in terms of {@code lastEntry}. If you override
217 * {@code lastEntry}, you may wish to override {@code lastKey} to forward to this implementation
    [all...]
SortedMultisets.java 81 return getElementOrThrow(multiset().lastEntry());
96 return getElementOrNull(multiset().headMultiset(e, OPEN).lastEntry());
101 return getElementOrNull(multiset().headMultiset(e, CLOSED).lastEntry());
UnmodifiableSortedMultiset.java 79 public Entry<E> lastEntry() {
80 return delegate().lastEntry();
DescendingMultiset.java 93 return forwardMultiset().lastEntry();
96 @Override public Entry<E> lastEntry() {
ForwardingSortedMultiset.java 62 * SortedMultiset#isEmpty}, {@link SortedMultiset#lastEntry}, {@link SortedMultiset#subMultiset},
127 public Entry<E> lastEntry() {
128 return delegate().lastEntry();
132 * A sensible definition of {@link #lastEntry()} in terms of {@code
EmptyImmutableSortedMultiset.java 43 public Entry<E> lastEntry() {
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.cpp 127 camera_metadata_entry lastEntry = lastValues.find(tag);
131 if (lastEntry.count > 0) {
133 if (lastEntry.type == entry.type &&
134 lastEntry.count == entry.count) {
136 size_t bytesPerValue = camera_metadata_type_size[lastEntry.type];
137 size_t entryBytes = bytesPerValue * lastEntry.count;
138 int cmp = memcmp(entry.data.u8, lastEntry.data.u8, entryBytes);
158 } else if (lastEntry.count > 0) {
  /libcore/ojluni/src/main/java/java/text/
MergeCollation.java 210 private transient PatternEntry lastEntry = null;
230 If the strength is RESET, then just change the lastEntry to
232 If not, then remove the current entry, and add it after lastEntry
242 if (lastEntry != null && newEntry.chars.equals(lastEntry.chars)
243 && newEntry.extension.equals(lastEntry.extension)) {
246 throw new ParseException("The entries " + lastEntry + " and "
281 int lastIndex = findLastEntry(lastEntry, excess);
286 lastEntry = saveEntry;
298 lastEntry = newEntry
    [all...]
PatternEntry.java 117 PatternEntry lastEntry)
120 if (strength == Collator.PRIMARY || lastEntry != null)
124 if (lastEntry != null) {
128 lastEntry.appendQuotedChars(toAddTo);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
UnmodifiableSortedMultiset.java 77 public Entry<E> lastEntry() {
78 return delegate().lastEntry();
SortedMultiset.java 37 Entry<E> lastEntry();
DescendingMultiset.java 93 return forwardMultiset().lastEntry();
96 @Override public Entry<E> lastEntry() {
SortedMultisets.java 78 return getElementOrThrow(multiset().lastEntry());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Ppi/StatusCodeMemory/
StatusCodeMemory.h 46 UINTN LastEntry;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetNavigationTester.java 112 assertNull(sortedMultiset.headMultiset(samples.e0, type).lastEntry());
119 assertNull(sortedMultiset.lastEntry());
146 assertNull(sortedMultiset.headMultiset(samples.e0, OPEN).lastEntry());
147 assertNull(sortedMultiset.tailMultiset(samples.e0, OPEN).lastEntry());
149 assertEquals(a, sortedMultiset.headMultiset(samples.e0, CLOSED).lastEntry());
155 assertEquals(a, sortedMultiset.lastEntry());
189 assertEquals(null, sortedMultiset.headMultiset(a.getElement(), OPEN).lastEntry());
190 assertEquals(a, sortedMultiset.headMultiset(b.getElement(), OPEN).lastEntry());
191 assertEquals(a, sortedMultiset.headMultiset(c.getElement(), OPEN).lastEntry());
197 assertEquals(a, sortedMultiset.headMultiset(a.getElement(), CLOSED).lastEntry());
    [all...]
  /packages/apps/TV/src/com/android/tv/guide/
ProgramManager.java 472 TableEntry lastEntry = entries.get(size - 1);
473 if (mEndUtcMillis < lastEntry.entryEndUtcMillis
474 && lastEntry.entryEndUtcMillis != Long.MAX_VALUE) {
475 mEndUtcMillis = lastEntry.entryEndUtcMillis;
485 TableEntry lastEntry = entries.get(entries.size() - 1);
486 if (mEndUtcMillis > lastEntry.entryEndUtcMillis) {
489 channelId, lastEntry.entryEndUtcMillis, mEndUtcMillis));
490 } else if (lastEntry.entryEndUtcMillis == Long.MAX_VALUE) {
494 lastEntry.channelId,
495 lastEntry.program
    [all...]
  /external/jline/src/src/main/java/jline/
History.java 128 int lastEntry = history.size() - 1;
129 if (lastEntry >= 0 && lastEntry != currentIndex) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
NavigableMapNavigationTester.java 103 assertNull(navigableMap.lastEntry());
138 assertEquals(a, navigableMap.lastEntry());
216 assertEquals(c, navigableMap.lastEntry());

Completed in 931 milliseconds

1 2 3 4