Searched refs:entry (Results 1 - 25 of 576) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftsnames.c57 TT_NameEntryRec* entry = ttface->name_table.names + idx; local
61 if ( entry->stringLength > 0 && entry->string == NULL )
67 if ( FT_NEW_ARRAY ( entry->string, entry->stringLength ) ||
68 FT_STREAM_SEEK( entry->stringOffset ) ||
69 FT_STREAM_READ( entry->string, entry->stringLength ) )
71 FT_FREE( entry->string );
72 entry
[all...]
/external/qemu/
H A Dacl.c79 qemu_acl_entry *entry; local
81 TAILQ_FOREACH(entry, &acl->entries, next) {
83 if (fnmatch(entry->match, party, 0) == 0)
84 return entry->deny ? 0 : 1;
88 if (strcmp(entry->match, party) == 0)
89 return entry->deny ? 0 : 1;
99 qemu_acl_entry *entry; local
105 TAILQ_FOREACH(entry, &acl->entries, next) {
106 TAILQ_REMOVE(&acl->entries, entry, next);
107 free(entry
118 qemu_acl_entry *entry; local
136 qemu_acl_entry *entry; local
165 qemu_acl_entry *entry; local
[all...]
/external/grub/stage2/
H A Dfat.h86 #define FAT_DIRENTRY_ATTRIB(entry) \
87 (*((unsigned char *) (entry+11)))
88 #define FAT_DIRENTRY_VALID(entry) \
89 ( ((*((unsigned char *) entry)) != 0) \
90 && ((*((unsigned char *) entry)) != 0xE5) \
91 && !(FAT_DIRENTRY_ATTRIB(entry) & FAT_ATTRIB_NOT_OK_MASK) )
92 #define FAT_DIRENTRY_FIRST_CLUSTER(entry) \
93 ((*((unsigned short *) (entry+26)))+(*((unsigned short *) (entry+20)) << 16))
94 #define FAT_DIRENTRY_FILELENGTH(entry) \
[all...]
/external/srec/portable/src/
H A Dphashtable.c164 PHashTableEntry *entry = table->entries[idx]; local
168 while (entry != NULL)
170 if (entry->key == NULL)
171 return entry;
173 entry = entry->next;
178 while (entry != NULL)
180 if (entry->hashCode == hashCode && table->args.compFunction(key, entry->key) == 0)
181 return entry;
190 removeEntry(PHashTableEntry *entry) argument
210 PHashTableEntry *entry; local
234 PHashTableEntry* entry; local
255 PHashTableGetEntry(PHashTable *table, const void *key, PHashTableEntry **entry) argument
279 PHashTableEntry *entry, *tmp, *next; local
345 PHashTableEntry *entry; local
427 PHashTableEntry *entry; local
457 PHashTableEntryGetKeyValue(PHashTableEntry *entry, void **key, void **value) argument
475 PHashTableEntrySetValue(PHashTableEntry *entry, const void *value, void **oldValue) argument
492 PHashTableEntryRemove(PHashTableEntry *entry) argument
502 iteratorAdvance(PHashTable *table, PHashTableEntry *entry) argument
537 PHashTableEntryGetFirst(PHashTable *table, PHashTableEntry **entry) argument
553 PHashTableEntryAdvance(PHashTableEntry **entry) argument
[all...]
/external/skia/src/gl/
H A DSkTextureCache.cpp32 Entry* entry = fHead; local
33 while (entry) {
34 SkASSERT(entry->lockCount() == 0);
35 entry = entry->fNext;
44 Entry* entry = fHead; local
45 while (entry) {
46 Entry* next = entry->fNext;
48 entry->abandonTexture();
50 SkDELETE(entry);
86 const Entry* entry = sorted[hi]; local
112 Entry* entry = fHash[hashIndex]; local
144 Entry* entry = this->find(key, &index); local
200 unlock(Entry* entry) argument
226 Entry* entry = fTail; local
313 const Entry* entry = fHead; local
319 SkASSERT(count < fTexCount); SkASSERT(size < fTexSize); size += entry->memSize(); count += 1; if (NULL == entry->fNext) argument
335 SkASSERT(count < fTexCount); SkASSERT(size < fTexSize); size += entry->memSize(); count += 1; if (NULL == entry->fPrev) argument
[all...]
/external/icu4c/layout/
H A DLookupTables.cpp33 const LookupSegment *entry = segments; local
34 const LookupSegment *trial = (const LookupSegment *) ((char *) entry + extra);
37 entry = trial;
42 trial = (const LookupSegment *) ((char *) entry + probe);
45 entry = trial;
49 if (SWAPW(entry->firstGlyph) <= ttGlyph) {
50 return entry;
62 const LookupSingle *entry = entries; local
63 const LookupSingle *trial = (const LookupSingle *) ((char *) entry + extra);
66 entry
[all...]
/external/webkit/JavaScriptCore/runtime/
H A DNumericStrings.h38 CacheEntry<double>& entry = lookup(d); local
39 if (d == entry.key && !entry.value.isNull())
40 return entry.value;
41 entry.key = d;
42 entry.value = UString::from(d);
43 return entry.value;
48 CacheEntry<int>& entry = lookup(i); local
49 if (i == entry.key && !entry
[all...]
H A DLookup.cpp38 HashEntry* entry = &entries[hashIndex]; local
40 if (entry->key()) {
41 while (entry->next()) {
42 entry = entry->next();
45 entry->setNext(&entries[linkIndex++]);
46 entry = entry->next();
49 entry->initialize(identifier, values[i].attributes, values[i].value1, values[i].value2);
67 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObjec argument
[all...]
H A DLookup.h129 // Find an entry in the table, and return the entry.
130 ALWAYS_INLINE const HashEntry* entry(JSGlobalData* globalData, const Identifier& identifier) const function in struct:JSC::HashTable
133 return entry(identifier);
136 ALWAYS_INLINE const HashEntry* entry(ExecState* exec, const Identifier& identifier) const function in struct:JSC::HashTable
139 return entry(identifier);
143 ALWAYS_INLINE const HashEntry* entry(const Identifier& identifier) const function in struct:JSC::HashTable
147 const HashEntry* entry = &table[identifier.ustring().rep()->existingHash() & compactHashSizeMask]; local
149 if (!entry->key())
153 if (entry
176 const HashEntry* entry = table->entry(exec, propertyName); local
192 const HashEntry* entry = table->entry(exec, propertyName); local
218 const HashEntry* entry = table->entry(exec, propertyName); local
237 const HashEntry* entry = table->entry(exec, propertyName); local
254 const HashEntry* entry = table->entry(exec, propertyName); local
272 const HashEntry* entry = table->entry(exec, propertyName); local
292 const HashEntry* entry = table->entry(exec, propertyName); local
[all...]
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
93 if (key == entry.m_key)
116 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
118 if (key == entry
[all...]
H A DIntSet.java89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
91 if (key == entry.m_key)
109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
111 result [scan ++] = entry
[all...]
H A DIntIntMap.java27 // TODO: optimize key comparisons using key.hash == entry.key.hash condition
91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
93 if (key == entry.m_key) return true;
115 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry
[all...]
H A DObjectIntMap.java29 // TODO: optimize key comparisons using key.hash == entry.key.hash condition
96 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
98 if ((keyHash == entry.m_key.hashCode ()) || entry.m_key.equals (key))
124 for (Entry entry = buckets [bucketIndex]; entry != null; entry
[all...]
/external/opencore/fileformats/mp4/composer/src/
H A Dsampledescriptionatom.cpp69 PVA_FF_SampleEntry *entry = NULL; local
90 PV_MP4_FF_NEW(fp->auditCB, PVA_FF_TextSampleEntry, (), entry);
92 addSampleEntry(entry);
93 entry->setParent(this);
94 entry->recomputeSize();
104 PV_MP4_FF_NEW(fp->auditCB, PVA_FF_AudioSampleEntry, (_codecType), entry);
105 addSampleEntry(entry);
109 PV_MP4_FF_NEW(fp->auditCB, PVA_FF_AMRSampleEntry, (AMR_SAMPLE_ENTRY), entry);
110 addSampleEntry(entry);
111 entry
167 PVA_FF_SampleEntry* entry = (*_psampleEntryVec)[i]; local
232 PVA_FF_SampleEntry *entry = NULL; local
360 PVA_FF_AudioSampleEntry *entry = (PVA_FF_AudioSampleEntry*) getSampleEntryAt(0); local
379 PVA_FF_VisualSampleEntry *entry = local
398 PVA_FF_VisualSampleEntry *entry = (PVA_FF_VisualSampleEntry*) getSampleEntryAt(0); local
409 PVA_FF_AudioSampleEntry *entry = (PVA_FF_AudioSampleEntry*) getSampleEntryAt(0); local
423 PVA_FF_AMRSampleEntry *entry = (PVA_FF_AMRSampleEntry *)(getSampleEntryAt(0)); local
444 PVA_FF_MpegSampleEntry *entry = (PVA_FF_MpegSampleEntry*) getSampleEntryAt(0); local
475 PVA_FF_MpegSampleEntry *entry = (PVA_FF_MpegSampleEntry*) getSampleEntryAt(0); local
486 addSampleEntry(PVA_FF_SampleEntry *entry) argument
551 insertSampleEntryAt(int32 index, PVA_FF_SampleEntry *entry) argument
591 replaceSampleEntryAt(int32 index, PVA_FF_SampleEntry *entry) argument
681 PVA_FF_AudioSampleEntry *entry = local
692 PVA_FF_H263SampleEntry *entry = local
704 PVA_FF_AVCSampleEntry *entry = local
710 PVA_FF_VisualSampleEntry *entry = local
758 PVA_FF_VisualSampleEntry *entry = (PVA_FF_VisualSampleEntry*) getSampleEntryAt(0); local
767 PVA_FF_AudioSampleEntry *entry = (PVA_FF_AudioSampleEntry*) getSampleEntryAt(0); local
775 PVA_FF_MpegSampleEntry *entry = (PVA_FF_MpegSampleEntry*) getSampleEntryAt(0); local
791 PVA_FF_VisualSampleEntry *entry = (PVA_FF_VisualSampleEntry*) getSampleEntryAt(0); local
800 PVA_FF_AudioSampleEntry *entry = (PVA_FF_AudioSampleEntry*) getSampleEntryAt(0); local
808 PVA_FF_MpegSampleEntry *entry = (PVA_FF_MpegSampleEntry*) getSampleEntryAt(0); local
824 PVA_FF_AudioSampleEntry *entry = (PVA_FF_AudioSampleEntry*) getSampleEntryAt(0); local
833 PVA_FF_AMRSampleEntry *entry = (PVA_FF_AMRSampleEntry *)(getSampleEntryAt(0)); local
[all...]
/external/grub/util/
H A Dgrub-set-default3 # Set a default boot entry for GRUB
25 entry=
31 Usage: grub-set-default [OPTION] entry
32 Set the default boot entry for GRUB.
61 if test "x$entry" != x; then
67 entry="${option}" ;;
71 if test "x$entry" = x; then
72 echo "entry not specified." 1>&2
97 $entry
H A Dgrub-set-default.in3 # Set a default boot entry for GRUB
25 entry=
31 Usage: grub-set-default [OPTION] entry
32 Set the default boot entry for GRUB.
61 if test "x$entry" != x; then
67 entry="${option}" ;;
71 if test "x$entry" = x; then
72 echo "entry not specified." 1>&2
97 $entry
/external/oprofile/daemon/
H A Dopd_cookie.c105 struct cookie_entry * entry = xmalloc(sizeof(struct cookie_entry)); local
107 entry->value = cookie;
108 entry->name = xmalloc(PATH_MAX + 1);
110 err = lookup_dcookie(cookie, entry->name, PATH_MAX);
115 free(entry->name);
116 entry->name = NULL;
117 entry->ignored = 0;
119 entry->ignored = is_image_ignored(entry->name);
122 return entry;
137 struct cookie_entry * entry; local
160 struct cookie_entry * entry; local
182 struct cookie_entry * entry; local
[all...]
/external/wpa_supplicant/
H A Dpmksa_cache.c36 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx,
72 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) argument
74 os_free(entry);
79 struct rsn_pmksa_cache_entry *entry,
83 pmksa->free_cb(entry, pmksa->ctx, replace);
84 _pmksa_cache_free_entry(entry);
95 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
96 pmksa->pmksa = entry->next;
97 wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
98 MACSTR, MAC2STR(entry
78 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry, int replace) argument
117 struct rsn_pmksa_cache_entry *entry; local
161 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
265 struct rsn_pmksa_cache_entry *entry, *prev; local
292 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
312 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
355 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
445 struct rsn_pmksa_cache_entry *entry; local
486 pmksa_cache_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, int replace), void *ctx, struct wpa_sm *sm) argument
[all...]
H A Dradius_client.c26 * before entry is removed from retransmit
163 struct radius_msg_list *entry,
169 if (entry->msg_type == RADIUS_ACCT ||
170 entry->msg_type == RADIUS_ACCT_INTERIM) {
172 if (entry->attempts == 0)
180 if (entry->attempts == 0)
188 /* retransmit; remove entry if too many attempts */
189 entry->attempts++;
190 hostapd_logger(radius->ctx, entry->addr, HOSTAPD_MODULE_RADIUS,
192 entry
162 radius_client_retransmit(struct radius_client_data *radius, struct radius_msg_list *entry, os_time_t now) argument
218 struct radius_msg_list *entry, *prev, *tmp; local
326 struct radius_msg_list *entry; local
356 struct radius_msg_list *entry, *prev; local
409 struct radius_msg_list *entry, *prev, *tmp; local
650 struct radius_msg_list *entry, *prev, *_remove; local
685 struct radius_msg_list *entry, *prev, *tmp; local
719 struct radius_msg_list *entry; local
749 struct radius_msg_list *entry; local
1019 struct radius_msg_list *entry, *prev, *tmp; local
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
H A Dpmksa_cache.c35 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx,
77 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) argument
79 os_free(entry);
84 struct rsn_pmksa_cache_entry *entry,
88 pmksa->free_cb(entry, pmksa->ctx, replace);
89 _pmksa_cache_free_entry(entry);
100 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
101 pmksa->pmksa = entry->next;
102 wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
103 MACSTR, MAC2STR(entry
83 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry, int replace) argument
122 struct rsn_pmksa_cache_entry *entry; local
167 struct rsn_pmksa_cache_entry *entry, *pos, *prev; local
272 struct rsn_pmksa_cache_entry *entry, *prev; local
299 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
319 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
363 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
454 struct rsn_pmksa_cache_entry *entry; local
495 pmksa_cache_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, int replace), void *ctx, struct wpa_sm *sm) argument
[all...]
/external/easymock/src/org/easymock/internal/
H A DUnorderedBehavior.java36 for (ExpectedInvocationAndResults entry : results) {
37 if (entry.getExpectedInvocation().equals(expected)) {
38 entry.getResults().add(result, count);
48 for (ExpectedInvocationAndResults entry : results) {
50 if (!entry.getExpectedInvocation().matches(actual)) {
53 Result result = entry.getResults().next();
70 for (ExpectedInvocationAndResults entry : results) {
71 if (!entry.getResults().hasValidCallCount()) {
81 for (ExpectedInvocationAndResults entry : results) {
83 boolean validCallCount = entry
[all...]
/external/bison/src/
H A Dmuscle_tab.c104 muscle_entry *entry; local
107 entry = hash_lookup (muscle_table, &probe);
109 if (!entry)
112 entry = xmalloc (sizeof *entry);
113 entry->key = key;
114 hash_insert (muscle_table, entry);
116 entry->value = value;
130 muscle_entry *entry = NULL; local
133 entry
218 muscle_m4_output(muscle_entry *entry, FILE *out) argument
226 muscle_m4_output_processor(void *entry, void *out) argument
[all...]
/external/dbus/dbus/
H A Ddbus-address.h44 DBusAddressEntry ***entry,
47 const char *dbus_address_entry_get_value (DBusAddressEntry *entry,
49 const char *dbus_address_entry_get_method (DBusAddressEntry *entry);
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DBasicPoolEntryRef.java48 /** The planned route of the entry. */
53 * Creates a new reference to a pool entry.
55 * @param entry the pool entry, must not be <code>null</code>
58 public BasicPoolEntryRef(BasicPoolEntry entry, argument
60 super(entry, queue);
61 if (entry == null) {
63 ("Pool entry must not be null.");
65 route = entry.getPlannedRoute();
70 * Obtain the planned route for the referenced entry
[all...]
/external/v8/src/ia32/
H A Dsimulator-ia32.h34 // do is to call the entry directly.
35 #define CALL_GENERATED_CODE(entry, p0, p1, p2, p3, p4) \
36 entry(p0, p1, p2, p3, p4);
54 // Call the generated regexp code directly. The entry function pointer should
56 #define CALL_GENERATED_REGEXP_CODE(entry, p0, p1, p2, p3, p4, p5, p6) \
57 entry(p0, p1, p2, p3, p4, p5, p6)

Completed in 1706 milliseconds

1234567891011>>