Searched refs:entry (Results 176 - 200 of 2918) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/test/Scripts/
H A Dcoff-dump.py390 def handle_scalar(entry):
391 iformat = entry[1]
392 oformat = entry[2]
400 def handle_enum(entry):
401 iformat = entry[1]
402 oformat = entry[2]
403 definitions = entry[3]
422 def handle_flags(entry):
423 iformat = entry[1]
424 oformat = entry[
[all...]
/external/google-breakpad/src/common/
H A Dsimple_string_dictionary.h55 // ValueSize-1 characters in an entry. NumEntries is the total number of
65 // An Entry object is a single entry in the map. If the key is a 0-length
66 // NUL-terminated string, the entry is empty.
85 // Returns the next entry in the map, or NULL if at the end of the
89 const Entry* entry = &map_.entries_[current_++]; local
90 if (entry->is_active()) {
91 return entry;
150 const Entry* entry = GetConstEntryForKey(key); local
151 if (!entry)
154 return entry
[all...]
/external/google-breakpad/src/processor/
H A Drange_map-inl.h52 const EntryType &entry) {
112 map_.insert(MapValue(high, Range(base, entry)));
119 const AddressType &address, EntryType *entry,
121 BPLOG_IF(ERROR, !entry) << "RangeMap::RetrieveRange requires |entry|";
122 assert(entry);
136 *entry = iterator->second.entry();
148 const AddressType &address, EntryType *entry,
150 BPLOG_IF(ERROR, !entry) << "RangeMa
50 StoreRange(const AddressType &base, const AddressType &size, const EntryType &entry) argument
118 RetrieveRange( const AddressType &address, EntryType *entry, AddressType *entry_base, AddressType *entry_size) const argument
147 RetrieveNearestRange( const AddressType &address, EntryType *entry, AddressType *entry_base, AddressType *entry_size) const argument
178 RetrieveRangeAtIndex( int index, EntryType *entry, AddressType *entry_base, AddressType *entry_size) const argument
[all...]
H A Drange_map.h62 const EntryType &entry);
66 // are set to the base and size of the entry's range.
67 bool RetrieveRange(const AddressType &address, EntryType *entry,
74 // non-NULL, are set to the base and size of the entry's range.
75 bool RetrieveNearestRange(const AddressType &address, EntryType *entry,
82 // and entry_size, if non-NULL, are set to the base and size of the entry's
86 bool RetrieveRangeAtIndex(int index, EntryType *entry,
104 Range(const AddressType &base, const EntryType &entry) argument
105 : base_(base), entry_(entry) {}
108 EntryType entry() cons function in class:google_breakpad::RangeMap::Range
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DHashBiMap.java121 * Finds and removes {@code entry} from the bucket linked lists in both the
124 private void delete(BiEntry<K, V> entry) { argument
125 int keyBucket = entry.keyHash & mask;
129 if (bucketEntry == entry) {
131 hashTableKToV[keyBucket] = entry.nextInKToVBucket;
133 prevBucketEntry.nextInKToVBucket = entry.nextInKToVBucket;
140 int valueBucket = entry.valueHash & mask;
144 if (bucketEntry == entry) {
146 hashTableVToK[valueBucket] = entry.nextInVToKBucket;
148 prevBucketEntry.nextInVToKBucket = entry
159 insert(BiEntry<K, V> entry) argument
381 output(BiEntry<K, V> entry) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedHashMultimap.java124 void setPredecessorInValueSet(ValueSetLink<K, V> entry); argument
125 void setSuccessorInValueSet(ValueSetLink<K, V> entry); argument
139 private static <K, V> void deleteFromValueSet(ValueSetLink<K, V> entry) { argument
140 succeedsInValueSet(entry.getPredecessorInValueSet(), entry.getSuccessorInValueSet());
143 private static <K, V> void deleteFromMultimap(ValueEntry<K, V> entry) { argument
144 succeedsInMultimap(entry.getPredecessorInMultimap(), entry.getSuccessorInMultimap());
188 public void setPredecessorInValueSet(ValueSetLink<K, V> entry) { argument
189 predecessorInValueSet = entry;
193 setSuccessorInValueSet(ValueSetLink<K, V> entry) argument
342 setPredecessorInValueSet(ValueSetLink<K, V> entry) argument
347 setSuccessorInValueSet(ValueSetLink<K, V> entry) argument
[all...]
H A DImmutableEnumMap.java31 for (Map.Entry<K, V> entry : checkNotNull(map).entrySet()) {
32 checkNotNull(entry.getKey());
33 checkNotNull(entry.getValue());
/external/aac/libSACenc/src/
H A Dsacenc_huff_tab.h115 (((a.packed >> 8) & 0x00FFFFFF)) /*!< Return value from packed table entry. \
118 ((a.packed & 0xFF)) /*!< Return length from packed table entry. */
124 * The packed entry consist of hffman value and length information.
132 ULONG packed; /*! Packed huffman entry:
138 HUFF_ENTRY entry[2][2]; member in struct:__anon596
144 HUFF_ENTRY entry[4][4]; member in struct:__anon597
150 HUFF_ENTRY entry[6][6]; member in struct:__anon598
156 HUFF_ENTRY entry[7][7]; member in struct:__anon599
162 HUFF_ENTRY entry[8][8]; member in struct:__anon600
168 HUFF_ENTRY entry[1 member in struct:__anon601
174 HUFF_ENTRY entry[13][13]; member in struct:__anon602
[all...]
/external/autotest/client/site_tests/video_VideoSeek/
H A Dvideo_VideoSeek.py38 for entry in blacklist:
39 if ((entry[0] is None or fnmatch.fnmatch(board, entry[0])) and
40 (entry[1] is None or codec == entry[1]) and
41 (entry[2] is None or is_switchres == entry[2])):
/external/e2fsprogs/lib/ext2fs/
H A Dext2_ext_attr.h46 #define EXT2_EXT_ATTR_NEXT(entry) \
48 (char *)(entry) + EXT2_EXT_ATTR_LEN((entry)->e_name_len)) )
51 #define EXT2_EXT_IS_LAST_ENTRY(entry) (*((__u32 *)(entry)) == 0UL)
52 #define EXT2_EXT_ATTR_NAME(entry) \
53 (((char *) (entry)) + sizeof(struct ext2_ext_attr_entry))
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c25 ss_request_entry *entry; local
55 entry = (*table)->requests;
56 for (; entry->command_names; entry++) {
58 if (entry->flags & SS_OPT_DONT_LIST)
60 for (name = entry->command_names; *name; name++) {
74 fputs(entry->info_string, output);
/external/mesa3d/src/mapi/glapi/
H A Dglapi_getproc.c57 * and return the corresponding glprocs_table_t entry.
175 * only allocate the entry-point stub when the application requests the
262 * \param funcName Name of the function to create an entry-point for.
270 struct _glapi_function * entry = NULL; local
291 entry = & ExtEntryTable[NumExtEntryPoints];
294 entry->name = name_dup;
295 entry->parameter_signature = NULL;
296 entry->dispatch_offset = ~0;
297 entry->dispatch_stub = entrypoint;
299 return entry;
304 set_entry_info( struct _glapi_function * entry, const char * signature, unsigned offset ) argument
378 struct _glapi_function * entry[8]; local
510 struct _glapi_function * entry; local
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DLocaleObjectCache.java35 CacheEntry<K, V> entry = _map.get(key);
36 if (entry != null) {
37 value = entry.get();
51 entry = _map.putIfAbsent(key, newEntry);
52 if (entry == null) {
56 value = entry.get();
65 CacheEntry<K, V> entry;
66 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
67 _map.remove(entry.getKey());
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
H A DLocaleObjectCache.java31 CacheEntry<K, V> entry = _map.get(key);
32 if (entry != null) {
33 value = entry.get();
47 entry = _map.putIfAbsent(key, newEntry);
48 if (entry == null) {
52 value = entry.get();
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
63 _map.remove(entry.getKey());
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
H A DLocaleObjectCache.java31 CacheEntry<K, V> entry = _map.get(key);
32 if (entry != null) {
33 value = entry.get();
47 entry = _map.putIfAbsent(key, newEntry);
48 if (entry == null) {
52 value = entry.get();
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
63 _map.remove(entry.getKey());
/external/libexif/test/
H A Dtest-parse.c32 void content_foreach_func(ExifEntry *entry, void *callback_data);
33 void content_foreach_func(ExifEntry *entry, void *UNUSED(callback_data)) argument
36 exif_entry_get_value(entry, buf, sizeof(buf));
40 entry,
41 exif_tag_get_name(entry->tag),
42 exif_format_get_name(entry->format),
43 entry->size,
44 (int)(entry->components),
45 exif_entry_get_value(entry, buf, sizeof(buf)));
/external/v8/src/crankshaft/
H A Dhydrogen-check-elimination.cc66 HValue* object_; // The object being approximated. NULL => invalid entry.
69 State state_; // The state of this entry.
210 // Create an entry for a phi in the table.
225 HCheckTableEntry* entry = copy->Find(object); local
231 if (entry == NULL) {
234 entry->maps_ = new(zone) UniqueSet<Map>(cmp->map(), zone);
235 entry->check_ = cmp;
236 entry->state_ = state;
240 if (entry != NULL) {
241 EnsureChecked(entry, objec
276 HCheckTableEntry* entry = copy->Find(object); local
364 HCheckTableEntry* entry = Find(object); local
451 HCheckTableEntry* entry = Find(value); local
506 HCheckTableEntry* entry = Find(object); local
553 HCheckTableEntry* entry = Find(instr->value()->ActualValue()); local
608 HCheckTableEntry* entry = Find(value); local
630 HCheckTableEntry* entry = Find(object); local
656 EnsureChecked(HCheckTableEntry* entry, HValue* value, HInstruction* instr) argument
678 HCheckTableEntry* entry = &entries_[i]; local
696 HCheckTableEntry* entry = &entries_[i]; local
746 HCheckTableEntry* entry = &table->entries_[i]; local
767 HCheckTableEntry* entry = &entries_[i]; local
786 HCheckTableEntry* entry = &entries_[cursor_++]; local
[all...]
/external/autotest/client/common_lib/cros/network/
H A Diw_event_logger.py100 @yields LogEntry tuples for each log entry.
134 for entry in self.get_log_entries():
135 if (entry.message.startswith('scan started') and
137 start_time = entry.timestamp
142 if (self._check_message_for_disconnect(entry.message) and
144 start_time = entry.timestamp
145 if entry.message.startswith('connected'):
148 end_time = entry.timestamp
165 for entry in self.get_log_entries():
166 if self._check_message_for_disconnect(entry
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/model/
H A DStringMapFunnel.java33 for (Entry<String, String> entry : from.entrySet()) {
34 into.putUnencodedChars(entry.getKey())
36 .putUnencodedChars(entry.getValue());
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
H A DExecutionDataStore.java49 final ExecutionData entry = entries.get(id);
50 if (entry == null) {
54 entry.merge(data);
73 final ExecutionData entry = entries.get(id);
74 if (entry != null) {
75 entry.merge(data, false);
93 * Returns the {@link ExecutionData} entry with the given id if it exists in
119 * there is no data available under the given id a new entry is created.
131 ExecutionData entry = entries.get(id);
132 if (entry
[all...]
/external/libexif/libexif/pentax/
H A Dmnote-pentax-entry.c1 /* mnote-pentax-entry.c
22 #include "mnote-pentax-entry.h"
32 #include <libexif/exif-entry.h>
308 mnote_pentax_entry_get_value (MnotePentaxEntry *entry, argument
315 if (!entry) return (NULL);
320 switch (entry->tag) {
341 CF (entry->format, EXIF_FORMAT_SHORT, val, maxlen);
342 CC2 (entry->components, 1, 2, val, maxlen);
343 if (entry->components == 1) {
344 vs = exif_get_short (entry
[all...]
/external/mesa3d/src/util/tests/hash_table/
H A Ddestroy_callback.c39 delete_callback(struct hash_entry *entry) argument
41 if (strcmp(entry->key, str1) == 0)
43 else if (strcmp(entry->key, str2) == 0)
/external/ImageMagick/coders/
H A Durl.c282 *entry;
284 entry=AcquireMagickInfo("URL","HTTP","Uniform Resource Locator (http://)");
288 entry->decoder=(DecodeImageHandler *) ReadURLImage;
290 entry->format_type=ImplicitFormatType;
291 (void) RegisterMagickInfo(entry);
292 entry=AcquireMagickInfo("URL","HTTPS","Uniform Resource Locator (https://)");
295 entry->decoder=(DecodeImageHandler *) ReadURLImage;
297 entry->format_type=ImplicitFormatType;
298 (void) RegisterMagickInfo(entry);
299 entry
279 *entry; local
[all...]
/external/bsdiff/
H A Dendsley_patch_writer.cc72 // the control entry that refers to it.
87 // the diff stream data and the control entry that refers to it. Note that
99 bool EndsleyPatchWriter::AddControlEntry(const ControlEntry& entry) {
100 // Speed-up the common case where the control entry is added when there's
104 pending_diff_ = entry.diff_size;
105 pending_extra_ = entry.extra_size;
106 EmitControlEntry(entry);
110 control_.push_back(entry);
111 pending_control_data_ += entry.diff_size + entry
[all...]
/external/google-breakpad/src/common/dwarf/
H A Ddwarf2diehandler.cc45 HandlerStack &entry = die_handlers_.top(); local
46 if (entry.handler_ != root_handler_)
47 delete entry.handler_;
61 // The stack entry for the parent of this DIE, if there is one.
100 // Push a handler stack entry for this new handler. As an
102 // NULL-handler entries; we just let the oldest such entry stand for
105 HandlerStack entry; local
106 entry.offset_ = offset;
107 entry.handler_ = handler;
108 entry
117 HandlerStack *entry = &die_handlers_.top(); local
[all...]

Completed in 1099 milliseconds

1234567891011>>