/external/google-breakpad/src/common/ |
simple_string_dictionary.cc | 38 // property to ensure that Entry remains POD. 40 NonAllocatingMap<1, 1, 1>::Entry Compile_Assert__entry_must_be_pod;
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
hash.h | 53 typedef struct _entry { /* Minimum hash table entry -- superclass */
56 } Entry;
64 Entry *hash_get(Entry **, char *),
66 *hash_add(Entry **, char *, Entry *);
68 void killHashTable(Entry **);
71 Entry *hash_get(), **newHashTable(), *hash_add();
|
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/ |
EventQueue.java | 21 void enqueue(Entry entry); 29 interface Entry { 31 * Process the event associated with this entry. This will be called for every event in the
|
/external/v8/src/profiler/ |
circular-queue.h | 42 // Reserved values for the entry marker. 49 struct V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry { 50 Entry() : marker(kEmpty) {} 55 Entry* Next(Entry* entry); 57 Entry buffer_[Length]; 58 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* enqueue_pos_; 59 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* dequeue_pos_;
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/EfiRegTableLib/ |
EfiRegTableLib.c | 45 may also call BootScriptSave protocol if indicated in the Entry flags
47 @param Entry A pointer to the PCI_WRITE entry to process
50 when processing the entry.
58 EFI_REG_TABLE_PCI_WRITE *Entry,
66 (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH) (OPCODE_EXTRA_DATA (Entry->OpCode)),
67 (UINT64) Entry->PciAddress,
69 &Entry->Data
73 if (OPCODE_FLAGS (Entry->OpCode) & OPCODE_FLAG_S3SAVE) {
75 (EFI_BOOT_SCRIPT_WIDTH) (OPCODE_EXTRA_DATA (Entry->OpCode)), [all...] |
/external/libchrome/mojo/core/ |
watcher_set.h | 46 struct Entry { 47 Entry(const scoped_refptr<WatcherDispatcher>& dispatcher); 48 Entry(Entry&& other); 49 ~Entry(); 51 Entry& operator=(Entry&& other); 57 DISALLOW_COPY_AND_ASSIGN(Entry); 61 base::flat_map<WatcherDispatcher*, Entry> watchers_;
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/Arm/ |
EblCmdMmu.c | 82 MMU_ENTRY Entry;
83 Entry.Level = Level;
84 Entry.Value = Table[Index];
85 Entry.Table = Table;
86 Entry.Index = Index;
87 return Entry;
93 IN UINT32 Entry
99 if ((Entry & 0x3) == 0) { // Ignored
101 } else if ((Entry & 0x3) == 2) { // Section Type
107 if ((Entry & 0x3) == 0) { // Ignored [all...] |
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/ |
Variable.c | 49 VARIABLE_ARRAY_ENTRY *Entry;
65 Entry = mVariableArrayNextFree;
66 CopyGuid (&Entry->VendorGuid, VendorGuid);
67 Entry->Attribute = Attributes;
68 Entry->DataSize = DataSize;
79 return Entry;
84 IN VARIABLE_ARRAY_ENTRY *Entry
91 Size = StrSize ((CHAR16 *)(Entry + 1)) + sizeof (VARIABLE_ARRAY_ENTRY) + Entry->DataSize;
92 Data = ((UINT8 *)Entry) + Size; [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestStringMapGenerator.java | 23 import java.util.Map.Entry; 38 public SampleElements<Map.Entry<String, String>> samples() { 39 return new SampleElements<Map.Entry<String, String>>( 51 Entry<String, String>[] array = new Entry[entries.length]; 55 Entry<String, String> e = (Entry<String, String>) o; 62 Entry<String, String>[] entries); 66 public final Entry<String, String>[] createArray(int length) { 67 return new Entry[length] [all...] |
TestMapEntrySetGenerator.java | 32 implements TestSetGenerator<Map.Entry<K, V>> { 43 public SampleElements<Map.Entry<K, V>> samples() { 48 public Set<Map.Entry<K, V>> create(Object... elements) { 49 Map.Entry<K, V>[] entries = createArray(elements.length); 54 public abstract Set<Map.Entry<K, V>> createFromEntries( 55 Map.Entry<K, V>[] entries); 59 public Map.Entry<K, V>[] createArray(int length) { 60 return new Map.Entry[length]; 65 public List<Map.Entry<K, V>> order(List<Map.Entry<K, V>> insertionOrder) [all...] |
TestEnumMapGenerator.java | 25 import java.util.Map.Entry; 37 public SampleElements<Entry<AnEnum, String>> samples() { 38 return new SampleElements<Entry<AnEnum, String>>( 50 Entry<AnEnum, String>[] array = new Entry[entries.length]; 54 Entry<AnEnum, String> e = (Entry<AnEnum, String>) o; 61 Entry<AnEnum, String>[] entries); 65 public final Entry<AnEnum, String>[] createArray(int length) { 66 return new Entry[length] [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/ |
RetireControlUnitStatistics.cpp | 34 for (const std::pair<unsigned, unsigned> &Entry : RetiredPerCycle) { 35 TempStream << " " << Entry.first; 36 if (Entry.first < 10) 40 TempStream << Entry.second << " (" 41 << format("%.1f", ((double)Entry.second / NumCycles) * 100.0)
|
/external/llvm/include/llvm/Target/ |
CostTable.h | 23 /// Cost Table Entry 34 [=](const CostTblEntry &Entry) { 35 return ISD == Entry.ISD && Ty == Entry.Type; }); 39 // Could not find an entry. 57 [=](const TypeConversionCostTblEntry &Entry) { 58 return ISD == Entry.ISD && Src == Entry.Src && 59 Dst == Entry.Dst; 64 // Could not find an entry [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
CostTable.h | 24 /// Cost Table Entry 34 auto I = find_if(Tbl, [=](const CostTblEntry &Entry) { 35 return ISD == Entry.ISD && Ty == Entry.Type; 40 // Could not find an entry. 57 auto I = find_if(Tbl, [=](const TypeConversionCostTblEntry &Entry) { 58 return ISD == Entry.ISD && Src == Entry.Src && Dst == Entry.Dst; 63 // Could not find an entry [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmmCommunicationBufferDxe/ |
SmmCommunicationBufferDxe.c | 35 Entry Point for SMM communication buffer driver.
53 EFI_MEMORY_DESCRIPTOR *Entry;
73 Entry = (EFI_MEMORY_DESCRIPTOR *)(PiSmmCommunicationRegionTable + 1);
74 Entry->Type = EfiConventionalMemory;
75 Entry->PhysicalStart = (EFI_PHYSICAL_ADDRESS)(UINTN)AllocateReservedPages (DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES);
76 ASSERT(Entry->PhysicalStart != 0);
77 Entry->VirtualStart = 0;
78 Entry->NumberOfPages = DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES;
79 Entry->Attribute = 0;
85 DEBUG ((EFI_D_INFO, "Entry:(0x%x)\n", Entry)); [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/ |
OhciSched.c | 24 @param NewEntry New entry to add
35 INTERRUPT_CONTEXT_ENTRY *Entry;
43 Entry = Ohc->InterruptContextList;
44 while (Entry->NextEntry != NULL) {
45 Entry = Entry->NextEntry;
47 Entry->NextEntry = NewEntry;
58 Free a interrupt context entry
61 @param Entry Pointer to an interrupt context entry
[all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfStringPool.cpp | 26 auto &Entry = I.first->second; 27 Entry.Index = Pool.size() - 1; 28 Entry.Offset = NumBytes; 29 Entry.Symbol = ShouldCreateSymbols ? Asm.createTempSymbol(Prefix) : nullptr; 32 assert(NumBytes > Entry.Offset && "Unexpected overflow"); 52 for (const auto &Entry : Entries) { 53 assert(ShouldCreateSymbols == static_cast<bool>(Entry->getValue().Symbol) && 54 "Mismatch between setting and entry"); 58 Asm.OutStreamer->EmitLabel(Entry->getValue().Symbol); 62 Twine(Entry->getValue().Offset)) [all...] |
/external/skia/src/core/ |
SkLRUCache.h | 21 struct Entry { 22 Entry(const K& key, V&& value) 29 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Entry); 37 Entry* node = fLRU.head(); 46 Entry** value = fMap.find(key); 50 Entry* entry = *value; local 51 if (entry != fLRU.head()) { 52 fLRU.remove(entry); 53 fLRU.addToHead(entry); 59 Entry* entry = new Entry(key, std::move(value)); local 103 Entry* entry = *value; local [all...] |
/external/skqp/src/core/ |
SkLRUCache.h | 21 struct Entry { 22 Entry(const K& key, V&& value) 29 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Entry); 37 Entry* node = fLRU.head(); 46 Entry** value = fMap.find(key); 50 Entry* entry = *value; local 51 if (entry != fLRU.head()) { 52 fLRU.remove(entry); 53 fLRU.addToHead(entry); 59 Entry* entry = new Entry(key, std::move(value)); local 103 Entry* entry = *value; local [all...] |
/external/llvm/include/llvm/IR/ |
PredIteratorCache.h | 44 BasicBlock **&Entry = BlockToPredsMap[BB]; 45 if (Entry) 46 return Entry; 53 Entry = Memory.Allocate<BasicBlock *>(PredCache.size()); 54 std::copy(PredCache.begin(), PredCache.end(), Entry); 55 return Entry;
|
/external/skia/src/gpu/gradients/ |
GrGradientBitmapCache.h | 34 struct Entry; 35 mutable Entry* fHead; 36 mutable Entry* fTail; 38 inline Entry* release(Entry*) const; 39 inline void attachToHead(Entry*) const;
|
/external/skqp/src/gpu/gradients/ |
GrGradientBitmapCache.h | 34 struct Entry; 35 mutable Entry* fHead; 36 mutable Entry* fTail; 38 inline Entry* release(Entry*) const; 39 inline void attachToHead(Entry*) const;
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
PredIteratorCache.h | 43 BasicBlock **&Entry = BlockToPredsMap[BB]; 44 if (Entry) return Entry; 51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size()); 52 std::copy(PredCache.begin(), PredCache.end(), Entry); 53 return Entry;
|
/external/clang/test/CodeGen/ |
pointer-signext.c | 26 MEMORY_MAP *Entry; 30 Entry = CR (Link, MEMORY_MAP, Link); 31 return (int) Entry->Signature;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
TestStringBiMapGenerator.java | 26 import java.util.Map.Entry; 42 public SampleElements<Map.Entry<String, String>> samples() { 43 return new SampleElements<Map.Entry<String, String>>( 55 Entry<String, String>[] array = new Entry[entries.length]; 59 Entry<String, String> e = (Entry<String, String>) o; 66 Entry<String, String>[] entries); 70 public final Entry<String, String>[] createArray(int length) { 71 return new Entry[length] [all...] |