HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 1 - 25 of 4519) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-arm/
thumb-entry.d 2 Entry point address: 0x8001
  /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;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-pe/
tlssec32.d 2 Entry 9 0000.000 000000.. Thread Storage Directory \[\.tls\]
tlssec64.d 2 Entry 9 0000000000003000 00000028 Thread Storage Directory \[\.tls\]
  /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();
  /frameworks/base/core/java/android/os/
DropBoxManager.aidl 19 parcelable DropBoxManager.Entry cpp_header "android/os/DropBoxManager.h";
  /external/v8/src/profiler/
circular-queue.h 43 // Reserved values for the entry marker.
50 struct V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry {
51 Entry() : marker(kEmpty) {}
56 Entry* Next(Entry* entry);
58 Entry buffer_[Length];
59 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* enqueue_pos_;
60 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/skia/src/shaders/gradients/
SkGradientBitmapCache.h 26 struct Entry;
27 mutable Entry* fHead;
28 mutable Entry* fTail;
30 inline Entry* release(Entry*) const;
31 inline void attachToHead(Entry*) const;
  /external/skqp/src/shaders/gradients/
SkGradientBitmapCache.h 26 struct Entry;
27 mutable Entry* fHead;
28 mutable Entry* fTail;
30 inline Entry* release(Entry*) const;
31 inline void attachToHead(Entry*) const;
  /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...]
  /frameworks/base/core/java/com/android/internal/os/
KernelWakelockStats.java 23 public class KernelWakelockStats extends HashMap<String, KernelWakelockStats.Entry> {
24 public static class Entry {
29 Entry(int count, long totalTime, int version) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
cond_dealtor.hpp 49 template<typename Entry, typename _Alloc>
52 typedef typename _Alloc::template rebind<Entry> __rebind_e;
78 template<typename Entry, class _Alloc>
79 typename cond_dealtor<Entry, _Alloc>::entry_allocator
80 cond_dealtor<Entry, _Alloc>::s_alloc;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
cond_dealtor.hpp 49 template<typename Entry, typename _Alloc>
52 typedef typename _Alloc::template rebind<Entry> __rebind_e;
78 template<typename Entry, class _Alloc>
79 typename cond_dealtor<Entry, _Alloc>::entry_allocator
80 cond_dealtor<Entry, _Alloc>::s_alloc;
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 20 private static class Entry {
21 private IntQueue.Entry next;
23 private Entry(int value) {
27 private IntQueue.Entry head;
29 private IntQueue.Entry tail;
32 IntQueue.Entry entry = new Entry(value); local
34 tail.next = entry;
35 tail = entry;
    [all...]
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Target/
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...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Target/
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...]

Completed in 1731 milliseconds

1 2 3 4 5 6 7 8 91011>>