HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 251 - 275 of 2649) sorted by null

<<11121314151617181920>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
SilenceTrackImpl.java 20 TimeToSampleBox.Entry entry; field in class:SilenceTrackImpl
27 entry = new TimeToSampleBox.Entry(numFrames, standZeit);
45 public List<TimeToSampleBox.Entry> getDecodingTimeEntries() {
46 return Collections.singletonList(entry);
86 public List<CompositionTimeToSample.Entry> getCompositionTimeEntries() {
94 public List<SampleDependencyTypeBox.Entry> getSampleDependencies() {
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Route.c 44 Allocate a route entry then initialize it with the Destination/PrefixLength
53 @return NULL if failed to allocate memeory; otherwise, the newly created route entry.
87 Free the route table entry. It is reference counted.
89 @param[in, out] RtEntry The route entry to free.
111 2. The local route entries have precedence over the default route entry.
130 LIST_ENTRY *Entry;
139 NET_LIST_FOR_EACH (Entry, &RtTable->RouteArea[Index]) {
140 RtEntry = NET_LIST_USER_STRUCT (Entry, IP6_ROUTE_ENTRY, Link);
161 Allocate and initialize a IP6 route cache entry.
167 spawned from one route table entry.
    [all...]
  /external/v8/src/interpreter/
constant-array-builder.cc 42 ConstantArrayBuilder::Entry entry, size_t count) {
47 constants_.push_back(entry);
52 ConstantArrayBuilder::Entry& ConstantArrayBuilder::ConstantArraySlice::At(
59 const ConstantArrayBuilder::Entry& ConstantArrayBuilder::ConstantArraySlice::At(
75 for (const Entry& entry : constants_) {
77 switch (entry.tag_) {
78 case Entry::Tag::kSmi:
79 duplicate = !smis.insert(entry.smi_).second
174 const Entry& entry = slice->At(index); local
211 auto entry = smi_map_.find(smi); local
345 auto entry = smi_map_.find(value); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Application/VariableInfo/
VariableInfo.c 92 EFI_MEMORY_DESCRIPTOR *Entry;
116 Entry = (EFI_MEMORY_DESCRIPTOR *) (PiSmmCommunicationRegionTable + 1);
120 if (Entry->Type == EfiConventionalMemory) {
121 Size = EFI_PAGES_TO_SIZE ((UINTN) Entry->NumberOfPages);
126 CommBuffer = (EFI_SMM_COMMUNICATE_HEADER *) (UINTN) Entry->PhysicalStart;
130 Entry = (EFI_MEMORY_DESCRIPTOR *) ((UINT8 *) Entry + PiSmmCommunicationRegionTable->DescriptorSize);
198 The user Entry Point for Application. The user code starts with this function
199 as the real entry point for the image goes into a library that calls this
205 @retval EFI_SUCCESS The entry point is executed successfully.
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 159 /// ReduceOpcodeMap - Maps wide opcode to index of entry in ReduceTable.
164 bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
169 const ReduceEntry &Entry);
172 const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop);
177 const ReduceEntry &Entry, bool LiveCPSR,
183 const ReduceEntry &Entry, bool LiveCPSR,
306 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
309 if ((is2Addr && Entry.PredCC2 == 0) ||
310 (!is2Addr && Entry.PredCC1 == 0)) {
329 } else if ((is2Addr && Entry.PredCC2 == 2) |
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
Thumb2SizeReduction.cpp 180 /// ReduceOpcodeMap - Maps wide opcode to index of entry in ReduceTable.
185 bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
190 const ReduceEntry &Entry);
193 const ReduceEntry &Entry, bool LiveCPSR, bool IsSelfLoop);
198 const ReduceEntry &Entry, bool LiveCPSR,
204 const ReduceEntry &Entry, bool LiveCPSR,
332 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
335 if ((is2Addr && Entry.PredCC2 == 0) ||
336 (!is2Addr && Entry.PredCC1 == 0)) {
355 } else if ((is2Addr && Entry.PredCC2 == 2) |
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
LocalList.java 31 * List of local variables. Each local variable entry indicates a
59 public Entry get(int n) {
60 return (Entry) get0(n);
64 * Sets the entry at the given index.
67 * @param entry {@code non-null;} the entry to set at {@code n}
69 public void set(int n, Entry entry) {
70 set0(n, entry);
89 * Disposition of a local entry
754 Entry entry; local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
LocalList.java 30 * List of local variables. Each local variable entry indicates a
58 public Entry get(int n) {
59 return (Entry) get0(n);
63 * Sets the entry at the given index.
66 * @param entry {@code non-null;} the entry to set at {@code n}
68 public void set(int n, Entry entry) {
69 set0(n, entry);
88 * Disposition of a local entry
753 Entry entry; local
    [all...]
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
DirectoryManage.c 2 Functions for performing directory entry io.
19 Get a directory entry from disk for the Ofile.
22 @param IoMode - Indicate whether to read directory entry or write directroy entry.
23 @param EntryPos - The position of the directory entry to be accessed.
24 @param Entry - The directory entry read or written.
26 @retval EFI_SUCCESS - Access the directory entry sucessfully.
27 @return other - An error occurred when reading the directory entry.
36 IN OUT VOID *Entry
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h 38 /// An abstract class representing a single entry in the accelerator tables.
39 class Entry {
43 Entry() = default;
46 Entry(const Entry &) = default;
47 Entry(Entry &&) = default;
48 Entry &operator=(const Entry &) = default;
49 Entry &operator=(Entry &&) = default
    [all...]
  /cts/tools/release-parser/tests/src/com/android/cts/releaseparser/
FileParserTest.java 60 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
76 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
92 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
108 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
124 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
153 Entry.Builder fileEntryBuilder = aParser.getFileEntryBuilder();
158 private void testFileParser(String fileName, Entry fileEntry) throws Exception {
159 Entry.Builder expectedEntryBuilder = Entry.newBuilder();
167 "Parser does not return the same Entry message of %s with %s.\n%s\n%s"
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IkeCommon.c 37 LIST_ENTRY *Entry;
41 Entry = NULL;
48 NET_LIST_FOR_EACH_SAFE (Entry, Next, &IkeSaSession->ChildSaEstablishSessionList) {
49 SaSession= IKEV2_CHILD_SA_SESSION_BY_IKE_SA (Entry);
58 NET_LIST_FOR_EACH_SAFE (Entry, Next, &IkeSaSession->ChildSaSessionList) {
59 SaSession= IKEV2_CHILD_SA_SESSION_BY_IKE_SA (Entry);
273 Find SPD entry by a specified SPD selector.
277 @retval Point to SPD Entry if the SPD entry found.
288 LIST_ENTRY *Entry;
    [all...]
IkePacket.c 59 LIST_ENTRY *Entry;
84 for (Entry = (IkePacket)->PayloadList.ForwardLink; Entry != &(IkePacket)->PayloadList;) {
85 IkePayload = IKE_PAYLOAD_BY_PACKET (Entry);
86 Entry = Entry->ForwardLink;
196 LIST_ENTRY *Entry;
245 NET_LIST_FOR_EACH (Entry, &(IkePacket)->PayloadList) {
246 IkePayload = IKE_PAYLOAD_BY_PACKET (Entry);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SortedMapInterfaceTest.java 22 import java.util.Map.Entry;
68 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
69 Entry<K, V> firstEntry = iterator.next();
70 Entry<K, V> secondEntry = iterator.next();
95 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
96 Entry<K, V> firstEntry = iterator.next();
97 Entry<K, V> secondEntry = iterator.next();
118 Iterator<Entry<K, V>> iterator = map.entrySet().iterator();
120 Entry<K, V> secondEntry = iterator.next();
  /external/llvm/lib/ExecutionEngine/
GDBRegistrationListener.cpp 68 RegisteredObjectInfo(std::size_t Size, jit_code_entry *Entry,
70 : Size(Size), Entry(Entry), Obj(std::move(Obj)) {}
73 : Size(Other.Size), Entry(Other.Entry), Obj(std::move(Other.Obj)) {}
77 Entry = Other.Entry;
83 jit_code_entry *Entry;
108 /// Creates an entry in the JIT registry for the buffer @p Object,
134 // Insert this entry at the head of the list
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableClassToInstanceMapTest.java 33 import java.util.Map.Entry;
55 Entry<Class, Number> entry = (Entry<Class, Number>) object;
56 builder.put(entry.getKey(), entry.getValue());
161 public SampleElements<Entry<Class, Number>> samples() {
162 Entry<Class, Number> entry1 =
164 Entry<Class, Number> entry2 =
166 Entry<Class, Number> entry3
    [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
ImmutableTypeToInstanceMapTest.java 36 import java.util.Map.Entry;
59 Entry<TypeToken, Object> entry = (Entry<TypeToken, Object>) object;
60 builder.put(entry.getKey(), entry.getValue());
157 public SampleElements<Entry<TypeToken, Object>> samples() {
158 Entry<TypeToken, Object> entry1 =
160 Entry<TypeToken, Object> entry2 =
162 Entry<TypeToken, Object> entry3
    [all...]
  /external/skia/src/gpu/gradients/
GrGradientBitmapCache.cpp 18 struct GrGradientBitmapCache::Entry {
19 Entry* fPrev;
20 Entry* fNext;
26 Entry(const void* buffer, size_t size, const SkBitmap& bm)
35 ~Entry() { sk_free(fBuffer); }
54 Entry* entry = fHead; local
55 while (entry) {
56 Entry* next = entry->fNext
94 Entry* entry = fHead; local
119 Entry* entry = new Entry(buffer, len, bm); local
229 Entry* entry = fHead; local
    [all...]
  /external/skqp/src/gpu/gradients/
GrGradientBitmapCache.cpp 18 struct GrGradientBitmapCache::Entry {
19 Entry* fPrev;
20 Entry* fNext;
26 Entry(const void* buffer, size_t size, const SkBitmap& bm)
35 ~Entry() { sk_free(fBuffer); }
54 Entry* entry = fHead; local
55 while (entry) {
56 Entry* next = entry->fNext
94 Entry* entry = fHead; local
119 Entry* entry = new Entry(buffer, len, bm); local
229 Entry* entry = fHead; local
    [all...]
  /external/turbine/java/com/google/turbine/bytecode/
ConstantPool.java 33 /** The next available constant pool entry. */
46 private final List<Entry> constants = new ArrayList<>();
49 public ImmutableList<Entry> constants() {
74 /** A constant pool entry. */
75 static class Entry {
79 Entry(Kind kind, Value value) {
84 /** The entry kind. */
89 /** The entry's value. */
95 /** Adds a CONSTANT_Class_info entry to the pool. */
102 int index = insert(new Entry(Kind.CLASS_INFO, new IntValue(utf8)))
190 int entry = nextEntry; local
    [all...]
  /external/v8/src/ast/
modules.h 80 struct Entry : public ZoneObject {
102 explicit Entry(Scanner::Location loc)
112 // parser. (A Deserialize'd entry has an invalid location.)
114 static Entry* Deserialize(Isolate* isolate, AstValueFactory* avfactory,
115 Handle<ModuleInfoEntry> entry);
135 typedef ZoneMultimap<const AstRawString*, Entry*, AstRawStringComparer>
137 typedef ZoneMap<const AstRawString*, Entry*, AstRawStringComparer>
144 const ZoneVector<const Entry*>& namespace_imports() const {
152 const ZoneVector<const Entry*>& special_exports() const {
160 void AddRegularExport(Entry* entry)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/
VarCheckLib.c 181 VAR_CHECK_VARIABLE_ENTRY *Entry;
185 Entry = (VAR_CHECK_VARIABLE_ENTRY *) mVarCheckVariableTable[Index];
186 VariableName = (CHAR16 *) ((UINTN) Entry + sizeof (*Entry));
187 if (CompareGuid (&Entry->Guid, Guid) && (StrCmp (VariableName, Name) == 0)) {
188 return &Entry->VariableProperty;
196 Var check add table entry.
199 @param[in, out] MaxNumber Pointer to maximum number of entry in the table.
200 @param[in, out] CurrentNumber Pointer to current number of entry in the table.
201 @param[in] Entry Entry will be added to the table.
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
Thumb2SizeReduction.cpp 146 /// ReduceOpcodeMap - Maps wide opcode to index of entry in ReduceTable.
151 bool VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
156 const ReduceEntry &Entry);
159 const ReduceEntry &Entry, bool LiveCPSR,
165 const ReduceEntry &Entry,
171 const ReduceEntry &Entry,
242 Thumb2SizeReduce::VerifyPredAndCC(MachineInstr *MI, const ReduceEntry &Entry,
245 if ((is2Addr && Entry.PredCC2 == 0) ||
246 (!is2Addr && Entry.PredCC1 == 0)) {
265 } else if ((is2Addr && Entry.PredCC2 == 2) |
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
XPressRich3.c 34 IN UINTN Entry,
52 PCIE_ROOTPORT_WRITE32 (Entry + PCI_ATR_SRC_ADDR_LOW_SIZE,
54 PCIE_ROOTPORT_WRITE32 (Entry + PCI_ATR_SRC_ADDR_HI, SourceAddress >> 32);
56 PCIE_ROOTPORT_WRITE32 (Entry + PCI_ATR_TRSL_ADDR_LOW, (UINT32)TranslatedAddress);
57 PCIE_ROOTPORT_WRITE32 (Entry + PCI_ATR_TRSL_ADDR_HI, TranslatedAddress >> 32);
59 PCIE_ROOTPORT_WRITE32 (Entry + PCI_ATR_TRSL_PARAM, TranslationParameter);
  /device/linaro/bootloader/edk2/SecurityPkg/Hash2DxeCrypto/
Driver.c 130 LIST_ENTRY *Entry;
142 for(Entry = (&Hash2ServiceData->ChildrenList)->ForwardLink; Entry != (&Hash2ServiceData->ChildrenList); Entry = Entry->ForwardLink) {
143 Instance = HASH2_INSTANCE_DATA_FROM_LINK (Entry);
197 The entry point for Hash driver which installs the service binding protocol.

Completed in 763 milliseconds

<<11121314151617181920>>