/third_party/typescript/tests/baselines/reference/ |
H A D | genericClassWithStaticFactory.js | 15 var entry = this.listFactory.MakeEntry(data); 17 this.prev.next = entry; 18 entry.next = this; 19 entry.prev = this.prev; 20 this.prev = entry; 21 return entry; 25 var entry: List<T>; 28 entry = this.next; 29 for (i = 0; !(entry.isHead); i++) { 30 entry [all...] |
H A D | classTypeParametersInStatics.js | 14 var entry: List<T> = new List<T>(true, null); 15 entry.prev = entry; 16 entry.next = entry; 17 return entry; 21 var entry: List<T> = new List<T>(true, null); 22 entry.prev = entry; 23 entry [all...] |
/kernel/linux/linux-5.10/net/atm/ |
H A D | mpoa_caches.c | 38 in_cache_entry *entry; in in_cache_get() local 41 entry = client->in_cache; in in_cache_get() 42 while (entry != NULL) { in in_cache_get() 43 if (entry->ctrl_info.in_dst_ip == dst_ip) { in in_cache_get() 44 refcount_inc(&entry->use); in in_cache_get() 46 return entry; in in_cache_get() 48 entry = entry->next; in in_cache_get() 59 in_cache_entry *entry; in in_cache_get_with_mask() local 62 entry in in_cache_get_with_mask() 80 in_cache_entry *entry; in_cache_get_by_vcc() local 100 in_cache_entry *entry = kzalloc(sizeof(in_cache_entry), GFP_KERNEL); in_cache_add_entry() local 133 cache_hit(in_cache_entry *entry, struct mpoa_client *mpc) cache_hit() argument 180 in_cache_put(in_cache_entry *entry) in_cache_put() argument 190 in_cache_remove_entry(in_cache_entry *entry, struct mpoa_client *client) in_cache_remove_entry() argument 228 in_cache_entry *entry, *next_entry; clear_count_and_expired() local 253 in_cache_entry *entry; check_resolving_entries() local 302 struct in_cache_entry *entry = client->in_cache; refresh_entries() local 335 eg_cache_entry *entry; eg_cache_get_by_cache_id() local 356 eg_cache_entry *entry; eg_cache_get_by_tag() local 378 eg_cache_entry *entry; eg_cache_get_by_vcc() local 398 eg_cache_entry *entry; eg_cache_get_by_src_ip() local 415 eg_cache_put(eg_cache_entry *entry) eg_cache_put() argument 425 eg_cache_remove_entry(eg_cache_entry *entry, struct mpoa_client *client) eg_cache_remove_entry() argument 459 eg_cache_entry *entry = kzalloc(sizeof(eg_cache_entry), GFP_KERNEL); eg_cache_add_entry() local 493 update_eg_cache_entry(eg_cache_entry *entry, uint16_t holding_time) update_eg_cache_entry() argument 502 eg_cache_entry *entry, *next_entry; clear_expired() local [all...] |
/kernel/linux/linux-6.6/net/atm/ |
H A D | mpoa_caches.c | 38 in_cache_entry *entry; in in_cache_get() local 41 entry = client->in_cache; in in_cache_get() 42 while (entry != NULL) { in in_cache_get() 43 if (entry->ctrl_info.in_dst_ip == dst_ip) { in in_cache_get() 44 refcount_inc(&entry->use); in in_cache_get() 46 return entry; in in_cache_get() 48 entry = entry->next; in in_cache_get() 59 in_cache_entry *entry; in in_cache_get_with_mask() local 62 entry in in_cache_get_with_mask() 80 in_cache_entry *entry; in_cache_get_by_vcc() local 100 in_cache_entry *entry = kzalloc(sizeof(in_cache_entry), GFP_KERNEL); in_cache_add_entry() local 133 cache_hit(in_cache_entry *entry, struct mpoa_client *mpc) cache_hit() argument 180 in_cache_put(in_cache_entry *entry) in_cache_put() argument 190 in_cache_remove_entry(in_cache_entry *entry, struct mpoa_client *client) in_cache_remove_entry() argument 228 in_cache_entry *entry, *next_entry; clear_count_and_expired() local 253 in_cache_entry *entry; check_resolving_entries() local 302 struct in_cache_entry *entry = client->in_cache; refresh_entries() local 335 eg_cache_entry *entry; eg_cache_get_by_cache_id() local 356 eg_cache_entry *entry; eg_cache_get_by_tag() local 378 eg_cache_entry *entry; eg_cache_get_by_vcc() local 398 eg_cache_entry *entry; eg_cache_get_by_src_ip() local 415 eg_cache_put(eg_cache_entry *entry) eg_cache_put() argument 425 eg_cache_remove_entry(eg_cache_entry *entry, struct mpoa_client *client) eg_cache_remove_entry() argument 459 eg_cache_entry *entry = kzalloc(sizeof(eg_cache_entry), GFP_KERNEL); eg_cache_add_entry() local 493 update_eg_cache_entry(eg_cache_entry *entry, uint16_t holding_time) update_eg_cache_entry() argument 502 eg_cache_entry *entry, *next_entry; clear_expired() local [all...] |
/third_party/skia/third_party/externals/expat/expat/tests/ |
H A D | memcheck.c | 57 AllocationEntry *entry = malloc(sizeof(AllocationEntry)); in tracking_malloc() local 59 if (entry == NULL) { in tracking_malloc() 63 entry->num_bytes = size; in tracking_malloc() 64 entry->allocation = malloc(size); in tracking_malloc() 65 if (entry->allocation == NULL) { in tracking_malloc() 66 free(entry); in tracking_malloc() 69 entry->next = NULL; in tracking_malloc() 73 entry->prev = NULL; in tracking_malloc() 74 alloc_head = alloc_tail = entry; in tracking_malloc() 76 entry in tracking_malloc() 86 AllocationEntry *entry; find_allocation() local 99 AllocationEntry *entry; tracking_free() local 127 AllocationEntry *entry; tracking_realloc() local 179 AllocationEntry *entry; tracking_report() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | pmksa_cache_auth.c | 31 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx); 39 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) in _pmksa_cache_free_entry() argument 41 os_free(entry->vlan_desc); in _pmksa_cache_free_entry() 42 os_free(entry->identity); in _pmksa_cache_free_entry() 43 wpabuf_free(entry->cui); in _pmksa_cache_free_entry() 45 radius_free_class(&entry->radius_class); in _pmksa_cache_free_entry() 47 bin_clear_free(entry, sizeof(*entry)); in _pmksa_cache_free_entry() 52 struct rsn_pmksa_cache_entry *entry) in pmksa_cache_free_entry() 58 pmksa->free_cb(entry, pmks in pmksa_cache_free_entry() 51 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_free_entry() argument 141 pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) pmksa_cache_from_eapol_data() argument 180 pmksa_cache_to_eapol_data(struct hostapd_data *hapd, struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) pmksa_cache_to_eapol_data() argument 222 pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_link_entry() argument 285 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_add() local 320 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_create_entry() local 365 pmksa_cache_auth_add_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_auth_add_entry() argument 398 struct rsn_pmksa_cache_entry *entry; pmksa_cache_add_okc() local 445 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_auth_deinit() local 477 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_get() local 513 struct rsn_pmksa_cache_entry *entry; pmksa_cache_get_okc() local 541 pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx) pmksa_cache_auth_init() argument 556 das_attr_match(struct rsn_pmksa_cache_entry *entry, struct radius_das_attrs *attr) das_attr_match() argument 605 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_auth_radius_das_disconnect() local 640 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_list() local 691 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_list_mesh() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | pmksa_cache_auth.c | 31 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx); 39 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) in _pmksa_cache_free_entry() argument 41 os_free(entry->vlan_desc); in _pmksa_cache_free_entry() 42 os_free(entry->identity); in _pmksa_cache_free_entry() 43 wpabuf_free(entry->cui); in _pmksa_cache_free_entry() 45 radius_free_class(&entry->radius_class); in _pmksa_cache_free_entry() 47 bin_clear_free(entry, sizeof(*entry)); in _pmksa_cache_free_entry() 52 struct rsn_pmksa_cache_entry *entry) in pmksa_cache_free_entry() 58 pmksa->free_cb(entry, pmks in pmksa_cache_free_entry() 51 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_free_entry() argument 141 pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) pmksa_cache_from_eapol_data() argument 180 pmksa_cache_to_eapol_data(struct hostapd_data *hapd, struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) pmksa_cache_to_eapol_data() argument 222 pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_link_entry() argument 285 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_add() local 320 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_create_entry() local 365 pmksa_cache_auth_add_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_auth_add_entry() argument 398 struct rsn_pmksa_cache_entry *entry; pmksa_cache_add_okc() local 445 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_auth_deinit() local 477 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_get() local 513 struct rsn_pmksa_cache_entry *entry; pmksa_cache_get_okc() local 535 pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx) pmksa_cache_auth_init() argument 550 das_attr_match(struct rsn_pmksa_cache_entry *entry, struct radius_das_attrs *attr) das_attr_match() argument 599 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_auth_radius_das_disconnect() local 634 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_list() local 685 struct rsn_pmksa_cache_entry *entry; pmksa_cache_auth_list_mesh() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/ |
H A D | pmksa_cache.c | 27 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, 29 bool (*is_current_cb)(struct rsn_pmksa_cache_entry *entry, 38 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) in _pmksa_cache_free_entry() argument 40 bin_clear_free(entry, sizeof(*entry)); in _pmksa_cache_free_entry() 45 struct rsn_pmksa_cache_entry *entry, in pmksa_cache_free_entry() 48 wpa_sm_remove_pmkid(pmksa->sm, entry->network_ctx, entry->aa, in pmksa_cache_free_entry() 49 entry->pmkid, in pmksa_cache_free_entry() 50 entry in pmksa_cache_free_entry() 44 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry, enum pmksa_free_reason reason) pmksa_cache_free_entry() argument 63 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_expire() local 108 struct rsn_pmksa_cache_entry *entry; pmksa_cache_set_expiration() local 178 struct rsn_pmksa_cache_entry *entry; pmksa_cache_add() local 217 pmksa_cache_add_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_add_entry() argument 334 struct rsn_pmksa_cache_entry *entry, *prev = NULL, *tmp; pmksa_cache_flush() local 371 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_deinit() local 402 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_get() local 463 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_get_opportunistic() local 503 struct rsn_pmksa_cache_entry *entry; pmksa_cache_get_fils_cache_id() local 628 struct rsn_pmksa_cache_entry *entry; pmksa_cache_list() local 696 pmksa_cache_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, enum pmksa_free_reason reason), bool (*is_current_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx, struct wpa_sm *sm) pmksa_cache_init() argument 718 struct rsn_pmksa_cache_entry *entry; pmksa_cache_reconfig() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/rsn_supp/ |
H A D | pmksa_cache.c | 27 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, 36 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) in _pmksa_cache_free_entry() argument 38 bin_clear_free(entry, sizeof(*entry)); in _pmksa_cache_free_entry() 43 struct rsn_pmksa_cache_entry *entry, in pmksa_cache_free_entry() 46 wpa_sm_remove_pmkid(pmksa->sm, entry->network_ctx, entry->aa, in pmksa_cache_free_entry() 47 entry->pmkid, in pmksa_cache_free_entry() 48 entry->fils_cache_id_set ? entry in pmksa_cache_free_entry() 42 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry, enum pmksa_free_reason reason) pmksa_cache_free_entry() argument 63 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_expire() local 85 struct rsn_pmksa_cache_entry *entry; pmksa_cache_set_expiration() local 136 struct rsn_pmksa_cache_entry *entry; pmksa_cache_add() local 175 pmksa_cache_add_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) pmksa_cache_add_entry() argument 286 struct rsn_pmksa_cache_entry *entry, *prev = NULL, *tmp; pmksa_cache_flush() local 322 struct rsn_pmksa_cache_entry *entry, *prev; pmksa_cache_deinit() local 353 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_get() local 408 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; pmksa_cache_get_opportunistic() local 434 struct rsn_pmksa_cache_entry *entry; pmksa_cache_get_fils_cache_id() local 542 struct rsn_pmksa_cache_entry *entry; pmksa_cache_list() local 610 pmksa_cache_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx, enum pmksa_free_reason reason), void *ctx, struct wpa_sm *sm) pmksa_cache_init() argument [all...] |
/third_party/libexif/libexif/olympus/ |
H A D | mnote-olympus-entry.c | 1 /* mnote-olympus-entry.c 22 #include "mnote-olympus-entry.h" 30 #include <libexif/exif-entry.h> 273 mnote_olympus_entry_get_value (MnoteOlympusEntry *entry, char *v, unsigned int maxlen) in mnote_olympus_entry_get_value() argument 285 if (!entry) in mnote_olympus_entry_get_value() 291 if ((!entry->data) && (entry->components > 0)) in mnote_olympus_entry_get_value() 294 if ((!entry->data) && (entry->size > 0)) in mnote_olympus_entry_get_value() 297 switch (entry in mnote_olympus_entry_get_value() [all...] |
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/base/refcount/src/ |
H A D | refcount.c | 58 /* for new entry */ in refcount_find_entry() 63 /* found entry */ in refcount_find_entry() 98 struct ia_css_refcount_entry *entry; in ia_css_refcount_uninit() local 102 "%s() entry\n", __func__); in ia_css_refcount_uninit() 108 entry = myrefcount.items + i; in ia_css_refcount_uninit() 109 if (entry->data != mmgr_NULL) { in ia_css_refcount_uninit() 112 entry->data);*/ in ia_css_refcount_uninit() 113 hmm_free(entry->data); in ia_css_refcount_uninit() 114 entry->data = mmgr_NULL; in ia_css_refcount_uninit() 115 entry in ia_css_refcount_uninit() 128 struct ia_css_refcount_entry *entry; ia_css_refcount_increment() local 165 struct ia_css_refcount_entry *entry; ia_css_refcount_decrement() local 208 struct ia_css_refcount_entry *entry; ia_css_refcount_is_single() local 223 struct ia_css_refcount_entry *entry; ia_css_refcount_clear() local 269 struct ia_css_refcount_entry *entry; ia_css_refcount_is_valid() local [all...] |
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/base/refcount/src/ |
H A D | refcount.c | 58 /* for new entry */ in refcount_find_entry() 63 /* found entry */ in refcount_find_entry() 98 struct ia_css_refcount_entry *entry; in ia_css_refcount_uninit() local 102 "%s() entry\n", __func__); in ia_css_refcount_uninit() 108 entry = myrefcount.items + i; in ia_css_refcount_uninit() 109 if (entry->data != mmgr_NULL) { in ia_css_refcount_uninit() 112 entry->data);*/ in ia_css_refcount_uninit() 113 hmm_free(entry->data); in ia_css_refcount_uninit() 114 entry->data = mmgr_NULL; in ia_css_refcount_uninit() 115 entry in ia_css_refcount_uninit() 128 struct ia_css_refcount_entry *entry; ia_css_refcount_increment() local 165 struct ia_css_refcount_entry *entry; ia_css_refcount_decrement() local 208 struct ia_css_refcount_entry *entry; ia_css_refcount_is_single() local 223 struct ia_css_refcount_entry *entry; ia_css_refcount_clear() local 269 struct ia_css_refcount_entry *entry; ia_css_refcount_is_valid() local [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | swapops.h | 45 * Migration swap entry specific bitfield definitions. Layout: 69 static inline bool is_pfn_swap_entry(swp_entry_t entry); 98 static inline unsigned swp_type(swp_entry_t entry) in swp_type() argument 100 return (entry.val >> SWP_TYPE_SHIFT); in swp_type() 107 static inline pgoff_t swp_offset(swp_entry_t entry) in swp_offset() argument 109 return entry.val & SWP_OFFSET_MASK; in swp_offset() 113 * This should only be called upon a pfn swap entry to get the PFN stored 114 * in the swap entry. Please refers to is_pfn_swap_entry() for definition 115 * of pfn swap entry. 117 static inline unsigned long swp_offset_pfn(swp_entry_t entry) in swp_offset_pfn() argument 146 swp_entry_to_pte(swp_entry_t entry) swp_entry_to_pte() argument 156 swp_entry_t entry; radix_to_swp_entry() local 162 swp_to_radix_entry(swp_entry_t entry) swp_to_radix_entry() argument 178 is_device_private_entry(swp_entry_t entry) is_device_private_entry() argument 184 is_writable_device_private_entry(swp_entry_t entry) is_writable_device_private_entry() argument 199 is_device_exclusive_entry(swp_entry_t entry) is_device_exclusive_entry() argument 205 is_writable_device_exclusive_entry(swp_entry_t entry) is_writable_device_exclusive_entry() argument 220 is_device_private_entry(swp_entry_t entry) is_device_private_entry() argument 225 is_writable_device_private_entry(swp_entry_t entry) is_writable_device_private_entry() argument 240 is_device_exclusive_entry(swp_entry_t entry) is_device_exclusive_entry() argument 245 is_writable_device_exclusive_entry(swp_entry_t entry) is_writable_device_exclusive_entry() argument 252 is_migration_entry(swp_entry_t entry) is_migration_entry() argument 259 is_writable_migration_entry(swp_entry_t entry) is_writable_migration_entry() argument 264 is_readable_migration_entry(swp_entry_t entry) is_readable_migration_entry() argument 269 is_readable_exclusive_migration_entry(swp_entry_t entry) is_readable_exclusive_migration_entry() argument 303 make_migration_entry_young(swp_entry_t entry) make_migration_entry_young() argument 311 is_migration_entry_young(swp_entry_t entry) is_migration_entry_young() argument 319 make_migration_entry_dirty(swp_entry_t entry) make_migration_entry_dirty() argument 327 is_migration_entry_dirty(swp_entry_t entry) is_migration_entry_dirty() argument 363 is_writable_migration_entry(swp_entry_t entry) is_writable_migration_entry() argument 367 is_readable_migration_entry(swp_entry_t entry) is_readable_migration_entry() argument 372 make_migration_entry_young(swp_entry_t entry) make_migration_entry_young() argument 377 is_migration_entry_young(swp_entry_t entry) is_migration_entry_young() argument 382 make_migration_entry_dirty(swp_entry_t entry) make_migration_entry_dirty() argument 387 is_migration_entry_dirty(swp_entry_t entry) is_migration_entry_dirty() argument 409 is_pte_marker_entry(swp_entry_t entry) is_pte_marker_entry() argument 414 pte_marker_get(swp_entry_t entry) pte_marker_get() argument 434 is_poisoned_swp_entry(swp_entry_t entry) is_poisoned_swp_entry() argument 458 pfn_swap_entry_to_page(swp_entry_t entry) pfn_swap_entry_to_page() argument 476 is_pfn_swap_entry(swp_entry_t entry) is_pfn_swap_entry() argument [all...] |
/kernel/linux/linux-5.10/drivers/firmware/ |
H A D | memmap.c | 22 * Firmware map entry. Because firmware memory maps are flat and not 34 struct list_head list; /* entry for the linked list */ 35 struct kobject kobj; /* kobject for each entry */ 43 static ssize_t start_show(struct firmware_map_entry *entry, char *buf); 44 static ssize_t end_show(struct firmware_map_entry *entry, char *buf); 45 static ssize_t type_show(struct firmware_map_entry *entry, char *buf); 56 ssize_t (*show)(struct firmware_map_entry *entry, char *buf); 64 * These are default attributes that are added for every memmap entry. 84 * map entry is allocated by bootmem, we need to remember the storage and 99 struct firmware_map_entry *entry in release_firmware_map_entry() local 141 firmware_map_add_entry(u64 start, u64 end, const char *type, struct firmware_map_entry *entry) firmware_map_add_entry() argument 167 firmware_map_remove_entry(struct firmware_map_entry *entry) firmware_map_remove_entry() argument 175 add_sysfs_fw_map_entry(struct firmware_map_entry *entry) add_sysfs_fw_map_entry() argument 199 remove_sysfs_fw_map_entry(struct firmware_map_entry *entry) remove_sysfs_fw_map_entry() argument 221 struct firmware_map_entry *entry; firmware_map_find_entry_in_list() local 283 struct firmware_map_entry *entry; firmware_map_add_hotplug() local 325 struct firmware_map_entry *entry; firmware_map_add_early() local 347 struct firmware_map_entry *entry; firmware_map_remove() local 369 start_show(struct firmware_map_entry *entry, char *buf) start_show() argument 375 end_show(struct firmware_map_entry *entry, char *buf) end_show() argument 381 type_show(struct firmware_map_entry *entry, char *buf) type_show() argument 394 struct firmware_map_entry *entry = to_memmap_entry(kobj); memmap_attr_show() local 410 struct firmware_map_entry *entry; firmware_memmap_init() local [all...] |
/kernel/linux/linux-6.6/drivers/firmware/ |
H A D | memmap.c | 22 * Firmware map entry. Because firmware memory maps are flat and not 34 struct list_head list; /* entry for the linked list */ 35 struct kobject kobj; /* kobject for each entry */ 43 static ssize_t start_show(struct firmware_map_entry *entry, char *buf); 44 static ssize_t end_show(struct firmware_map_entry *entry, char *buf); 45 static ssize_t type_show(struct firmware_map_entry *entry, char *buf); 56 ssize_t (*show)(struct firmware_map_entry *entry, char *buf); 64 * These are default attributes that are added for every memmap entry. 85 * map entry is allocated by bootmem, we need to remember the storage and 100 struct firmware_map_entry *entry in release_firmware_map_entry() local 142 firmware_map_add_entry(u64 start, u64 end, const char *type, struct firmware_map_entry *entry) firmware_map_add_entry() argument 168 firmware_map_remove_entry(struct firmware_map_entry *entry) firmware_map_remove_entry() argument 176 add_sysfs_fw_map_entry(struct firmware_map_entry *entry) add_sysfs_fw_map_entry() argument 200 remove_sysfs_fw_map_entry(struct firmware_map_entry *entry) remove_sysfs_fw_map_entry() argument 222 struct firmware_map_entry *entry; firmware_map_find_entry_in_list() local 284 struct firmware_map_entry *entry; firmware_map_add_hotplug() local 326 struct firmware_map_entry *entry; firmware_map_add_early() local 348 struct firmware_map_entry *entry; firmware_map_remove() local 370 start_show(struct firmware_map_entry *entry, char *buf) start_show() argument 376 end_show(struct firmware_map_entry *entry, char *buf) end_show() argument 382 type_show(struct firmware_map_entry *entry, char *buf) type_show() argument 395 struct firmware_map_entry *entry = to_memmap_entry(kobj); memmap_attr_show() local 411 struct firmware_map_entry *entry; firmware_memmap_init() local [all...] |
/foundation/communication/netmanager_base/services/netmanagernative/bpf/include/netfirewall/ |
H A D | netfirewall_ct.h | 25 static __always_inline void reset_seen_flags(struct ct_entry *entry)
in reset_seen_flags() argument 27 entry->rx_seen_flag = 0;
in reset_seen_flags() 28 entry->tx_seen_flag = 0;
in reset_seen_flags() 31 static __always_inline void reset_closing_flags(struct ct_entry *entry)
in reset_closing_flags() argument 33 entry->rx_closing_flag = 0;
in reset_closing_flags() 34 entry->tx_closing_flag = 0;
in reset_closing_flags() 37 static __always_inline bool is_conn_alive(const struct ct_entry *entry)
in is_conn_alive() argument 39 return !entry->rx_closing_flag || !entry->tx_closing_flag;
in is_conn_alive() 42 static __always_inline bool is_conn_closing(const struct ct_entry *entry)
in is_conn_closing() argument 60 is_seen_both_syns(const struct ct_entry *entry) is_seen_both_syns() argument 68 update_timeout_inner(struct ct_entry *entry, __u32 lifetime, enum ct_dir dir, union tcp_flags flags) update_timeout_inner() argument 109 ct_update_timeout(struct ct_entry *entry, bool tcp, enum ct_dir dir, union tcp_flags seen_flags) ct_update_timeout() argument 137 struct ct_entry entry = { 0 }; ct_create_entry() local 160 struct ct_entry *entry = bpf_map_lookup_elem(&CT_MAP, tuple); ct_lookup_entry() local [all...] |
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | nvs.c | 95 struct nvs_page *entry, *next; in suspend_nvs_register() local 103 entry = kzalloc(sizeof(struct nvs_page), GFP_KERNEL); in suspend_nvs_register() 104 if (!entry) in suspend_nvs_register() 107 list_add_tail(&entry->node, &nvs_list); in suspend_nvs_register() 108 entry->phys_start = start; in suspend_nvs_register() 110 entry->size = (size < nr_bytes) ? size : nr_bytes; in suspend_nvs_register() 112 start += entry->size; in suspend_nvs_register() 113 size -= entry->size; in suspend_nvs_register() 118 list_for_each_entry_safe(entry, next, &nvs_list, node) { in suspend_nvs_register() 119 list_del(&entry in suspend_nvs_register() 130 struct nvs_page *entry; suspend_nvs_free() local 154 struct nvs_page *entry; suspend_nvs_alloc() local 171 struct nvs_page *entry; suspend_nvs_save() local 203 struct nvs_page *entry; suspend_nvs_restore() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/ |
H A D | drm_scatter.c | 46 static void drm_sg_cleanup(struct drm_sg_mem * entry) in drm_sg_cleanup() argument 51 for (i = 0; i < entry->pages; i++) { in drm_sg_cleanup() 52 page = entry->pagelist[i]; in drm_sg_cleanup() 57 vfree(entry->virtual); in drm_sg_cleanup() 59 kfree(entry->busaddr); in drm_sg_cleanup() 60 kfree(entry->pagelist); in drm_sg_cleanup() 61 kfree(entry); in drm_sg_cleanup() 82 struct drm_sg_mem *entry; in drm_legacy_sg_alloc() local 99 entry = kzalloc(sizeof(*entry), GFP_KERNE in drm_legacy_sg_alloc() 201 struct drm_sg_mem *entry; drm_legacy_sg_free() local [all...] |
/kernel/linux/linux-6.6/drivers/acpi/ |
H A D | nvs.c | 97 struct nvs_page *entry, *next; in suspend_nvs_register() local 105 entry = kzalloc(sizeof(struct nvs_page), GFP_KERNEL); in suspend_nvs_register() 106 if (!entry) in suspend_nvs_register() 109 list_add_tail(&entry->node, &nvs_list); in suspend_nvs_register() 110 entry->phys_start = start; in suspend_nvs_register() 112 entry->size = (size < nr_bytes) ? size : nr_bytes; in suspend_nvs_register() 114 start += entry->size; in suspend_nvs_register() 115 size -= entry->size; in suspend_nvs_register() 120 list_for_each_entry_safe(entry, next, &nvs_list, node) { in suspend_nvs_register() 121 list_del(&entry in suspend_nvs_register() 132 struct nvs_page *entry; suspend_nvs_free() local 156 struct nvs_page *entry; suspend_nvs_alloc() local 173 struct nvs_page *entry; suspend_nvs_save() local 205 struct nvs_page *entry; suspend_nvs_restore() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_scatter.c | 46 static void drm_sg_cleanup(struct drm_sg_mem * entry) in drm_sg_cleanup() argument 51 for (i = 0; i < entry->pages; i++) { in drm_sg_cleanup() 52 page = entry->pagelist[i]; in drm_sg_cleanup() 57 vfree(entry->virtual); in drm_sg_cleanup() 59 kfree(entry->busaddr); in drm_sg_cleanup() 60 kfree(entry->pagelist); in drm_sg_cleanup() 61 kfree(entry); in drm_sg_cleanup() 82 struct drm_sg_mem *entry; in drm_legacy_sg_alloc() local 99 entry = kzalloc(sizeof(*entry), GFP_KERNE in drm_legacy_sg_alloc() 201 struct drm_sg_mem *entry; drm_legacy_sg_free() local [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_lower_parallelcopy.c | 45 copy_entry_size(const struct copy_entry *entry) in copy_entry_size() argument 47 return (entry->flags & IR3_REG_HALF) ? 1 : 2; in copy_entry_size() 86 const struct copy_entry *entry) in do_swap() 88 assert(!entry->src.flags); in do_swap() 90 if (entry->flags & IR3_REG_HALF) { in do_swap() 100 if (entry->src.reg >= RA_HALF_SIZE) { in do_swap() 102 physreg_t tmp = entry->dst < 2 ? 2 : 0; in do_swap() 107 .src = {.reg = entry->src.reg & ~1u}, in do_swap() 109 .flags = entry->flags & ~IR3_REG_HALF, in do_swap() 116 (entry in do_swap() 85 do_swap(struct ir3_compiler *compiler, struct ir3_instruction *instr, const struct copy_entry *entry) do_swap() argument 186 do_copy(struct ir3_compiler *compiler, struct ir3_instruction *instr, const struct copy_entry *entry) do_copy() argument 285 entry_blocked(struct copy_entry *entry, struct copy_ctx *ctx) entry_blocked() argument 296 split_32bit_copy(struct copy_ctx *ctx, struct copy_entry *entry) split_32bit_copy() argument 321 struct copy_entry *entry = &ctx->entries[i]; _handle_copies() local 346 struct copy_entry *entry = &ctx->entries[i]; _handle_copies() local 373 struct copy_entry *entry = &ctx->entries[i]; _handle_copies() local 423 struct copy_entry *entry = &ctx->entries[i]; _handle_copies() local [all...] |
/drivers/peripheral/camera/interfaces/hdi_ipc/utils/src/ |
H A D | utils_data_stub.cpp | 24 bool UtilsDataStub::WriteMetadataDataToVec(const camera_metadata_item_t &entry, std::vector<uint8_t> &cameraAbility) in WriteMetadataDataToVec() argument 26 if (entry.data_type == META_TYPE_BYTE) { in WriteMetadataDataToVec() 27 for (size_t i = 0; i < entry.count; i++) { in WriteMetadataDataToVec() 28 WriteData<int8_t>(*(entry.data.u8 + i), cameraAbility); in WriteMetadataDataToVec() 30 } else if (entry.data_type == META_TYPE_INT32) { in WriteMetadataDataToVec() 31 for (size_t i = 0; i < entry.count; i++) { in WriteMetadataDataToVec() 32 WriteData<int32_t>(*(entry.data.i32 + i), cameraAbility); in WriteMetadataDataToVec() 34 } else if (entry.data_type == META_TYPE_FLOAT) { in WriteMetadataDataToVec() 35 for (size_t i = 0; i < entry.count; i++) { in WriteMetadataDataToVec() 36 WriteData<float>(*(entry in WriteMetadataDataToVec() 107 camera_metadata_item_t entry; EncodeCameraMetadata() local 125 ReadMetadataDataFromVec(int32_t &index, camera_metadata_item_t &entry, const std::vector<uint8_t> &cameraAbility) ReadMetadataDataFromVec() argument 241 camera_metadata_item_t entry; DecodeCameraMetadata() local 322 WriteMetadata(const camera_metadata_item_t &entry, MessageParcel &data) WriteMetadata() argument 366 ReadMetadataUInt8(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataUInt8() argument 378 ReadMetadataInt32(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataInt32() argument 390 ReadMetadataUInt32(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataUInt32() argument 402 ReadMetadataFloat(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataFloat() argument 414 ReadMetadataInt64(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataInt64() argument 426 ReadMetadataDouble(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataDouble() argument 438 ReadMetadataRational(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadataRational() argument 452 ReadMetadata(camera_metadata_item_t &entry, MessageParcel &data) ReadMetadata() argument 480 EntryDataToBuffer(const camera_metadata_item_t &entry, void **buffer) EntryDataToBuffer() argument [all...] |
/kernel/linux/linux-5.10/fs/squashfs/ |
H A D | cache.c | 56 struct squashfs_cache_entry *entry; in squashfs_cache_get() local 62 if (cache->entry[i].block == block) { in squashfs_cache_get() 84 * At least one unused cache entry. A simple in squashfs_cache_get() 85 * round-robin strategy is used to choose the entry to in squashfs_cache_get() 90 if (cache->entry[i].refcount == 0) in squashfs_cache_get() 96 entry = &cache->entry[i]; in squashfs_cache_get() 99 * Initialise chosen cache entry, and fill it in from in squashfs_cache_get() 103 entry->block = block; in squashfs_cache_get() 104 entry in squashfs_cache_get() 173 squashfs_cache_put(struct squashfs_cache_entry *entry) squashfs_cache_put() argument 253 struct squashfs_cache_entry *entry = &cache->entry[i]; squashfs_cache_init() local 293 squashfs_copy_data(void *buffer, struct squashfs_cache_entry *entry, int offset, int length) squashfs_copy_data() argument 336 struct squashfs_cache_entry *entry; squashfs_read_metadata() local [all...] |
/kernel/linux/linux-6.6/fs/squashfs/ |
H A D | cache.c | 56 struct squashfs_cache_entry *entry; in squashfs_cache_get() local 62 if (cache->entry[i].block == block) { in squashfs_cache_get() 84 * At least one unused cache entry. A simple in squashfs_cache_get() 85 * round-robin strategy is used to choose the entry to in squashfs_cache_get() 90 if (cache->entry[i].refcount == 0) in squashfs_cache_get() 96 entry = &cache->entry[i]; in squashfs_cache_get() 99 * Initialise chosen cache entry, and fill it in from in squashfs_cache_get() 103 entry->block = block; in squashfs_cache_get() 104 entry in squashfs_cache_get() 173 squashfs_cache_put(struct squashfs_cache_entry *entry) squashfs_cache_put() argument 253 struct squashfs_cache_entry *entry = &cache->entry[i]; squashfs_cache_init() local 293 squashfs_copy_data(void *buffer, struct squashfs_cache_entry *entry, int offset, int length) squashfs_copy_data() argument 336 struct squashfs_cache_entry *entry; squashfs_read_metadata() local [all...] |
/kernel/linux/linux-6.6/arch/x86/kvm/ |
H A D | cpuid.c | 107 * If the index isn't significant, use the first entry with a in cpuid_entry2_find() 116 * Similarly, use the first matching entry if KVM is doing a in cpuid_entry2_find() 196 struct kvm_cpuid_entry2 *entry; in kvm_get_hypervisor_cpuid() local 200 entry = kvm_find_cpuid_entry(vcpu, base); in kvm_get_hypervisor_cpuid() 202 if (entry) { in kvm_get_hypervisor_cpuid() 205 signature[0] = entry->ebx; in kvm_get_hypervisor_cpuid() 206 signature[1] = entry->ecx; in kvm_get_hypervisor_cpuid() 207 signature[2] = entry->edx; in kvm_get_hypervisor_cpuid() 211 cpuid.limit = entry->eax; in kvm_get_hypervisor_cpuid() 317 struct kvm_cpuid_entry2 *entry; in kvm_cpuid_has_hyperv() local 545 struct kvm_cpuid_entry2 entry; __kvm_cpu_cap_mask() local 827 struct kvm_cpuid_entry2 *entry = get_next_cpuid(array); do_host_cpuid() local 869 struct kvm_cpuid_entry2 *entry; __do_cpuid_func_emulated() local 904 struct kvm_cpuid_entry2 *entry; __do_cpuid_func() local 1524 struct kvm_cpuid_entry2 *entry; kvm_cpuid() local [all...] |