Searched defs:entry (Results 151 - 175 of 1572) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp101 aeb_entry *entry; local
103 entry = (aeb_entry *) entry_node;
106 if (inst->opcode == entry->generator->opcode &&
107 inst->saturate == entry->generator->saturate &&
108 operands_match(entry->generator->src, inst->src)) {
117 /* Our first sighting of this expression. Create an entry. */
118 aeb_entry *entry = ralloc(mem_ctx, aeb_entry); local
119 entry->tmp = reg_undef;
120 entry->generator = inst;
121 aeb->push_tail(entry);
154 aeb_entry *entry = (aeb_entry *)entry_node; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPathHeap.cpp73 SkPathHeap::LookupEntry* entry = this->addIfNotPresent(path); local
75 if (entry->storageSlot() > 0) {
76 return entry->storageSlot();
81 entry->setStorageSlot(newSlot);
H A DSkTInternalSList.h62 void push(T* entry) { argument
63 SkASSERT(entry->getSListNext() == NULL);
64 entry->setSListNext(fHead);
65 fHead = entry;
H A DSkTObjectPool.h54 void release(T* entry) { argument
55 fAvailable.push(entry);
/external/chromium_org/ui/base/ime/
H A Dcandidate_window_unittest.cc148 CandidateWindow::Entry entry; local
149 entry.value = kSampleString;
150 entry.label = kSampleString;
151 entry.annotation = kSampleString;
152 entry.description_title = kSampleString;
153 entry.description_body = kSampleString;
154 cw1.mutable_candidates()->push_back(entry);
164 CandidateWindow::Entry entry; local
165 entry.value = base::UTF8ToUTF16(kSampleCandidate[i]);
166 entry
186 CandidateWindow::Entry entry; local
216 CandidateWindow::Entry entry; local
247 CandidateWindow::Entry entry; local
[all...]
/external/chromium_org/v8/src/compiler/
H A Dnode-cache.cc64 Entry* entry = &entries_[j]; local
65 if (entry->value_ == NULL) {
66 entry->key_ = old->key_;
67 entry->value_ = old->value_;
81 // Allocate the initial entries and insert the first entry.
86 Entry* entry = &entries_[hash & (INITIAL_SIZE - 1)]; local
87 entry->key_ = key;
88 return &entry->value_;
96 Entry* entry = &entries_[i]; local
97 if (entry
108 Entry* entry = &entries_[hash & (size_ - 1)]; local
[all...]
/external/deqp/framework/delibs/dethread/win32/
H A DdeThreadWin32.c59 ThreadEntry* entry = (ThreadEntry*)entryPtr; local
60 deThreadFunc func = entry->func;
61 void* arg = entry->arg;
63 deFree(entry);
72 ThreadEntry* entry = (ThreadEntry*)deMalloc(sizeof(ThreadEntry)); local
75 if (!entry)
78 entry->func = func;
79 entry->arg = arg;
81 thread = CreateThread(DE_NULL, 0, startThread, entry, 0, DE_NULL);
84 deFree(entry);
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Ddblist_dir.c2 * dblist_dir.c --- iterate by directory entry
29 int entry,
25 ext2fs_dblist_dir_iterate(ext2_dblist dblist, int flags, char *block_buf, int (*func)(ext2_ino_t dir, int entry, struct ext2_dir_entry *dirent, int offset, int blocksize, char *buf, void *priv_data), void *priv_data) argument
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c28 ss_request_entry *entry; local
59 entry = (*table)->requests;
60 for (; entry->command_names; entry++) {
63 if (entry->flags & SS_OPT_DONT_LIST)
65 for (name = entry->command_names; *name; name++) {
80 strcat(buffer, entry->info_string);
/external/elfutils/0.153/lib/
H A Dfixedsizehash.h103 # define ENTRYP(el) (el).entry
104 TYPE *entry; local
106 # define ENTRYP(el) &(el).entry
107 TYPE entry; local
163 /* See whether this is the same entry. */
205 slot->entry = data;
207 slot->entry = *data;
229 slot->entry = data;
231 slot->entry = *data;
252 slot->entry
[all...]
/external/elfutils/0.153/libdw/
H A Dcie.c167 /* Add the new entry to the search tree. */
190 Dwarf_CFI_Entry entry; local
193 offset, &next_offset, &entry);
194 if (result != 0 || entry.cie.CIE_id != DW_CIE_ID_64)
204 return intern_new_cie (cache, offset, &entry.cie);
/external/fio/
H A Dfilelock.c57 struct flist_head *entry; local
60 flist_for_each(entry, filelock_list) {
61 ff = flist_entry(entry, struct fio_filelock, list);
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMapEntryTest.java36 private static <K, V> Entry<K, V> entry(final K key, final V value) { method in class:AbstractMapEntryTest
52 assertEquals("foo=1", entry("foo", 1).toString());
56 assertEquals("null=1", entry(NK, 1).toString());
57 assertEquals("foo=null", entry("foo", NV).toString());
58 assertEquals("null=null", entry(NK, NV).toString());
62 Entry<String, Integer> foo1 = entry("foo", 1);
65 assertEquals(control("bar", 2), entry("bar", 2));
66 assertFalse(control("foo", 1).equals(entry("foo", 2)));
73 assertEquals(control(NK, 1), entry(NK, 1));
74 assertEquals(control("bar", NV), entry("ba
[all...]
H A DMultisetsImmutableEntryTest.java35 private static <E> Entry<E> entry(final E element, final int count) { method in class:MultisetsImmutableEntryTest
45 assertEquals("foo", entry("foo", 1).toString());
46 assertEquals("bar x 2", entry("bar", 2).toString());
50 assertEquals("null", entry(NE, 1).toString());
51 assertEquals("null x 2", entry(NE, 2).toString());
55 assertEquals(control("foo", 1), entry("foo", 1));
56 assertEquals(control("bar", 2), entry("bar", 2));
57 assertFalse(control("foo", 1).equals(entry("foo", 2)));
58 assertFalse(entry("foo", 1).equals(control("bar", 1)));
59 assertFalse(entry("fo
[all...]
/external/icu/icu4c/source/common/
H A Ducmndata.h53 UDataOffsetTOCEntry entry[2]; /* Actual size of array is from count. */ member in struct:__anon21749
/external/icu/icu4c/source/layout/
H A DContextualGlyphSubstProc.cpp47 const ContextualGlyphSubstitutionStateEntry *entry = entryTable.getAlias(index, success); local
48 ByteOffset newState = SWAPW(entry->newStateOffset);
49 le_int16 flags = SWAPW(entry->flags);
50 WordOffset markOffset = SWAPW(entry->markOffset);
51 WordOffset currOffset = SWAPW(entry->currOffset);
/external/libexif/libexif/fuji/
H A Dmnote-fuji-entry.c1 /* mnote-fuji-entry.c
29 #include "mnote-fuji-entry.h"
190 mnote_fuji_entry_get_value (MnoteFujiEntry *entry, argument
200 if (!entry) return (NULL);
205 switch (entry->tag) {
207 CF (entry->format, EXIF_FORMAT_UNDEFINED, val, maxlen);
208 CC (entry->components, 4, val, maxlen);
209 memcpy (val, entry->data, MIN(maxlen, entry->size));
228 CF (entry
[all...]
/external/libmtp/examples/
H A Dhotplug.c117 LIBMTP_device_entry_t * entry = &entries[i]; local
122 printf("# %s %s\n", entry->vendor, entry->product);
124 // printf("SYSFS{idVendor}==\"%04x\", SYSFS{idProduct}==\"%04x\", %s\n", entry->vendor_id, entry->product_id, action);
126 printf("ATTR{idVendor}==\"%04x\", ATTR{idProduct}==\"%04x\", %s\n", entry->vendor_id, entry->product_id, action);
130 printf("# %s %s\n", entry->vendor, entry->product);
131 printf("libmtp.sh 0x0003 0x%04x 0x%04x 0x0000 0x0000 0x00 0x00 0x00 0x00 0x00 0x00 0x00000000\n", entry
188 LIBMTP_device_entry_t * entry = &entries[i]; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Drblist.c51 struct rb_node *rblist__find(struct rblist *rblist, const void *entry) argument
61 rc = rblist->node_cmp(parent, entry);
H A Dstrlist.h27 struct str_node *strlist__find(struct strlist *slist, const char *entry);
29 static inline bool strlist__has_entry(struct strlist *slist, const char *entry) argument
31 return strlist__find(slist, entry) != NULL;
/external/lldb/source/DataFormatters/
H A DFormatCache.cpp132 auto entry = GetEntry(type); local
133 if (entry.IsSummaryCached())
138 summary_sp = entry.GetSummary();
152 auto entry = GetEntry(type); local
153 if (entry.IsSyntheticCached())
158 synthetic_sp = entry.GetSynthetic();
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp44 AuxVector::Entry &entry,
48 if (!GetMaxU64(data, offset_ptr, &entry.type, byte_size))
51 if (!GetMaxU64(data, offset_ptr, &entry.value, byte_size))
75 Entry entry; local
77 if (!ParseAuxvEntry(data, entry, &offset, byte_size))
80 if (entry.type == AT_NULL)
83 if (entry.type == AT_IGNORE)
86 m_auxv.push_back(entry);
43 ParseAuxvEntry(DataExtractor &data, AuxVector::Entry &entry, lldb::offset_t *offset_ptr, unsigned int byte_size) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_format.c113 * Format capability description entry.
554 * be supported when the host does not provide an explicit capability entry.
561 const struct format_cap *entry; local
563 for (entry = format_cap_table; entry < format_cap_table + Elements(format_cap_table); ++entry) {
564 if (entry->format == format) {
568 if (sws->get_cap(sws, entry->index, &result)) {
573 caps->value = entry->defaultOperations;
/external/mesa3d/src/glsl/
H A Dopt_dead_functions.cpp78 signature_entry *entry = (signature_entry *)iter.get(); local
79 if (entry->signature == sig)
80 return entry;
83 signature_entry *entry = new(mem_ctx) signature_entry(sig); local
84 this->signature_list.push_tail(entry);
85 return entry;
92 signature_entry *entry = this->get_signature_entry(ir); local
95 entry->used = true;
107 signature_entry *entry = this->get_signature_entry(ir->callee); local
109 entry
127 signature_entry *entry = (signature_entry *)iter.get(); local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_cse.cpp101 aeb_entry *entry; local
103 entry = (aeb_entry *) entry_node;
106 if (inst->opcode == entry->generator->opcode &&
107 inst->saturate == entry->generator->saturate &&
108 operands_match(entry->generator->src, inst->src)) {
117 /* Our first sighting of this expression. Create an entry. */
118 aeb_entry *entry = ralloc(mem_ctx, aeb_entry); local
119 entry->tmp = reg_undef;
120 entry->generator = inst;
121 aeb->push_tail(entry);
154 aeb_entry *entry = (aeb_entry *)entry_node; local
[all...]

Completed in 3774 milliseconds

1234567891011>>