Searched defs:entry (Results 226 - 250 of 1397) sorted by relevance

1234567891011>>

/external/linux-kselftest/tools/testing/selftests/vm/
H A Dcompaction_test.c159 struct map_list *list, *entry; local
197 entry = malloc(sizeof(struct map_list));
198 if (!entry) {
202 entry->map = map;
203 entry->next = list;
204 list = entry;
215 for (entry = list; entry != NULL; entry = entry
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dir_array_refcount.cpp45 free_entry(struct hash_entry *entry) argument
47 ir_array_refcount_entry *ivre = (ir_array_refcount_entry *) entry->data;
136 ir_array_refcount_entry *entry = new ir_array_refcount_entry(var);
137 _mesa_hash_table_insert(this->ht, var, entry);
139 return entry;
222 ir_array_refcount_entry *const entry = local
225 if (entry == NULL)
228 entry->mark_array_elements_referenced(derefs, num_derefs);
238 ir_array_refcount_entry *entry = this->get_variable_entry(var); local
240 entry
[all...]
H A Dopt_constant_variable.cpp66 struct assignment_entry *entry; local
69 entry = (struct assignment_entry *) hte->data;
71 entry = (struct assignment_entry *) calloc(1, sizeof(*entry));
72 entry->var = var;
73 _mesa_hash_table_insert(ht, var, entry);
76 return entry;
82 struct assignment_entry *entry = get_assignment_entry(ir, this->ht); local
83 entry->our_scope = true;
99 struct assignment_entry *entry; local
159 struct assignment_entry *entry; local
170 struct assignment_entry *entry; local
195 struct assignment_entry *entry = (struct assignment_entry *) hte->data; local
[all...]
/external/mesa3d/src/compiler/glsl/tests/
H A Dvaryings_test.cpp133 hash_entry *entry = _mesa_hash_table_search(consumer_inputs, "a"); local
134 EXPECT_EQ((void *) v, entry->data);
211 hash_entry *entry = _mesa_hash_table_search(consumer_interface_inputs, local
213 EXPECT_EQ((void *) v, entry->data);
245 hash_entry *entry = _mesa_hash_table_search(consumer_interface_inputs, local
247 EXPECT_EQ((void *) iface, entry->data);
250 entry = _mesa_hash_table_search(consumer_inputs, "a");
251 EXPECT_EQ((void *) v, entry->data);
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_gs_intrinsics.c171 struct set_entry *entry; local
172 set_foreach(end_block->predecessors, entry) {
173 nir_block *pred = (nir_block *) entry->key;
H A Dnir_remove_dead_variables.c146 struct set_entry *entry = _mesa_set_search(live, var); local
147 if (entry == NULL) {
H A Dnir_to_lcssa.c122 struct set_entry *entry; local
123 set_foreach(block_after_loop->predecessors, entry) {
126 phi_src->pred = (nir_block *) entry->key;
/external/mesa3d/src/gallium/auxiliary/pipebuffer/
H A Dpb_cache.c38 destroy_buffer_locked(struct pb_cache_entry *entry) argument
40 struct pb_cache *mgr = entry->mgr;
41 struct pb_buffer *buf = entry->buffer;
44 if (entry->head.next) {
45 LIST_DEL(&entry->head);
60 struct pb_cache_entry *entry; local
68 entry = LIST_ENTRY(struct pb_cache_entry, curr, head);
70 if (!os_time_timeout(entry->start, entry->end, now))
73 destroy_buffer_locked(entry);
85 pb_cache_add_buffer(struct pb_cache_entry *entry) argument
119 pb_cache_is_buffer_compat(struct pb_cache_entry *entry, pb_size size, unsigned alignment, unsigned usage) argument
151 struct pb_cache_entry *entry; local
248 pb_cache_init_entry(struct pb_cache *mgr, struct pb_cache_entry *entry, struct pb_buffer *buf, unsigned bucket_index) argument
[all...]
H A Dpb_slab.c54 pb_slab_reclaim(struct pb_slabs *slabs, struct pb_slab_entry *entry) argument
56 struct pb_slab *slab = entry->slab;
58 LIST_DEL(&entry->head); /* remove from reclaim list */
59 LIST_ADD(&entry->head, &slab->free);
64 struct pb_slab_group *group = &slabs->groups[entry->group_index];
78 struct pb_slab_entry *entry = local
81 if (!slabs->can_reclaim(slabs->priv, entry))
84 pb_slab_reclaim(slabs, entry);
88 /* Allocate a slab entry of the given size from the given heap.
104 struct pb_slab_entry *entry; local
163 pb_slab_free(struct pb_slabs* slabs, struct pb_slab_entry *entry) argument
245 struct pb_slab_entry *entry = local
[all...]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dfifo.hpp105 bool enqueue_try_nosync(ArenaT& arena, const T* entry) argument
107 const float* pSrc = (const float*)entry;
/external/mesa3d/src/hgl/
H A DGLRendererRoster.cpp128 BEntry entry(&directory, fABISubDirectory);
129 if (entry.IsDirectory()) {
130 status = directory.SetTo(&entry);
145 BEntry entry; local
147 entry.SetTo(&ref, true);
148 if (entry.InitCheck() == B_OK && !entry.IsFile())
190 BEntry entry(&ref, true);
192 status_t status = entry.GetNodeRef(&nodeRef);
/external/mesa3d/src/util/
H A Dstring_to_uint_map.h114 hash_entry *entry = _mesa_hash_table_search(this->ht, local
117 if (!entry)
120 const intptr_t v = (intptr_t) entry->data;
141 struct hash_entry *entry = _mesa_hash_table_search(this->ht, dup_key); local
142 if (entry) {
143 entry->data = (void *) (intptr_t) (value + 1);
149 if (entry)
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java29 * Add the specified file system entry (file or directory) to this file system
31 * @param entry - the FileSystemEntry to add
33 public void add(FileSystemEntry entry); argument
79 * Return the formatted directory listing entry for the file represented by the specified FileSystemEntry
81 * @param fileSystemEntry - the FileSystemEntry representing the file or directory entry to be formatted
82 * @return the the formatted directory listing entry
139 * Returns the FileSystemEntry object representing the file system entry at the specified path, or null
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java20 TimeToSampleBox.Entry entry; field in class:SilenceTrackImpl
27 entry = new TimeToSampleBox.Entry(numFrames, standZeit);
46 return Collections.singletonList(entry);

Completed in 742 milliseconds

1234567891011>>