Searched refs:entry (Results 101 - 125 of 2918) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/util/
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/autotest/client/site_tests/kernel_ConfigVerify/
H A Dkernel_ConfigVerify.py166 for entry in self.IS_EXCLUSIVE:
167 if entry['regex'] == 'BINFMT_':
168 entry['builtin'].append('BINFMT_SCRIPT')
172 for entry in self.IS_EXCLUSIVE:
173 if entry['regex'] == 'BINFMT_':
174 entry['builtin'].append('BINFMT_MISC')
175 if entry['regex'] == '.*_FS$':
176 entry['module'].append('NFS_FS')
179 for entry in self.IS_EXCLUSIVE:
180 if entry['rege
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DAbstractBiMapTester.java40 static <K, V> Entry<V, K> reverseEntry(Entry<K, V> entry) { argument
41 return Helpers.mapEntry(entry.getValue(), entry.getKey());
48 for (Entry<K, V> entry : expected) {
49 reversedEntries.add(reverseEntry(entry));
53 for (Entry<K, V> entry : expected) {
54 assertEquals("Wrong key for value " + entry.getValue(), entry.getKey(), getMap()
56 .get(entry.getValue()));
63 for (Entry<K, V> entry
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dglsl_symbol_table.cpp142 * the current scope, just update the existing entry to include 'v'.
149 /* If not declared at this scope, add a new entry. But if an existing
150 * entry includes a function, propagate that to this block - otherwise
153 symbol_table_entry *entry = new(linalloc) symbol_table_entry(v); local
155 entry->f = existing->f;
156 int added = _mesa_symbol_table_add_symbol(table, v->name, entry);
165 symbol_table_entry *entry = new(linalloc) symbol_table_entry(v); local
166 return _mesa_symbol_table_add_symbol(table, v->name, entry) == 0;
171 symbol_table_entry *entry = new(linalloc) symbol_table_entry(t); local
172 return _mesa_symbol_table_add_symbol(table, name, entry)
179 symbol_table_entry *entry = get_entry(name); local
181 symbol_table_entry *entry = local
202 symbol_table_entry *entry = new(linalloc) symbol_table_entry(f); local
214 symbol_table_entry *entry = local
225 symbol_table_entry *entry = new(linalloc) symbol_table_entry(f); local
233 symbol_table_entry *entry = get_entry(name); local
239 symbol_table_entry *entry = get_entry(name); local
246 symbol_table_entry *entry = get_entry(name); local
252 symbol_table_entry *entry = get_entry(name); local
259 symbol_table_entry *entry = get_entry(name); local
280 symbol_table_entry *entry = get_entry(name); local
290 symbol_table_entry *entry = get_entry(name); local
[all...]
H A Dopt_dead_code_local.cpp76 foreach_in_list_safe(assignment_entry, entry, this->assignments) {
77 if (entry->lhs == var) {
80 printf("used %s (0x%01x - 0x%01x)\n", entry->lhs->name,
81 entry->unused, used & 0xf);
82 entry->unused &= ~used;
83 if (!entry->unused)
84 entry->remove();
87 printf("used %s\n", entry->lhs->name);
88 entry->remove();
126 foreach_in_list_safe(assignment_entry, entry, thi
280 assignment_entry *entry = new(lin_ctx) assignment_entry(var, ir); local
[all...]
H A Dopt_array_splitting.cpp143 foreach_in_list(variable_entry, entry, &this->variable_list) {
144 if (entry->var == var)
145 return entry;
148 variable_entry *entry = new(mem_ctx) variable_entry(var); local
149 this->variable_list.push_tail(entry);
150 return entry;
157 variable_entry *entry = this->get_variable_entry(ir); local
159 if (entry)
160 entry->declaration = true;
185 variable_entry *entry local
260 variable_entry *entry = get_variable_entry(var); local
333 variable_entry *entry = get_splitting_entry(var); local
[all...]
/external/mesa3d/src/util/tests/hash_table/
H A Drandom_entry.c46 uint32_t_key_is_even(struct hash_entry *entry) argument
48 return (key_value(entry->key) & 1) == 0;
55 struct hash_entry *entry; local
72 entry = _mesa_hash_table_random_entry(ht, NULL);
73 assert(entry);
79 entry = _mesa_hash_table_random_entry(ht, uint32_t_key_is_even);
80 assert(entry);
81 assert((key_value(entry->key) & 1) == 0);
82 if (i == 0 || key_value(entry->key) != random_value)
84 random_value = key_value(entry
[all...]
/external/syslinux/gpxe/src/arch/i386/interface/pcbios/
H A Dbios_smbios.c39 * @v smbios SMBIOS entry point descriptor structure to fill in
44 struct smbios_entry entry; member in union:__anon24469
56 copy_from_real ( &u.entry, BIOS_SEG, offset,
57 sizeof ( u.entry ));
58 if ( u.entry.signature != SMBIOS_SIGNATURE )
62 len = u.entry.len;
74 DBG ( "Found SMBIOS v%d.%d entry point at %04x:%04x\n",
75 u.entry.major, u.entry.minor, BIOS_SEG, offset );
76 smbios->address = phys_to_user ( u.entry
[all...]
/external/v8/src/profiler/
H A Dcpu-profiler-inl.h19 code_map->AddCode(start, entry, size);
29 CodeEntry* entry = code_map->FindEntry(start); local
30 if (entry != NULL) {
31 entry->set_bailout_reason(bailout_reason);
37 CodeEntry* entry = code_map->FindEntry(start); local
38 if (entry != NULL) entry->set_deopt_info(deopt_reason, deopt_id);
43 CodeEntry* entry = code_map->FindEntry(start); local
44 if (!entry) {
49 entry
[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/f2fs-tools/fsck/
H A Dxattr.h110 #define IS_XATTR_LAST_ENTRY(entry) (*(__u32 *)(entry) == 0)
116 #define XATTR_NEXT_ENTRY(entry) ((struct f2fs_xattr_entry *) ((char *)(entry) +\
117 ENTRY_SIZE(entry)))
122 #define ENTRY_SIZE(entry) (XATTR_ALIGN(sizeof(struct f2fs_xattr_entry) + \
123 entry->e_name_len + le16_to_cpu(entry->e_value_size)))
125 #define list_for_each_xattr(entry, addr) \
126 for (entry
[all...]
/external/v8/src/ast/
H A Dmodules.h108 // parser. (A Deserialize'd entry has an invalid location.)
111 Handle<ModuleInfoEntry> entry);
143 void AddRegularExport(Entry* entry) { argument
144 DCHECK_NOT_NULL(entry->export_name);
145 DCHECK_NOT_NULL(entry->local_name);
146 DCHECK_NULL(entry->import_name);
147 DCHECK_LT(entry->module_request, 0);
148 regular_exports_.insert(std::make_pair(entry->local_name, entry));
151 void AddSpecialExport(const Entry* entry, Zon argument
157 AddRegularImport(Entry* entry) argument
167 AddNamespaceImport(const Entry* entry, Zone* zone) argument
[all...]
H A Dmodules.cc18 Entry* entry = new (zone) Entry(loc); local
19 entry->local_name = local_name;
20 entry->import_name = import_name;
21 entry->module_request = AddModuleRequest(module_request);
22 AddRegularImport(entry);
29 Entry* entry = new (zone) Entry(loc); local
30 entry->local_name = local_name;
31 entry->module_request = AddModuleRequest(module_request);
32 AddNamespaceImport(entry, zone);
43 Entry* entry local
55 Entry* entry = new (zone) Entry(loc); local
65 Entry* entry = new (zone) Entry(loc); local
97 Deserialize( Isolate* isolate, AstValueFactory* avfactory, Handle<ModuleInfoEntry> entry) argument
175 Entry* entry = local
188 Entry* entry = it->second; local
232 Entry* entry = it->second; local
245 Entry* entry = elem.second; local
299 const Entry* entry = FindDuplicateExport(zone); local
310 const Entry* entry = elem.second; local
[all...]
/external/mesa3d/src/amd/vulkan/
H A Dradv_pipeline_cache.c81 entry_size(struct cache_entry *entry) argument
83 return sizeof(*entry) + entry->code_size;
120 struct cache_entry *entry = cache->hash_table[index]; local
122 if (!entry)
125 if (memcmp(entry->sha1, sha1, sizeof(entry->sha1)) == 0) {
126 return entry;
137 struct cache_entry *entry; local
141 entry
153 struct cache_entry *entry = radv_pipeline_cache_search(cache, sha1); local
187 radv_pipeline_cache_set_entry(struct radv_pipeline_cache *cache, struct cache_entry *entry) argument
229 struct cache_entry *entry = old_table[i]; local
242 radv_pipeline_cache_add_entry(struct radv_pipeline_cache *cache, struct cache_entry *entry) argument
262 struct cache_entry *entry = radv_pipeline_cache_search_unlocked(cache, sha1); local
331 struct cache_entry *entry = (struct cache_entry*)p; local
426 struct cache_entry *entry; local
451 struct cache_entry *entry = src->hash_table[i]; local
[all...]
/external/v8/src/compiler/
H A Dnode-cache.cc51 Entry* entry = &entries_[j]; local
52 if (!entry->value_) {
53 entry->key_ = old->key_;
54 entry->value_ = old->value_;
68 // Allocate the initial entries and insert the first entry.
73 Entry* entry = &entries_[hash & (kInitialSize - 1)]; local
74 entry->key_ = key;
75 return &entry->value_;
83 Entry* entry = &entries_[i]; local
84 if (pred_(entry
95 Entry* entry = &entries_[hash & (size_ - 1)]; local
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dneighbor_db.c70 struct hostapd_neighbor_entry *entry; local
72 entry = hostapd_neighbor_get(hapd, bssid, ssid);
73 if (!entry)
74 entry = hostapd_neighbor_add(hapd);
75 if (!entry)
78 hostapd_neighbor_clear_entry(entry);
80 os_memcpy(entry->bssid, bssid, ETH_ALEN);
81 os_memcpy(&entry->ssid, ssid, sizeof(entry->ssid));
83 entry
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dneighbor_db.c70 struct hostapd_neighbor_entry *entry; local
72 entry = hostapd_neighbor_get(hapd, bssid, ssid);
73 if (!entry)
74 entry = hostapd_neighbor_add(hapd);
75 if (!entry)
78 hostapd_neighbor_clear_entry(entry);
80 os_memcpy(entry->bssid, bssid, ETH_ALEN);
81 os_memcpy(&entry->ssid, ssid, sizeof(entry->ssid));
83 entry
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dneighbor_db.c70 struct hostapd_neighbor_entry *entry; local
72 entry = hostapd_neighbor_get(hapd, bssid, ssid);
73 if (!entry)
74 entry = hostapd_neighbor_add(hapd);
75 if (!entry)
78 hostapd_neighbor_clear_entry(entry);
80 os_memcpy(entry->bssid, bssid, ETH_ALEN);
81 os_memcpy(&entry->ssid, ssid, sizeof(entry->ssid));
83 entry
[all...]
/external/ImageMagick/coders/
H A Dx.c140 *entry;
142 entry=AcquireMagickInfo("X","X","X Image");
144 entry->decoder=(DecodeImageHandler *) ReadXImage;
145 entry->encoder=(EncodeImageHandler *) WriteXImage;
147 entry->format_type=ImplicitFormatType;
148 (void) RegisterMagickInfo(entry);
136 *entry; local
H A Dttf.c329 *entry;
336 entry=AcquireMagickInfo("TTF","DFONT","Multi-face font package");
338 entry->decoder=(DecodeImageHandler *) ReadTTFImage;
340 entry->magick=(IsImageFormatHandler *) IsTTF;
341 entry->flags^=CoderAdjoinFlag;
343 entry->version=ConstantString(version);
344 (void) RegisterMagickInfo(entry);
345 entry=AcquireMagickInfo("TTF","PFA","Postscript Type 1 font (ASCII)");
347 entry->decoder=(DecodeImageHandler *) ReadTTFImage;
349 entry
324 *entry; local
[all...]
/external/google-breakpad/src/processor/
H A Daddress_map-inl.h49 const EntryType &entry) {
58 map_.insert(MapValue(address, entry));
65 EntryType *entry, AddressType *entry_address) const {
66 BPLOG_IF(ERROR, !entry) << "AddressMap::Retrieve requires |entry|";
67 assert(entry);
79 *entry = iterator->second;
48 Store(const AddressType &address, const EntryType &entry) argument
63 Retrieve( const AddressType &address, EntryType *entry, AddressType *entry_address) const argument
/external/libexif/libexif/
H A Dexif-entry.h1 /*! \file exif-entry.h
44 /*! EXIF tag for this entry */
47 /*! Type of data in this entry */
50 /*! Number of elements in the array, if this is an array entry.
54 /*! Pointer to the raw EXIF data for this entry. It is allocated
63 /*! #ExifContent containing this entry.
94 * \param[in] entry #ExifEntry
98 void exif_entry_ref (ExifEntry *entry);
101 * When the reference count drops to zero, free the entry.
103 * \param[in] entry #ExifEntr
[all...]
/external/libopus/silk/
H A DNLSF_unpack.c43 opus_uint8 entry; local
48 entry = *ec_sel_ptr++;
49 ec_ix [ i ] = silk_SMULBB( silk_RSHIFT( entry, 1 ) & 7, 2 * NLSF_QUANT_MAX_AMPLITUDE + 1 );
50 pred_Q8[ i ] = psNLSF_CB->pred_Q8[ i + ( entry & 1 ) * ( psNLSF_CB->order - 1 ) ];
51 ec_ix [ i + 1 ] = silk_SMULBB( silk_RSHIFT( entry, 5 ) & 7, 2 * NLSF_QUANT_MAX_AMPLITUDE + 1 );
52 pred_Q8[ i + 1 ] = psNLSF_CB->pred_Q8[ i + ( silk_RSHIFT( entry, 4 ) & 1 ) * ( psNLSF_CB->order - 1 ) + 1 ];
/external/mesa3d/src/mapi/
H A Dentry_x86_tsd.h81 entry_patch(mapi_func entry, int slot) argument
83 char *code = (char *) entry;
94 mapi_func entry; local
101 entry = (mapi_func) code;
102 entry_patch(entry, slot);
104 return entry;
/external/e2fsprogs/contrib/android/
H A Dblock_list.c16 } entry; member in struct:block_list
40 params->entry.head = params->entry.tail = NULL;
41 params->entry.filename = LINUX_S_ISREG(inode->i_mode) ? path : NULL;
50 if (params->entry.filename && !metadata)
51 add_blocks_to_range(&params->entry.head, &params->entry.tail,
66 if (!params->entry.filename || !params->entry.head)
69 params->entry
[all...]

Completed in 790 milliseconds

1234567891011>>