Home
last modified time | relevance | path

Searched refs:p_buf (Results 1 – 17 of 17) sorted by relevance

/freebsd-13.1/sys/dev/qlnx/qlnxe/
H A Decore_mng_tlv.c280 p_buf->p_val = p_buf->data; in ecore_mfw_get_gen_tlv_value()
459 p_buf->p_val = p_buf->data; in ecore_mfw_get_tlv_time_value()
675 p_buf); in ecore_mfw_get_fcoe_tlv_value()
723 p_buf); in ecore_mfw_get_fcoe_tlv_value()
740 p_buf); in ecore_mfw_get_fcoe_tlv_value()
749 p_buf); in ecore_mfw_get_fcoe_tlv_value()
811 p_buf); in ecore_mfw_get_fcoe_tlv_value()
839 p_buf); in ecore_mfw_get_fcoe_tlv_value()
885 p_buf); in ecore_mfw_get_fcoe_tlv_value()
954 p_buf); in ecore_mfw_get_fcoe_tlv_value()
[all …]
H A Decore_mcp_api.h942 u32 addr, u8 *p_buf, u32 len);
956 u32 addr, u8 *p_buf, u32 len);
988 enum _ecore_status_t ecore_mcp_nvm_resp(struct ecore_dev *p_dev, u8 *p_buf);
1002 u32 addr, u8 *p_buf, u32 len);
1015 u8 *p_buf, u32 len);
1119 u32 len, u8 *p_buf);
1137 u32 len, u8 *p_buf);
H A Decore_mcp.c3120 u8 *p_buf = OSAL_NULL; in ecore_mcp_ov_get_fc_npiv() local
3141 if (!p_buf) { in ecore_mcp_ov_get_fc_npiv()
3162 OSAL_VFREE(p_hwfn->p_dev, p_buf); in ecore_mcp_ov_get_fc_npiv()
3340 u8 *p_buf, u32 len) in ecore_mcp_nvm_read() argument
3362 (u32 *)(p_buf + offset)); in ecore_mcp_nvm_read()
3396 u32 addr, u8 *p_buf, u32 len) in ecore_mcp_phy_read() argument
3518 (u32 *)&p_buf[buf_idx]); in ecore_mcp_nvm_write()
3600 u32 len, u8 *p_buf) in ecore_mcp_phy_sfp_read() argument
3623 (u32 *)(p_buf + offset)); in ecore_mcp_phy_sfp_read()
3646 u32 len, u8 *p_buf) in ecore_mcp_phy_sfp_write() argument
[all …]
H A Decore_ll2.c1153 struct ecore_ooo_buffer *p_buf = OSAL_NULL; in ecore_ll2_acquire_connection_ooo() local
1178 p_buf = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL, sizeof(*p_buf)); in ecore_ll2_acquire_connection_ooo()
1179 if (!p_buf) { in ecore_ll2_acquire_connection_ooo()
1186 p_buf->rx_buffer_size = rx_buffer_size; in ecore_ll2_acquire_connection_ooo()
1188 &p_buf->rx_buffer_phys_addr, in ecore_ll2_acquire_connection_ooo()
1189 p_buf->rx_buffer_size); in ecore_ll2_acquire_connection_ooo()
1193 OSAL_FREE(p_hwfn->p_dev, p_buf); in ecore_ll2_acquire_connection_ooo()
1197 p_buf->rx_buffer_virt_addr = p_virt; in ecore_ll2_acquire_connection_ooo()
1198 ecore_ooo_put_free_buffer(p_hwfn->p_ooo_info, p_buf); in ecore_ll2_acquire_connection_ooo()
H A Decore_init_ops.c189 u32 size, const u32 *p_buf, argument
201 const u32 *data = p_buf + dmae_data_offset;
208 (osal_uintptr_t)(p_buf +
/freebsd-13.1/sys/libkern/
H A Dgsb_crc32.c682 const unsigned char *p_buf, in crc32c_sb8_64_bit() argument
699 crc ^= *p_buf++; in crc32c_sb8_64_bit()
700 crc ^= (*p_buf++) << 8; in crc32c_sb8_64_bit()
701 crc ^= (*p_buf++) << 16; in crc32c_sb8_64_bit()
702 crc ^= (*p_buf++) << 24; in crc32c_sb8_64_bit()
704 crc ^= *(const uint32_t *) p_buf; in crc32c_sb8_64_bit()
705 p_buf += 4; in crc32c_sb8_64_bit()
715 crc ^= sctp_crc_tableil8_o56[*p_buf++]; in crc32c_sb8_64_bit()
716 crc ^= sctp_crc_tableil8_o48[*p_buf++]; in crc32c_sb8_64_bit()
717 crc ^= sctp_crc_tableil8_o40[*p_buf++]; in crc32c_sb8_64_bit()
[all …]
/freebsd-13.1/contrib/ofed/opensm/complib/
H A Dcl_log.c65 char *p_buf; in cl_log_event() local
90 p_buf = data; in cl_log_event()
93 sprintf(p_buf, "%02x", *p_int_data++); in cl_log_event()
94 p_buf += 2; in cl_log_event()
98 sprintf(p_buf++, "\n"); in cl_log_event()
104 sprintf(p_buf++, " "); in cl_log_event()
106 syslog(priority, "%s data:\n%s\n", message, p_buf); in cl_log_event()
H A Dcl_vector.c339 cl_list_item_t *p_buf; in cl_vector_set_capacity() local
378 p_buf = (cl_list_item_t *) malloc(alloc_size + sizeof(cl_list_item_t)); in cl_vector_set_capacity()
379 if (!p_buf) in cl_vector_set_capacity()
382 memset(p_buf, 0, alloc_size + sizeof(cl_list_item_t)); in cl_vector_set_capacity()
384 cl_qlist_insert_tail(&p_vector->alloc_list, p_buf); in cl_vector_set_capacity()
386 p_buf++; in cl_vector_set_capacity()
389 p_vector->p_ptr_array[i] = p_buf; in cl_vector_set_capacity()
391 p_buf = (void *)(((uint8_t *) p_buf) + p_vector->element_size); in cl_vector_set_capacity()
/freebsd-13.1/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_mlx_sar.c71 IN uint32_t seg_idx, OUT void *p_buf) in osmv_rmpp_sar_get_mad_seg() argument
89 memset(p_buf, 0, MAD_BLOCK_SIZE); in osmv_rmpp_sar_get_mad_seg()
92 memcpy(p_buf, p_sar->p_arbt_mad, p_sar->hdr_sz); in osmv_rmpp_sar_get_mad_seg()
100 memcpy((char *)p_buf + p_sar->hdr_sz, (char *)p_seg, in osmv_rmpp_sar_get_mad_seg()
103 memcpy((char *)p_buf + p_sar->hdr_sz, (char *)p_seg, sz_left); in osmv_rmpp_sar_get_mad_seg()
H A Dosm_vendor_mlx_rmpp_ctx.c117 IN uint32_t resp_timeout, OUT void *p_buf) in osmv_rmpp_send_ctx_get_seg() argument
126 st = osmv_rmpp_sar_get_mad_seg(&p_send_ctx->sar, seg_idx, p_buf); in osmv_rmpp_send_ctx_get_seg()
131 p_rmpp_mad = (ib_rmpp_mad_t *) p_buf; in osmv_rmpp_send_ctx_get_seg()
/freebsd-13.1/contrib/ntp/sntp/libopts/
H A Dload.c145 optionMakePath(char * p_buf, int b_sz, char const * fname, char const * prg_path) in optionMakePath() argument
159 char * dst = p_buf; in optionMakePath()
180 if (! add_prog_path(p_buf, b_sz, fname, prg_path)) in optionMakePath()
188 if (snprintf(p_buf, (size_t)b_sz, "%s%s", in optionMakePath()
194 if (! add_env_val(p_buf, b_sz, fname)) in optionMakePath()
198 return get_realpath(p_buf, b_sz); in optionMakePath()
/freebsd-13.1/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mlx_sar.h99 void *p_buf);
/freebsd-13.1/stand/common/
H A Dbcache.c222 caddr_t p_buf; in read_strategy() local
283 p_buf = bc->bcache_data + (bcache_blksize * BHASH(bc, p_blk)); in read_strategy()
352 p_size * bcache_blksize, p_buf, &r_size); in read_strategy()
/freebsd-13.1/contrib/ofed/opensm/opensm/
H A Dosm_log.c341 IN const char *p_buf) in osm_log_raw() argument
345 printf("%s", p_buf); in osm_log_raw()
H A Dosm_helper.c592 static void dbg_get_capabilities_str(IN char *p_buf, IN uint32_t buf_size, in dbg_get_capabilities_str() argument
597 char *p_local = p_buf; in dbg_get_capabilities_str()
796 static void dbg_get_capabilities2_str(IN char *p_buf, IN uint32_t buf_size, in dbg_get_capabilities2_str() argument
801 char *p_local = p_buf; in dbg_get_capabilities2_str()
/freebsd-13.1/contrib/ofed/opensm/include/opensm/
H A Dosm_log.h491 IN const char *p_buf);
/freebsd-13.1/contrib/ofed/opensm/include/iba/
H A Dib_types.h11363 IN OUT void *p_buf OPTIONAL;