/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_vec4_cse.cpp | 138 * \param 'a' is the generating expression from the AEB entry. 182 foreach_in_list_use_after(aeb_entry, entry, &aeb) { in opt_cse_local() 184 if (!(entry->generator->dst.is_null() && !inst->dst.is_null()) && in opt_cse_local() 185 instructions_match(inst, entry->generator)) { in opt_cse_local() 197 /* Our first sighting of this expression. Create an entry. */ in opt_cse_local() 198 aeb_entry *entry = ralloc(cse_ctx, aeb_entry); in opt_cse_local() local 199 entry->tmp = src_reg(); /* file will be BAD_FILE */ in opt_cse_local() 200 entry->generator = inst; in opt_cse_local() 201 aeb.push_tail(entry); in opt_cse_local() 207 bool no_existing_temp = entry in opt_cse_local() [all...] |
H A D | brw_nir_analyze_ubo_ranges.c | 54 score(const struct ubo_range_entry *entry) in score() argument 56 return 2 * entry->benefit - entry->range.length; in score() 106 struct hash_entry *entry = in get_block_info() local 109 if (entry) in get_block_info() 110 return (struct ubo_block_info *) entry->data; in get_block_info() 185 const struct ubo_range_entry *entry, in print_ubo_entry() 188 struct ubo_block_info *info = get_block_info(state, entry->range.block); in print_ubo_entry() 193 entry->range.block, entry in print_ubo_entry() 184 print_ubo_entry(FILE *file, const struct ubo_range_entry *entry, struct ubo_analysis_state *state) print_ubo_entry() argument 277 struct ubo_range_entry *entry = brw_nir_analyze_ubo_ranges() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/pipebuffer/ |
H A D | pb_cache.c | 38 destroy_buffer_locked(struct pb_cache_entry *entry) in destroy_buffer_locked() argument 40 struct pb_cache *mgr = entry->mgr; in destroy_buffer_locked() 41 struct pb_buffer *buf = entry->buffer; in destroy_buffer_locked() 44 if (list_is_linked(&entry->head)) { in destroy_buffer_locked() 45 list_del(&entry->head); in destroy_buffer_locked() 61 struct pb_cache_entry *entry; in release_expired_buffers_locked() local 66 entry = list_entry(curr, struct pb_cache_entry, head); in release_expired_buffers_locked() 68 if (!os_time_timeout(entry->start, entry->end, current_time)) in release_expired_buffers_locked() 71 destroy_buffer_locked(entry); in release_expired_buffers_locked() 83 pb_cache_add_buffer(struct pb_cache_entry *entry) pb_cache_add_buffer() argument 119 pb_cache_is_buffer_compat(struct pb_cache_entry *entry, pb_size size, unsigned alignment, unsigned usage) pb_cache_is_buffer_compat() argument 151 struct pb_cache_entry *entry; pb_cache_reclaim_buffer() local 250 pb_cache_init_entry(struct pb_cache *mgr, struct pb_cache_entry *entry, struct pb_buffer *buf, unsigned bucket_index) pb_cache_init_entry() argument [all...] |
/third_party/libexif/libexif/apple/ |
H A D | mnote-apple-entry.c | 1 /* mnote-apple-entry.c 22 #include "mnote-apple-entry.h" 28 #include <libexif/exif-entry.h> 34 mnote_apple_entry_get_value(MnoteAppleEntry *entry, char *v, unsigned int maxlen) { in mnote_apple_entry_get_value() argument 44 if (!entry) in mnote_apple_entry_get_value() 50 size = entry->size; in mnote_apple_entry_get_value() 51 data = entry->data; in mnote_apple_entry_get_value() 52 switch (entry->tag) { in mnote_apple_entry_get_value() 55 if (entry->format != EXIF_FORMAT_SLONG) return NULL; in mnote_apple_entry_get_value() 56 if (entry in mnote_apple_entry_get_value() [all...] |
/third_party/pulseaudio/src/modules/ |
H A D | module-card-restore.c | 78 struct entry { struct 116 static struct entry* entry_new(void) { in entry_new() 117 struct entry *r = pa_xnew0(struct entry, 1); in entry_new() 137 static void entry_free(struct entry* e) { in entry_free() 148 static struct entry *entry_from_card(pa_card *card) { in entry_from_card() 150 struct entry *entry; in entry_from_card() local 156 entry = entry_new(); in entry_from_card() 157 entry in entry_from_card() 408 struct entry *entry, *old; card_put_hook_callback() local 434 update_profile_for_port(struct entry *entry, pa_card *card, pa_device_port *p) update_profile_for_port() argument 453 struct entry *entry; card_profile_changed_callback() local 486 struct entry *entry; card_profile_added_callback() local 507 struct entry *entry; port_offset_change_callback() local [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | hostsyncgenerator.py | 84 entry = ValidityEntry() 85 entry += elem.text 86 entry += ' in ' 87 entry += self.makeFLink(protoname) 88 self.threadsafety['implicit'] += entry 94 entry = ValidityEntry() 95 entry += 'The sname:VkCommandPool that pname:commandBuffer was allocated from, in ' 96 entry += self.makeFLink(protoname) 97 self.threadsafety['implicit'] += entry 105 entry [all...] |
/third_party/skia/third_party/externals/angle2/util/windows/win32/ |
H A D | test_utils_win32.cpp | 42 void OnCallstackEntry(CallstackEntryType eType, CallstackEntry &entry) override 46 if ((eType != lastEntry) && (entry.offset != 0)) 48 if (entry.name[0] == 0) 49 strncpy_s(entry.name, STACKWALK_MAX_NAMELEN, "(function-name not available)", 51 if (entry.undName[0] != 0) 52 strncpy_s(entry.name, STACKWALK_MAX_NAMELEN, entry.undName, _TRUNCATE); 53 if (entry.undFullName[0] != 0) 54 strncpy_s(entry.name, STACKWALK_MAX_NAMELEN, entry [all...] |
/third_party/libbpf/src/ |
H A D | hashmap.c | 25 struct hashmap_entry *entry) in hashmap_add_entry() 27 entry->next = *pprev; in hashmap_add_entry() 28 *pprev = entry; in hashmap_add_entry() 32 struct hashmap_entry *entry) in hashmap_del_entry() 34 *pprev = entry->next; in hashmap_del_entry() 35 entry->next = NULL; in hashmap_del_entry() 133 struct hashmap_entry **entry) in hashmap_find_entry() 146 *entry = cur; in hashmap_find_entry() 158 struct hashmap_entry *entry; in hashmap_insert() local 169 hashmap_find_entry(map, key, h, NULL, &entry)) { in hashmap_insert() 24 hashmap_add_entry(struct hashmap_entry **pprev, struct hashmap_entry *entry) hashmap_add_entry() argument 31 hashmap_del_entry(struct hashmap_entry **pprev, struct hashmap_entry *entry) hashmap_del_entry() argument 130 hashmap_find_entry(const struct hashmap *map, const long key, size_t hash, struct hashmap_entry ***pprev, struct hashmap_entry **entry) hashmap_find_entry() argument 208 struct hashmap_entry *entry; hashmap_find() local 223 struct hashmap_entry **pprev, *entry; hashmap_delete() local [all...] |
/third_party/mesa3d/src/mapi/glapi/ |
H A D | glapi_getproc.c | 57 * 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; in add_function_name() local 291 entry = & ExtEntryTable[NumExtEntryPoints]; in add_function_name() 294 entry->name = name_dup; in add_function_name() 295 entry->parameter_signature = NULL; in add_function_name() 296 entry->dispatch_offset = ~0; in add_function_name() 297 entry->dispatch_stub = entrypoint; in add_function_name() 299 return entry; in add_function_name() 304 set_entry_info( struct _glapi_function * entry, const char * signature, unsigned offset ) set_entry_info() argument 378 struct _glapi_function * entry[8]; _glapi_add_dispatch() local 510 struct _glapi_function * entry; _glapi_get_proc_address() local [all...] |
/third_party/mesa3d/src/gallium/drivers/zink/ |
H A D | zink_extensions.py | 194 # key = extension name, value = registry entry 238 entry = ExtensionRegistryEntry() 239 entry.ext_type = ext.attrib["type"] 240 entry.promoted_in = self.parse_promotedto(ext.get("promotedto")) 242 entry.device_commands = [] 243 entry.pdevice_commands = [] 244 entry.instance_commands = [] 245 entry.features_fields = [] 246 entry.properties_fields = [] 252 entry [all...] |
/third_party/node/deps/cares/src/lib/ |
H A D | ares__hosts_file.c | 62 * and ips into a single entry due to file formatting requirements. For 87 /*! iphash is the owner of the 'entry' object as there is only ever a single 90 /*! hosthash does not own the entry so won't free on destruction */ 95 size_t refcnt; /*! If the entry is stored multiple times in the 248 static void ares__hosts_entry_destroy(ares_hosts_entry_t *entry) in ares__hosts_entry_destroy() argument 250 if (entry == NULL) { in ares__hosts_entry_destroy() 255 if (entry->refcnt != 0) { in ares__hosts_entry_destroy() 256 entry->refcnt--; in ares__hosts_entry_destroy() 259 if (entry->refcnt > 0) { in ares__hosts_entry_destroy() 263 ares__llist_destroy(entry in ares__hosts_entry_destroy() 268 ares__hosts_entry_destroy_cb(void *entry) ares__hosts_entry_destroy_cb() argument 322 ares__hosts_file_merge_entry( const ares_hosts_file_t *hf, ares_hosts_entry_t *existing, ares_hosts_entry_t *entry, ares_hosts_file_match_t matchtype) ares__hosts_file_merge_entry() argument 360 ares__hosts_file_match(const ares_hosts_file_t *hf, ares_hosts_entry_t *entry, ares_hosts_entry_t **match) ares__hosts_file_match() argument 388 ares__hosts_file_add(ares_hosts_file_t *hosts, ares_hosts_entry_t *entry) ares__hosts_file_add() argument 452 ares__hosts_entry_isdup(ares_hosts_entry_t *entry, const char *host) ares__hosts_entry_isdup() argument 468 ares__parse_hosts_hostnames(ares__buf_t *buf, ares_hosts_entry_t *entry) ares__parse_hosts_hostnames() argument 547 ares_hosts_entry_t *entry = NULL; ares__parse_hosts_ipaddr() local 598 ares_hosts_entry_t *entry = NULL; ares__parse_hosts() local 805 ares__hosts_search_ipaddr(ares_channel_t *channel, ares_bool_t use_env, const char *ipaddr, const ares_hosts_entry_t **entry) ares__hosts_search_ipaddr() argument 835 ares__hosts_search_host(ares_channel_t *channel, ares_bool_t use_env, const char *host, const ares_hosts_entry_t **entry) ares__hosts_search_host() argument 860 ares__hosts_entry_to_hostent(const ares_hosts_entry_t *entry, int family, struct hostent **hostent) ares__hosts_entry_to_hostent() argument 979 ares__hosts_ai_append_cnames(const ares_hosts_entry_t *entry, struct ares_addrinfo_cname **cnames_out) ares__hosts_ai_append_cnames() argument 1051 ares__hosts_entry_to_addrinfo(const ares_hosts_entry_t *entry, const char *name, int family, unsigned short port, ares_bool_t want_cnames, struct ares_addrinfo *ai) ares__hosts_entry_to_addrinfo() argument [all...] |
H A D | ares_qcache.c | 140 const ares__qcache_entry_t *entry = ares__slist_node_val(node); in ares__qcache_expire() local 141 if (entry->expire_ts > now->tv_sec) { in ares__qcache_expire() 145 ares__htable_strvp_remove(cache->cache, entry->key); in ares__qcache_expire() 186 ares__qcache_entry_t *entry = arg; in ares__qcache_entry_destroy_cb() local 187 if (entry == NULL) { in ares__qcache_entry_destroy_cb() 191 ares_free(entry->key); in ares__qcache_entry_destroy_cb() 192 ares_dns_record_destroy(entry->dnsrec); in ares__qcache_entry_destroy_cb() 193 ares_free(entry); in ares__qcache_entry_destroy_cb() 315 ares__qcache_entry_t *entry; in ares__qcache_insert() local 350 entry in ares__qcache_insert() 393 ares__qcache_entry_t *entry; ares__qcache_fetch() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | aacenc_quantization_misc.h | 36 AACQuantizeBandCostCacheEntry *entry; in quantize_band_cost_cached() local 38 entry = &s->quantize_band_cost_cache[scale_idx][w*16+g]; in quantize_band_cost_cached() 39 if (entry->generation != s->quantize_band_cost_cache_generation || entry->cb != cb || entry->rtz != rtz) { in quantize_band_cost_cached() 40 entry->rd = quantize_band_cost(s, in, scaled, size, scale_idx, in quantize_band_cost_cached() 41 cb, lambda, uplim, &entry->bits, &entry->energy, rtz); in quantize_band_cost_cached() 42 entry->cb = cb; in quantize_band_cost_cached() 43 entry in quantize_band_cost_cached() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | heap-snapshot-generator.cc | 228 void HeapEntry::VerifyReference(HeapGraphEdge::Type type, HeapEntry* entry, in VerifyReference() argument 248 reinterpret_cast<Address>(generator->FindHeapThingForHeapEntry(entry)); in VerifyReference() 278 HeapEntry* entry, in SetNamedReference() 282 snapshot_->edges().emplace_back(type, name, this, entry); in SetNamedReference() 283 VerifyReference(type, entry, generator, verification); in SetNamedReference() 287 HeapEntry* entry, in SetIndexedReference() 291 snapshot_->edges().emplace_back(type, index, this, entry); in SetIndexedReference() 292 VerifyReference(type, entry, generator, verification); in SetIndexedReference() 427 DCHECK(entries_.empty()); // Root entry must be the first one. in AddRootEntry() 446 void HeapSnapshot::AddLocation(HeapEntry* entry, in argument 277 SetNamedReference(HeapGraphEdge::Type type, const char* name, HeapEntry* entry, HeapSnapshotGenerator* generator, ReferenceVerification verification) SetNamedReference() argument 286 SetIndexedReference(HeapGraphEdge::Type type, int index, HeapEntry* entry, HeapSnapshotGenerator* generator, ReferenceVerification verification) SetIndexedReference() argument 565 base::HashMap::Entry* entry = entries_map_.Lookup( FindEntry() local 579 base::HashMap::Entry* entry = entries_map_.LookupOrInsert( FindOrAddEntry() local 609 base::HashMap::Entry* entry = AddMergedNativeEntry() local 719 base::HashMap::Entry* entry = RemoveDeadEntries() local 763 HeapEntry* entry = AllocateEntry() local 771 ExtractLocation(HeapEntry* entry, HeapObject object) ExtractLocation() argument 790 ExtractLocationForJSFunction(HeapEntry* entry, JSFunction func) ExtractLocationForJSFunction() argument 1058 ExtractReferences(HeapEntry* entry, HeapObject obj) ExtractReferences() argument 1139 ExtractJSGlobalProxyReferences(HeapEntry* entry, JSGlobalProxy proxy) ExtractJSGlobalProxyReferences() argument 1145 ExtractJSObjectReferences(HeapEntry* entry, JSObject js_obj) ExtractJSObjectReferences() argument 1221 ExtractStringReferences(HeapEntry* entry, String string) ExtractStringReferences() argument 1238 ExtractSymbolReferences(HeapEntry* entry, Symbol symbol) ExtractSymbolReferences() argument 1243 ExtractJSCollectionReferences(HeapEntry* entry, JSCollection collection) ExtractJSCollectionReferences() argument 1249 ExtractJSWeakCollectionReferences(HeapEntry* entry, JSWeakCollection obj) ExtractJSWeakCollectionReferences() argument 1255 ExtractEphemeronHashTableReferences( HeapEntry* entry, EphemeronHashTable table) ExtractEphemeronHashTableReferences() argument 1296 ExtractContextReferences(HeapEntry* entry, Context context) ExtractContextReferences() argument 1354 ExtractMapReferences(HeapEntry* entry, Map map) ExtractMapReferences() argument 1418 ExtractSharedFunctionInfoReferences( HeapEntry* entry, SharedFunctionInfo shared) ExtractSharedFunctionInfoReferences() argument 1448 ExtractScriptReferences(HeapEntry* entry, Script script) ExtractScriptReferences() argument 1462 ExtractAccessorInfoReferences(HeapEntry* entry, AccessorInfo accessor_info) ExtractAccessorInfoReferences() argument 1477 ExtractAccessorPairReferences(HeapEntry* entry, AccessorPair accessors) ExtractAccessorPairReferences() argument 1485 ExtractJSWeakRefReferences(HeapEntry* entry, JSWeakRef js_weak_ref) ExtractJSWeakRefReferences() argument 1491 ExtractWeakCellReferences(HeapEntry* entry, WeakCell weak_cell) ExtractWeakCellReferences() argument 1503 ExtractCodeReferences(HeapEntry* entry, Code code) ExtractCodeReferences() argument 1540 ExtractCellReferences(HeapEntry* entry, Cell cell) ExtractCellReferences() argument 1544 ExtractFeedbackCellReferences(HeapEntry* entry, FeedbackCell feedback_cell) ExtractFeedbackCellReferences() argument 1551 ExtractPropertyCellReferences(HeapEntry* entry, PropertyCell cell) ExtractPropertyCellReferences() argument 1560 ExtractAllocationSiteReferences(HeapEntry* entry, AllocationSite site) ExtractAllocationSiteReferences() argument 1572 ExtractArrayBoilerplateDescriptionReferences( HeapEntry* entry, ArrayBoilerplateDescription value) ExtractArrayBoilerplateDescriptionReferences() argument 1580 ExtractRegExpBoilerplateDescriptionReferences( HeapEntry* entry, RegExpBoilerplateDescription value) ExtractRegExpBoilerplateDescriptionReferences() argument 1606 ExtractJSArrayBufferReferences(HeapEntry* entry, JSArrayBuffer buffer) ExtractJSArrayBufferReferences() argument 1618 ExtractJSPromiseReferences(HeapEntry* entry, JSPromise promise) ExtractJSPromiseReferences() argument 1625 ExtractJSGeneratorObjectReferences( HeapEntry* entry, JSGeneratorObject generator) ExtractJSGeneratorObjectReferences() argument 1638 ExtractFixedArrayReferences(HeapEntry* entry, FixedArray array) ExtractFixedArrayReferences() argument 1646 ExtractNumberReference(HeapEntry* entry, Object number) ExtractNumberReference() argument 1671 ExtractBytecodeArrayReferences(HeapEntry* entry, BytecodeArray bytecode) ExtractBytecodeArrayReferences() argument 1680 ExtractScopeInfoReferences(HeapEntry* entry, ScopeInfo info) ExtractScopeInfoReferences() argument 1688 ExtractFeedbackVectorReferences( HeapEntry* entry, FeedbackVector feedback_vector) ExtractFeedbackVectorReferences() argument 1698 HeapObject entry; ExtractFeedbackVectorReferences() local 1707 ExtractDescriptorArrayReferences(HeapEntry* entry, DescriptorArray array) ExtractDescriptorArrayReferences() argument 1728 ExtractWeakArrayReferences(int header_size, HeapEntry* entry, T array) ExtractWeakArrayReferences() argument 1742 ExtractPropertyReferences(JSObject js_obj, HeapEntry* entry) ExtractPropertyReferences() argument 1814 ExtractAccessorPairProperty(HeapEntry* entry, Name key, Object callback_obj, int field_offset) ExtractAccessorPairProperty() argument 1830 ExtractElementReferences(JSObject js_obj, HeapEntry* entry) ExtractElementReferences() argument 1854 ExtractInternalReferences(JSObject js_obj, HeapEntry* entry) ExtractInternalReferences() argument 2013 HeapEntry* entry = GetEntry(obj); IterateAndExtractReferences() local 2284 HeapEntry* entry = GetEntry(obj); TagObject() local 2499 MergeNodeIntoEntry( HeapEntry* entry, EmbedderGraph::Node* original_node, EmbedderGraph::Node* wrapper_node) MergeNodeIntoEntry() argument 2845 SerializeNode(const HeapEntry* entry) SerializeNode() argument [all...] |
/drivers/peripheral/camera/test/ut/usb_camera/ |
H A D | usb_camera_test.cpp | 87 camera_metadata_item_t entry; in TEST_F() local 88 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_ZOOM_RATIO_RANGE, &entry); in TEST_F() 90 std::cout << "OHOS_ABILITY_ZOOM_RATIO_RANGE: count is " << (int)entry.count << std::endl; in TEST_F() 91 std::cout << "Zoom ratio range: [" << entry.data.f[0]; in TEST_F() 92 std::cout << "," << entry.data.f[1] << "]" << std::endl; in TEST_F() 113 camera_metadata_item_t entry; in TEST_F() local 114 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_CAMERA_CONNECTION_TYPE, &entry); in TEST_F() 117 << static_cast<int>(entry.data.u8[0]) << std::endl; in TEST_F() 118 EXPECT_TRUE(entry.data.u8[0] == OHOS_CAMERA_CONNECTION_TYPE_USB_PLUGIN); in TEST_F() 136 camera_metadata_item_t entry; in TEST_F() local 158 camera_metadata_item_t entry; TEST_F() local 179 camera_metadata_item_t entry; TEST_F() local 205 camera_metadata_item_t entry; TEST_F() local 233 camera_metadata_item_t entry; TEST_F() local 261 camera_metadata_item_t entry; TEST_F() local 289 camera_metadata_item_t entry; TEST_F() local 314 camera_metadata_item_t entry; TEST_F() local 342 camera_metadata_item_t entry; TEST_F() local 365 camera_metadata_item_t entry; TEST_F() local 387 camera_metadata_item_t entry; TEST_F() local 408 camera_metadata_item_t entry; TEST_F() local 429 camera_metadata_item_t entry; TEST_F() local 453 camera_metadata_item_t entry; TEST_F() local 965 camera_metadata_item_t entry; TEST_F() local 987 camera_metadata_item_t entry; TEST_F() local 1142 camera_metadata_item_t entry; TEST_F() local 1174 camera_metadata_item_t entry; TEST_F() local 1202 camera_metadata_item_t entry; TEST_F() local 1234 camera_metadata_item_t entry; TEST_F() local 1268 camera_metadata_item_t entry; TEST_F() local 1302 camera_metadata_item_t entry; TEST_F() local 1336 camera_metadata_item_t entry; TEST_F() local 1367 camera_metadata_item_t entry; TEST_F() local 1401 camera_metadata_item_t entry; TEST_F() local 1429 camera_metadata_item_t entry; TEST_F() local 1457 camera_metadata_item_t entry; TEST_F() local 1485 camera_metadata_item_t entry; TEST_F() local 1515 camera_metadata_item_t entry; TEST_F() local 1550 camera_metadata_item_t entry; TEST_F() local 1582 camera_metadata_item_t entry; TEST_F() local 1611 camera_metadata_item_t entry; TEST_F() local 1640 camera_metadata_item_t entry; TEST_F() local 1669 camera_metadata_item_t entry; TEST_F() local [all...] |
/third_party/libexif/libexif/canon/ |
H A D | mnote-canon-entry.c | 1 /* mnote-canon-entry.c 23 #include "mnote-canon-entry.h" 502 mnote_canon_entry_count_values (const MnoteCanonEntry *entry) in mnote_canon_entry_count_values() argument 506 if (!entry) return 0; in mnote_canon_entry_count_values() 508 switch (entry->tag) { in mnote_canon_entry_count_values() 511 return entry->components; in mnote_canon_entry_count_values() 516 if (entry->format != EXIF_FORMAT_SHORT) return 0; in mnote_canon_entry_count_values() 518 val = exif_get_short (entry->data, entry->order); in mnote_canon_entry_count_values() 520 return MIN (entry in mnote_canon_entry_count_values() 549 mnote_canon_entry_get_value(const MnoteCanonEntry *entry, unsigned int t, char *val, unsigned int maxlen) mnote_canon_entry_get_value() argument [all...] |
/third_party/node/deps/npm/node_modules/ignore-walk/lib/ |
H A D | index.js | 130 const filtered = this.entries.map(entry => { 132 const passFile = this.filterEntry(entry) 133 const passDir = this.filterEntry(entry, true) 134 return (passFile || passDir) ? [entry, passFile, passDir] : false 150 const entry = filt[0] 153 this.stat({ entry, file, dir }, then) 158 onstat ({ st, entry, file, dir, isSymbolicLink }, then) { 159 const abs = this.path + '/' + entry 168 this.walker(entry, { isSymbolicLink, exact: file || this.filterEntry(entry [all...] |
/third_party/node/deps/npm/node_modules/cacache/lib/ |
H A D | entry-index.js | 24 super(`No cache entry for ${key} found in ${cache}`) 40 const entry = entries[i] 48 if (entry.integrity === null && !opts.validateEntry) { 52 // if this entry is valid, and it is either the first entry or 53 // the newEntries array doesn't already include an entry that 56 if ((!opts.validateEntry || opts.validateEntry(entry) === true) && 58 !newEntries.find((oldEntry) => matchFn(oldEntry, entry)))) { 59 newEntries.unshift(entry) 63 const newIndex = '\n' + newEntries.map((entry) [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | ieee802_11_auth.c | 96 struct hostapd_cached_radius_acl *entry; in hostapd_acl_cache_get() local 101 for (entry = hapd->acl_cache; entry; entry = entry->next) { in hostapd_acl_cache_get() 102 if (os_memcmp(entry->addr, addr, ETH_ALEN) != 0) in hostapd_acl_cache_get() 105 if (os_reltime_expired(&now, &entry->timestamp, in hostapd_acl_cache_get() 107 return -1; /* entry has expired */ in hostapd_acl_cache_get() 108 if (entry->accepted == HOSTAPD_ACL_ACCEPT_TIMEOUT) in hostapd_acl_cache_get() 110 *session_timeout = entry in hostapd_acl_cache_get() 366 struct hostapd_cached_radius_acl *prev, *entry, *tmp; hostapd_acl_expire_cache() local 396 struct hostapd_acl_query_data *prev, *entry, *tmp; hostapd_acl_expire_queries() local [all...] |
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
H A D | ttload.c | 54 * A pointer to the table directory entry. 0 if not found. 60 TT_Table entry; in FT_LOCAL_DEF() local 74 entry = face->dir_tables; in FT_LOCAL_DEF() 75 limit = entry + face->num_tables; in FT_LOCAL_DEF() 77 for ( ; entry < limit; entry++ ) in FT_LOCAL_DEF() 81 if ( entry->Tag == tag ) in FT_LOCAL_DEF() 83 if ( entry->Length != 0 ) in FT_LOCAL_DEF() 86 return entry; in FT_LOCAL_DEF() 220 FT_TRACE2(( "check_table_dir: table entry in check_table_dir() 426 TT_TableRec entry; FT_LOCAL_DEF() local 928 TT_LangTag entry = langTags; FT_LOCAL_DEF() local 965 TT_Name entry = names; FT_LOCAL_DEF() local 1049 TT_Name entry = table->names; tt_face_free_name() local 1061 TT_LangTag entry = table->langTags; tt_face_free_name() local [all...] |
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_ra.cpp | 234 for (auto& entry : comp) { in register_allocation() 236 << *entry.m_register in register_allocation() 237 << " [" << entry.m_start << ", " << entry.m_end << "]\n"; in register_allocation() 238 auto pin = entry.m_register->pin(); in register_allocation() 239 if (entry.m_start == -1 && entry.m_end == -1) { in register_allocation() 241 entry.m_register->set_chan(7); in register_allocation() 245 auto sel = entry.m_register->sel(); in register_allocation() 251 sfn_log << SfnLog::merge << "Pin color " << sel << " to " << *entry in register_allocation() [all...] |
/third_party/python/Lib/urllib/ |
H A D | robotparser.py | 72 def _add_entry(self, entry): 73 if "*" in entry.useragents: 74 # the default entry is considered last 76 # the first default entry wins 77 self.default_entry = entry 79 self.entries.append(entry) 92 entry = Entry() 98 entry = Entry() 101 self._add_entry(entry) 102 entry [all...] |
/drivers/peripheral/camera/test/ut/v4l2/ |
H A D | usb_camera_test.cpp | 88 camera_metadata_item_t entry; in TEST_F() local 89 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_ZOOM_RATIO_RANGE, &entry); in TEST_F() 91 std::cout << "OHOS_ABILITY_ZOOM_RATIO_RANGE: count is " << (int)entry.count << std::endl; in TEST_F() 92 std::cout << "Zoom ratio range: [" << entry.data.f[0]; in TEST_F() 93 std::cout << "," << entry.data.f[1] << "]" << std::endl; in TEST_F() 114 camera_metadata_item_t entry; in TEST_F() local 115 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_CAMERA_CONNECTION_TYPE, &entry); in TEST_F() 118 << static_cast<int>(entry.data.u8[0]) << std::endl; in TEST_F() 119 EXPECT_TRUE(entry.data.u8[0] == OHOS_CAMERA_CONNECTION_TYPE_USB_PLUGIN); in TEST_F() 137 camera_metadata_item_t entry; in TEST_F() local 159 camera_metadata_item_t entry; TEST_F() local 180 camera_metadata_item_t entry; TEST_F() local 206 camera_metadata_item_t entry; TEST_F() local 234 camera_metadata_item_t entry; TEST_F() local 262 camera_metadata_item_t entry; TEST_F() local 290 camera_metadata_item_t entry; TEST_F() local 315 camera_metadata_item_t entry; TEST_F() local 343 camera_metadata_item_t entry; TEST_F() local 366 camera_metadata_item_t entry; TEST_F() local 388 camera_metadata_item_t entry; TEST_F() local 409 camera_metadata_item_t entry; TEST_F() local 430 camera_metadata_item_t entry; TEST_F() local 454 camera_metadata_item_t entry; TEST_F() local 964 camera_metadata_item_t entry; TEST_F() local 986 camera_metadata_item_t entry; TEST_F() local 1121 camera_metadata_item_t entry; TEST_F() local 1154 camera_metadata_item_t entry; TEST_F() local 1189 camera_metadata_item_t entry; TEST_F() local 1224 camera_metadata_item_t entry; TEST_F() local 1259 camera_metadata_item_t entry; TEST_F() local [all...] |
/third_party/mesa3d/src/util/ |
H A D | hash_table.h | 80 void (*delete_function)(struct hash_entry *entry)); 82 void (*delete_function)(struct hash_entry *entry)); 102 struct hash_entry *entry); 107 struct hash_entry *entry); 109 struct hash_entry *entry); 112 bool (*predicate)(struct hash_entry *entry)); 137 * an entry's data with the deleted marker), but not against insertion 138 * (which may rehash the table, making entry a dangling pointer). 140 #define hash_table_foreach(ht, entry) \ 141 for (struct hash_entry *entry [all...] |
/drivers/peripheral/camera/test/demo_3A/ |
H A D | ohos_camera_demo_3a.cpp | 847 camera_metadata_item_t entry; in GetFaceDetectMode() local 848 int ret = FindCameraMetadataItem(data, OHOS_STATISTICS_FACE_DETECT_MODE, &entry); in GetFaceDetectMode() 849 if (ret != 0 || entry.data.u8 == nullptr || entry.count <= 0) { in GetFaceDetectMode() 853 faceDetectMode = *(entry.data.u8); in GetFaceDetectMode() 862 camera_metadata_item_t entry; in GetFocalLength() local 863 int ret = FindCameraMetadataItem(data, OHOS_ABILITY_FOCAL_LENGTH, &entry); in GetFocalLength() 864 if (ret != 0 || entry.data.f == nullptr || entry.count <= 0) { in GetFocalLength() 868 focalLength = *(entry in GetFocalLength() 877 camera_metadata_item_t entry; GetAvailableFocusModes() local 900 camera_metadata_item_t entry; GetAvailableExposureModes() local 923 camera_metadata_item_t entry; GetExposureCompensationRange() local 947 camera_metadata_item_t entry; GetExposureCompensationSteps() local 964 camera_metadata_item_t entry; GetAvailableMeterModes() local 987 camera_metadata_item_t entry; GetAvailableFlashModes() local 1010 camera_metadata_item_t entry; GetMirrorSupported() local 1025 camera_metadata_item_t entry; GetStreamBasicConfigurations() local 1049 camera_metadata_item_t entry; GetFpsRange() local 1073 camera_metadata_item_t entry; GetCameraPosition() local 1089 camera_metadata_item_t entry; GetCameraType() local 1105 camera_metadata_item_t entry; GetCameraConnectionType() local 1121 camera_metadata_item_t entry; GetFaceDetectMaxNum() local 1147 camera_metadata_item_t entry; OnResult() local 1160 camera_metadata_item_t entry; OnResult() local [all...] |