Home
last modified time | relevance | path

Searched refs:addr (Results 801 - 825 of 3531) sorted by relevance

1...<<31323334353637383940>>...142

/third_party/musl/porting/linux/user/src/gwp_asan/
H A Dgwp_asan.c68 extern int dladdr(const void *addr, Dl_info *info);
474 void libc_gwp_asan_free(void *addr) in libc_gwp_asan_free() argument
477 return MuslFunc(free)(addr); in libc_gwp_asan_free()
479 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(addr))) { in libc_gwp_asan_free()
480 return gwp_asan_free(addr); in libc_gwp_asan_free()
482 return MuslFunc(free)(addr); in libc_gwp_asan_free()
485 size_t libc_gwp_asan_malloc_usable_size(void *addr) in libc_gwp_asan_malloc_usable_size() argument
488 return MuslMalloc(malloc_usable_size)(addr); in libc_gwp_asan_malloc_usable_size()
490 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(addr))) { in libc_gwp_asan_malloc_usable_size()
491 return gwp_asan_get_size(addr); in libc_gwp_asan_malloc_usable_size()
536 libc_gwp_asan_ptr_is_mine(void *addr) libc_gwp_asan_ptr_is_mine() argument
[all...]
/third_party/musl/src/gwp_asan/linux/
H A Dgwp_asan.c68 extern int dladdr(const void *addr, Dl_info *info);
474 void libc_gwp_asan_free(void *addr) in libc_gwp_asan_free() argument
477 return MuslFunc(free)(addr); in libc_gwp_asan_free()
479 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(addr))) { in libc_gwp_asan_free()
480 return gwp_asan_free(addr); in libc_gwp_asan_free()
482 return MuslFunc(free)(addr); in libc_gwp_asan_free()
485 size_t libc_gwp_asan_malloc_usable_size(void *addr) in libc_gwp_asan_malloc_usable_size() argument
488 return MuslMalloc(malloc_usable_size)(addr); in libc_gwp_asan_malloc_usable_size()
490 if (GWP_ASAN_PREDICT_FALSE(gwp_asan_pointer_is_mine(addr))) { in libc_gwp_asan_malloc_usable_size()
491 return gwp_asan_get_size(addr); in libc_gwp_asan_malloc_usable_size()
536 libc_gwp_asan_ptr_is_mine(void *addr) libc_gwp_asan_ptr_is_mine() argument
[all...]
/third_party/musl/ldso/linux/
H A Dcfi.c26 * relationship between dso and its __cfi_check addr while loading a dso. CFI shadow is an array which stores shadow
31 * - invalid(0) : the target addr does not belongs to any loaded dso.
34 * The valid shadow value records the distance from the end of a LIBRARY_ALIGNMENT memory range to the __cfi_check addr
46 * 0x40000 __cfi_check addr = 0x42000 0x80000 0xA0000 0xC0000
63 * - First align up the target addr with LIBRARY_ALIGNMENT to locate the corresponding shadow value.
64 * - Then calculate the __cfi_check addr.
66 * In order for the algorithm to work well, the start addr of each dso should be aligned with LIBRARY_ALIGNMENT. */
89 /* Start addr of the CFI shadow */
129 static inline uintptr_t addr_to_offset(uintptr_t addr, int bits) in addr_to_offset() argument
131 /* Convert addr t in addr_to_offset()
146 addr_in_dso(struct dso *dso, size_t addr) addr_in_dso() argument
160 addr_in_kernel_mapped_dso(size_t addr) addr_in_kernel_mapped_dso() argument
180 uintptr_t addr = (uintptr_t)func_ptr; get_cfi_check_addr() local
203 uintptr_t addr = (uintptr_t)func_ptr & ((1ULL << 56) - 1); cfi_slowpath_common() local
206 uintptr_t addr = func_ptr; cfi_slowpath_common() local
[all...]
/third_party/rust/crates/rustix/src/backend/libc/net/
H A Dsyscalls.rs6 use super::addr::SocketAddrUnix;
88 addr: &SocketAddrV4,
96 as_ptr(&encode_sockaddr_v4(addr)).cast::<c::sockaddr>(),
108 addr: &SocketAddrV6,
116 as_ptr(&encode_sockaddr_v6(addr)).cast::<c::sockaddr>(),
128 addr: &SocketAddrUnix,
136 as_ptr(&addr.unix).cast(),
137 addr.addr_len(),
175 pub(crate) fn bind_v4(sockfd: BorrowedFd<'_>, addr: &SocketAddrV4) -> io::Result<()> {
179 as_ptr(&encode_sockaddr_v4(addr))
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/
H A Dwpa_i.h250 const u8 *addr, int key_idx, int set_tx, in wpa_sm_set_key()
257 return sm->ctx->set_key(sm->ctx->ctx, link_id, alg, addr, key_idx, set_tx, in wpa_sm_set_key()
259 return sm->ctx->set_key(sm->ctx->ctx, alg, addr, key_idx, set_tx, in wpa_sm_set_key()
331 static inline int wpa_sm_mlme_setprotection(struct wpa_sm *sm, const u8 *addr, in wpa_sm_mlme_setprotection() argument
335 return sm->ctx->mlme_setprotection(sm->ctx->ctx, addr, protect_type, in wpa_sm_mlme_setprotection()
409 wpa_sm_tdls_peer_addset(struct wpa_sm *sm, const u8 *addr, int add, in wpa_sm_tdls_peer_addset() argument
423 return sm->ctx->tdls_peer_addset(sm->ctx->ctx, addr, add, in wpa_sm_tdls_peer_addset()
438 wpa_sm_tdls_enable_channel_switch(struct wpa_sm *sm, const u8 *addr, in wpa_sm_tdls_enable_channel_switch() argument
443 return sm->ctx->tdls_enable_channel_switch(sm->ctx->ctx, addr, in wpa_sm_tdls_enable_channel_switch()
450 wpa_sm_tdls_disable_channel_switch(struct wpa_sm *sm, const u8 *addr) in wpa_sm_tdls_disable_channel_switch() argument
246 wpa_sm_set_key(struct wpa_sm *sm, int link_id, enum wpa_alg alg, const u8 *addr, int key_idx, int set_tx, const u8 *seq, size_t seq_len, const u8 *key, size_t key_len, enum key_flag key_flag) wpa_sm_set_key() argument
488 wpa_sm_store_ptk(struct wpa_sm *sm, u8 *addr, int cipher, u32 life_time, struct wpa_ptk *ptk) wpa_sm_store_ptk() argument
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/system/upg/
H A Dupg_check_boot_bin.c283 /* boot_addr:flashboot bin addr without ota head. boot_len: total len. */
286 upg_print("[upg check encrpt boot]addr-len:0x%x-0x%x \r\n", boot_addr, boot_len); in upg_check_encrpt_boot_code()
311 /* addr:flashboot bin addr without ota head. */
312 hi_u32 upg_check_unencrpt_boot_code(hi_u32 addr, HI_CONST boot_header *head, hi_u8 *key_part1, hi_u8 *key_part2) in upg_check_unencrpt_boot_code() argument
319 hi_u32 ret = upg_hash_one_content(addr, (head->code_section_offset + head->code_section_length), in upg_check_unencrpt_boot_code()
330 ret = hi_flash_read(addr + head->sign_offset, head->sign_length, signature); in upg_check_unencrpt_boot_code()
361 /* addr:flashboot bin addr without ota head. */
362 hi_u32 upg_verify_flashboot(hi_u32 addr, HI_CONS argument
478 upg_check_secure_boot_bin(hi_u32 addr, HI_CONST boot_header *head) upg_check_secure_boot_bin() argument
532 upg_check_boot_file(hi_u32 addr, hi_u32 len) upg_check_boot_file() argument
[all...]
/device/soc/rockchip/common/sdk_linux/include/linux/
H A Ddma-mapping.h97 void debug_dma_map_single(struct device *dev, const void *addr, unsigned long len);
102 static inline void debug_dma_map_single(struct device *dev, const void *addr, unsigned long len) in debug_dma_map_single() argument
120 void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
128 void dma_unmap_resource(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir,
130 void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir);
131 void dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir);
156 static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir, in dma_unmap_page_attrs() argument
174 static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir, in dma_unmap_resource() argument
178 static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr, size_t size, in dma_sync_single_for_cpu() argument
182 static inline void dma_sync_single_for_device(struct device *dev, dma_addr_t addr, size_ in dma_sync_single_for_cpu() argument
278 dma_unmap_single_attrs(struct device *dev, dma_addr_t addr, size_t size, enum dma_data_direction dir, unsigned long attrs) dma_unmap_single_attrs() argument
284 dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t addr, unsigned long offset, size_t size, enum dma_data_direction dir) dma_sync_single_range_for_cpu() argument
290 dma_sync_single_range_for_device(struct device *dev, dma_addr_t addr, unsigned long offset, size_t size, enum dma_data_direction dir) dma_sync_single_range_for_device() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dieee802_11.c314 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211, in auth_shared_key()
347 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211, in auth_shared_key()
354 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211, in auth_shared_key()
462 hostapd_drv_sta_remove(hapd, sta->addr); in handle_auth_ft_finish()
485 MAC2STR_SEC(sta->addr), reason); in sae_set_state()
504 os_memcmp(pw->peer_addr, sta->addr, ETH_ALEN) != 0) in sae_get_password()
550 os_memcpy(sta->sae->tmp->peer_addr, sta->addr, ETH_ALEN); in auth_build_sae_commit()
569 sae_prepare_commit_pt(sta->sae, pt, hapd->own_addr, sta->addr, in auth_build_sae_commit()
574 sae_prepare_commit(hapd->own_addr, sta->addr, in auth_build_sae_commit()
658 reply_res = send_auth_reply(hapd, sta, sta->addr, bssi in auth_sae_send_commit()
731 comeback_token_hash(struct hostapd_data *hapd, const u8 *addr, u8 *idx) comeback_token_hash() argument
744 check_comeback_token(struct hostapd_data *hapd, const u8 *addr, const u8 *token, size_t token_len) check_comeback_token() argument
780 auth_build_token_req(struct hostapd_data *hapd, int group, const u8 *addr, int h2e) auth_build_token_req() argument
1727 auth_sae_queued_addr(struct hostapd_data *hapd, const u8 *addr) auth_sae_queued_addr() argument
2302 ieee802_11_allowed_address(struct hostapd_data *hapd, const u8 *addr, const u8 *msg, size_t len, struct radius_sta *info) ieee802_11_allowed_address() argument
4206 const u8 *addr[2]; owe_process_assoc_req() local
4923 send_deauth(struct hostapd_data *hapd, const u8 *addr, u16 reason_code) send_deauth() argument
5043 send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta, const u8 *addr, u16 status_code, int reassoc, const u8 *ies, size_t ies_len, int rssi, int omit_rsnxe) send_assoc_resp() argument
6786 hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr, const u8 *buf, size_t len, int ack) hostapd_tx_status() argument
6843 hostapd_client_poll_ok(struct hostapd_data *hapd, const u8 *addr) hostapd_client_poll_ok() argument
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddhd_pcie.c181 static void dhdpcie_setbar1win(dhd_bus_t *bus, uint32 addr);
193 static void dhdpcie_bus_reg_unmap(osl_t *osh, volatile char *addr, int size);
419 dhdpcie_bus_reg_map(osl_t *osh, ulong addr, int size) in dhdpcie_bus_reg_map() argument
421 return (uint32 *)REG_MAP(addr, size); in dhdpcie_bus_reg_map()
425 dhdpcie_bus_reg_unmap(osl_t *osh, volatile char *addr, int size) in dhdpcie_bus_reg_unmap() argument
427 REG_UNMAP(addr); in dhdpcie_bus_reg_unmap()
438 uint addr = PCIH2D_MailBox; in dhd_bus_db0_addr_get() local
441 return ((DAR_ACTIVE(bus->dhd)) ? dar_addr : addr); in dhd_bus_db0_addr_get()
2012 dhdpcie_bus_cfg_read_dword(dhd_bus_t *bus, uint32 addr, uint32 size) in dhdpcie_bus_cfg_read_dword() argument
2014 uint32 data = OSL_PCI_READ_CONFIG(bus->osh, addr, siz in dhdpcie_bus_cfg_read_dword()
2020 dhdpcie_bus_cfg_write_dword(dhd_bus_t *bus, uint32 addr, uint32 size, uint32 data) dhdpcie_bus_cfg_write_dword() argument
3261 uint32 n, idx, addr; dhdpcie_bus_readconsole() local
3357 uint32 addr; dhd_bus_dump_console_buffer() local
4146 uint32 addr, val; dhd_bus_console_in() local
4191 dhdpcie_setbar1win(dhd_bus_t *bus, uint32 addr) dhdpcie_setbar1win() argument
4300 ulong addr; /* dongle address */ dhd_bus_cmn_writeshared() local
4449 ulong addr; /* dongle address */ dhd_bus_cmn_readshared() local
5399 serialized_backplane_access(dhd_bus_t *bus, uint addr, uint size, uint *val, bool read) serialized_backplane_access() argument
8386 uint32 addr = 0; dhdpcie_tcm_valid() local
8451 uint32 addr = 0; dhdpcie_readshared() local
8967 uint32 addr = 0; dhdpcie_init_shared_addr() local
10017 uint32 addr; dhdpcie_init_d11status() local
10165 dhd_bus_readwrite_bp_addr(dhd_pub_t *dhdp, uint addr, uint size, uint* data, bool read) dhd_bus_readwrite_bp_addr() argument
10185 dhd_sbreg_op(dhd_pub_t *dhd, uint addr, uint *val, bool read) dhd_sbreg_op() argument
10201 uint addr; dhdpcie_get_sssr_fifo_dump() local
10240 uint addr; dhdpcie_get_sssr_dig_dump() local
10422 uint addr; dhdpcie_resume_chipcommon_powerctrl() local
10440 uint addr; dhdpcie_suspend_chipcommon_powerctrl() local
10459 uint addr; dhdpcie_clear_intmask_and_timer() local
10533 uint addr; dhdpcie_d11_check_outofreset() local
10564 uint addr; dhdpcie_d11_clear_clk_req() local
10589 uint addr; dhdpcie_arm_clear_clk_req() local
10626 uint addr; dhdpcie_arm_resume_clk_req() local
10655 uint addr; dhdpcie_pcie_clear_clk_req() local
10675 uint addr; dhdpcie_pcie_send_ltrsleep() local
10708 uint addr; dhdpcie_bring_d11_outofreset() local
10987 uint32 addr = bus->dongle_ram_base + (bus->ramsize - BCM_NVRAM_OFFSET_TCM) - dhdpcie_wrt_rnd() local
[all...]
/third_party/f2fs-tools/lib/
H A Dlibf2fs.c267 int test_and_set_bit_le(u32 nr, u8 *addr) in test_and_set_bit_le() argument
271 addr += nr >> 3; in test_and_set_bit_le()
273 retval = mask & *addr; in test_and_set_bit_le()
274 *addr |= mask; in test_and_set_bit_le()
278 int test_and_clear_bit_le(u32 nr, u8 *addr) in test_and_clear_bit_le() argument
282 addr += nr >> 3; in test_and_clear_bit_le()
284 retval = mask & *addr; in test_and_clear_bit_le()
285 *addr &= ~mask; in test_and_clear_bit_le()
289 int test_bit_le(u32 nr, const u8 *addr) in test_bit_le() argument
291 return ((1 << (nr & 7)) & (addr[n in test_bit_le()
297 char *addr = (char *)p; f2fs_test_bit() local
304 f2fs_set_bit(unsigned int nr, char *addr) f2fs_set_bit() argument
316 f2fs_clear_bit(unsigned int nr, char *addr) f2fs_clear_bit() argument
348 _find_next_bit_le(const u8 *addr, u64 nbits, u64 start, char invert) _find_next_bit_le() argument
372 find_next_bit_le(const u8 *addr, u64 size, u64 offset) find_next_bit_le() argument
378 find_next_zero_bit_le(const u8 *addr, u64 size, u64 offset) find_next_zero_bit_le() argument
[all...]
/third_party/mesa3d/src/intel/common/
H A Dmi_builder.h48 * __gen_address_offset(__gen_address_type addr, uint64_t offset);
95 __gen_address_type addr; member
312 mi_mem32(__gen_address_type addr) in mi_mem32() argument
316 .addr = addr, in mi_mem32()
321 mi_mem64(__gen_address_type addr) in mi_mem64() argument
325 .addr = addr, in mi_mem64()
346 value.addr = __gen_address_offset(value.addr, in mi_value_half()
1189 __gen_address_type addr = __gen_get_batch_address(b->user_data, _mi_resolve_address_token() local
1206 mi_load_mem64_offset(struct mi_builder *b, __gen_address_type addr, struct mi_value offset) mi_load_mem64_offset() argument
1229 mi_store_mem64_offset(struct mi_builder *b, __gen_address_type addr, struct mi_value offset, struct mi_value data) mi_store_mem64_offset() argument
1269 __gen_address_type addr; global() member
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dwpa_auth_ft.c661 const u8 *addr, const u8 *p2p_dev_addr, in wpa_ft_get_psk()
666 return wpa_auth->cb->get_psk(wpa_auth->cb_ctx, addr, p2p_dev_addr, in wpa_ft_get_psk()
991 wpa_auth->addr, FT_PACKET_R0KH_R1KH_SEQ_REQ, in wpa_ft_rrb_seq_req()
1602 if (is_zero_ether_addr(r1kh->addr) && in wpa_ft_rrb_lookup_r1kh()
1703 os_memcpy(r0kh->addr, src_addr, sizeof(r0kh->addr)); in wpa_ft_rrb_add_r0kh()
1775 os_memcpy(r1kh->addr, src_addr, sizeof(r1kh->addr)); in wpa_ft_rrb_add_r1kh()
1905 os_memset(r0kh->addr, 0, ETH_ALEN); in wpa_ft_block_r0kh()
1918 MAC2STR(sm->addr)); in wpa_ft_expire_pull()
660 wpa_ft_get_psk(struct wpa_authenticator *wpa_auth, const u8 *addr, const u8 *p2p_dev_addr, const u8 *prev_psk) wpa_ft_get_psk() argument
2156 wpa_auth_get_seqnum(struct wpa_authenticator *wpa_auth, const u8 *addr, int idx, u8 *seq) wpa_auth_get_seqnum() argument
2614 wpa_auth_set_key(struct wpa_authenticator *wpa_auth, int vlan_id, enum wpa_alg alg, const u8 *addr, int idx, u8 *key, size_t key_len) wpa_auth_set_key() argument
4549 wpa_ft_push_pmk_r1(struct wpa_authenticator *wpa_auth, const u8 *addr) wpa_ft_push_pmk_r1() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/
H A Ddriver_nl80211_event.c292 struct nlattr *addr, struct nlattr *req_ie, in mlme_event_connect()
334 if (addr) in mlme_event_connect()
335 event.assoc_reject.bssid = nla_data(addr); in mlme_event_connect()
384 if (addr) { in mlme_event_connect()
385 os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN); in mlme_event_connect()
470 struct nlattr *reason, struct nlattr *addr, in mlme_event_disconnect()
609 enum nl80211_commands cmd, struct nlattr *addr) in mlme_timeout_event()
614 if (nla_len(addr) != ETH_ALEN) in mlme_timeout_event()
618 cmd, MAC2STR((u8 *) nla_data(addr))); in mlme_timeout_event()
628 os_memcpy(event.timeout_event.addr, nla_dat in mlme_timeout_event()
290 mlme_event_connect(struct wpa_driver_nl80211_data *drv, enum nl80211_commands cmd, struct nlattr *status, struct nlattr *addr, struct nlattr *req_ie, struct nlattr *resp_ie, struct nlattr *timed_out, struct nlattr *timeout_reason, struct nlattr *authorized, struct nlattr *key_replay_ctr, struct nlattr *ptk_kck, struct nlattr *ptk_kek, struct nlattr *subnet_status, struct nlattr *fils_erp_next_seq_num, struct nlattr *fils_pmk, struct nlattr *fils_pmkid) mlme_event_connect() argument
469 mlme_event_disconnect(struct wpa_driver_nl80211_data *drv, struct nlattr *reason, struct nlattr *addr, struct nlattr *by_ap) mlme_event_disconnect() argument
608 mlme_timeout_event(struct wpa_driver_nl80211_data *drv, enum nl80211_commands cmd, struct nlattr *addr) mlme_timeout_event() argument
879 mlme_event(struct i802_bss *bss, enum nl80211_commands cmd, struct nlattr *frame, struct nlattr *addr, struct nlattr *timed_out, struct nlattr *freq, struct nlattr *ack, struct nlattr *cookie, struct nlattr *sig, struct nlattr *wmm, struct nlattr *req_ie) mlme_event() argument
1313 const u8 *addr; nl80211_new_peer_candidate() local
1336 u8 *addr; nl80211_new_station_event() local
1369 u8 *addr; nl80211_del_station_event() local
1469 const u8 *addr; nl80211_client_probe_event() local
2324 const u8 *addr; nl80211_port_authorized() local
[all...]
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/
H A Disp_stats_v3x.c31 static u32 isp3_stats_read(struct rkisp_isp_stats_vdev *stats_vdev, u32 addr, u32 id) in isp3_stats_read() argument
36 val = rkisp_read(stats_vdev->dev, addr, true); in isp3_stats_read()
38 val = rkisp_next_read(stats_vdev->dev, addr, true); in isp3_stats_read()
43 static void isp3_stats_write(struct rkisp_isp_stats_vdev *stats_vdev, u32 addr, u32 value, u32 id) in isp3_stats_write() argument
46 rkisp_write(stats_vdev->dev, addr, value, true); in isp3_stats_write()
48 rkisp_next_write(stats_vdev->dev, addr, value, true); in isp3_stats_write()
166 u32 addr, value, ctrl; in rkisp_stats_get_rawaebig_meas_reg() local
171 addr = ISP3X_RAWAE_BIG2_BASE; in rkisp_stats_get_rawaebig_meas_reg()
174 addr = ISP3X_RAWAE_BIG3_BASE; in rkisp_stats_get_rawaebig_meas_reg()
178 addr in rkisp_stats_get_rawaebig_meas_reg()
220 u32 addr, ctrl; rkisp_stats_get_rawhstbig_meas_reg() local
630 u32 i, value, addr, rd_buf_idx, ctrl; rkisp_stats_get_rawaebig_meas_ddr() local
689 u32 i, rd_buf_idx, *ddr_addr, addr, ctrl; rkisp_stats_get_rawhstbig_meas_ddr() local
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/
H A Disp_stats_v3x.c32 u32 addr, u32 id) in isp3_stats_read()
37 val = rkisp_read(stats_vdev->dev, addr, true); in isp3_stats_read()
39 val = rkisp_next_read(stats_vdev->dev, addr, true); in isp3_stats_read()
44 u32 addr, u32 value, u32 id) in isp3_stats_write()
47 rkisp_write(stats_vdev->dev, addr, value, true); in isp3_stats_write()
49 rkisp_next_write(stats_vdev->dev, addr, value, true); in isp3_stats_write()
180 u32 addr, value, ctrl; in rkisp_stats_get_rawaebig_meas_reg() local
185 addr = ISP3X_RAWAE_BIG2_BASE; in rkisp_stats_get_rawaebig_meas_reg()
188 addr = ISP3X_RAWAE_BIG3_BASE; in rkisp_stats_get_rawaebig_meas_reg()
192 addr in rkisp_stats_get_rawaebig_meas_reg()
31 isp3_stats_read(struct rkisp_isp_stats_vdev *stats_vdev, u32 addr, u32 id) isp3_stats_read() argument
43 isp3_stats_write(struct rkisp_isp_stats_vdev *stats_vdev, u32 addr, u32 value, u32 id) isp3_stats_write() argument
237 u32 addr, ctrl; rkisp_stats_get_rawhstbig_meas_reg() local
672 u32 i, value, addr, rd_buf_idx, ctrl; rkisp_stats_get_rawaebig_meas_ddr() local
733 u32 i, rd_buf_idx, *ddr_addr, addr, ctrl; rkisp_stats_get_rawhstbig_meas_ddr() local
[all...]
/third_party/elfutils/tests/
H A Dgetsrc_die.c35 /* file addr+ */ in main()
43 Dwarf_Addr addr; in main() local
49 addr = strtoull (argv[i], &endptr, 16); in main()
53 if (dwarf_addrdie (dbg, addr, &cudie) == NULL) in main()
56 line = dwarf_getsrc_die (&cudie, addr); in main()
/third_party/libuv/test/
H A Dtest-poll-closesocket.c62 struct sockaddr_in addr; in TEST_IMPL()
73 r = uv_ip4_addr("127.0.0.1", TEST_PORT, &addr); in TEST_IMPL()
76 r = connect(sock, (const struct sockaddr*) &addr, sizeof addr); in TEST_IMPL()
H A Dtest-socket-buffer-size.c57 struct sockaddr_in addr; in TEST_IMPL() local
59 ASSERT_OK(uv_ip4_addr("127.0.0.1", TEST_PORT, &addr)); in TEST_IMPL()
62 ASSERT_OK(uv_tcp_bind(&tcp, (struct sockaddr*) &addr, 0)); in TEST_IMPL()
67 ASSERT_OK(uv_udp_bind(&udp, (struct sockaddr*) &addr, 0)); in TEST_IMPL()
/third_party/mesa3d/src/egl/main/
H A Deglglobals.c144 uintptr_t addr = (uintptr_t) p; in _eglPointerIsDereferencable() local
153 /* align addr to page_size */ in _eglPointerIsDereferencable()
154 addr &= ~(page_size - 1); in _eglPointerIsDereferencable()
159 if (mincore((void *) addr, page_size, (void*)&valid) < 0) { in _eglPointerIsDereferencable()
177 return addr >= page_size; in _eglPointerIsDereferencable()
/third_party/ltp/include/old/
H A Dold_safe_net.h40 #define SAFE_CONNECT(cleanup_fn, sockfd, addr, addrlen) \
41 safe_connect(__FILE__, __LINE__, (cleanup_fn), sockfd, addr, addrlen)
43 #define SAFE_GETSOCKNAME(cleanup_fn, sockfd, addr, addrlen) \
44 safe_getsockname(__FILE__, __LINE__, (cleanup_fn), sockfd, addr, \
/third_party/musl/src/linux/
H A Dcache.c6 int _flush_cache(void *addr, int len, int op) in _flush_cache() argument
8 return syscall(SYS_cacheflush, addr, len, op); in _flush_cache()
14 int __cachectl(void *addr, int len, int op) in __cachectl() argument
16 return syscall(SYS_cachectl, addr, len, op); in __cachectl()
/third_party/ltp/testcases/kernel/syscalls/ipc/shmctl/
H A Dshmctl05.c64 void *addr; in do_test() local
67 addr = SAFE_SHMAT(id, NULL, 0); in do_test()
71 TEST(syscall(__NR_remap_file_pages, addr, 4096, in do_test()
86 shmdt(addr); in do_test()
/third_party/ltp/testcases/kernel/syscalls/mmap/
H A Dmmap15.c58 void *addr; in main() local
73 /* Attempt to mmap into highmem addr, should get ENOMEM */ in main()
74 addr = mmap(HIGH_ADDR, page_size, PROT_READ, in main()
76 if (addr != MAP_FAILED) { in main()
79 munmap(addr, page_size); in main()
/third_party/toybox/toys/other/
H A Ddevmem.c23 unsigned long long addr = atolx(toys.optargs[0]), data = 0, map_off, map_len; in devmem_main() local
40 map_off = addr & ~(page_size - 1); in devmem_main()
41 map_len = (addr+bytes-map_off); in devmem_main()
44 p = map + (addr & (page_size - 1)); in devmem_main()
/third_party/cmsis/CMSIS/Core/Include/m-profile/
H A Dcmsis_gcc_m.h76 #define __UNALIGNED_UINT16_WRITE(addr, val) (void)((((struct T_UINT16_WRITE *)(void *)(addr))->v) = (val))
84 #define __UNALIGNED_UINT16_READ(addr) (((const struct T_UINT16_READ *)(const void *)(addr))->v)
92 #define __UNALIGNED_UINT32_WRITE(addr, val) (void)((((struct T_UINT32_WRITE *)(void *)(addr))->v) = (val))
100 #define __UNALIGNED_UINT32_READ(addr) (((const struct T_UINT32_READ *)(const void *)(addr))->v)
493 __STATIC_FORCEINLINE uint8_t __LDREXB(volatile uint8_t *addr) in __LDREXB() argument
497 __ASM volatile ("ldrexb %0, %1" : "=r" (result) : "Q" (*addr) ); in __LDREXB()
510 __STREXB(uint8_t value, volatile uint8_t *addr) __STREXB() argument
527 __LDREXH(volatile uint16_t *addr) __LDREXH() argument
544 __STREXH(uint16_t value, volatile uint16_t *addr) __STREXH() argument
561 __LDREXW(volatile uint32_t *addr) __LDREXW() argument
578 __STREXW(uint32_t value, volatile uint32_t *addr) __STREXW() argument
[all...]

Completed in 34 milliseconds

1...<<31323334353637383940>>...142