Searched refs:p_buf (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/contrib/ofed/management/opensm/complib/
H A Dcl_log.c66 char *p_buf; local
91 p_buf = data;
94 sprintf(p_buf, "%02x", *p_int_data++);
95 p_buf += 2;
99 sprintf(p_buf++, "\n");
105 sprintf(p_buf++, " ");
107 syslog(priority, "%s data:\n%s\n", message, p_buf);
H A Dcl_vector.c348 cl_list_item_t *p_buf; local
387 p_buf = (cl_list_item_t *) malloc(alloc_size + sizeof(cl_list_item_t));
388 if (!p_buf)
391 memset(p_buf, 0, alloc_size + sizeof(cl_list_item_t));
393 cl_qlist_insert_tail(&p_vector->alloc_list, p_buf);
395 p_buf++;
398 p_vector->p_ptr_array[i] = p_buf;
400 p_buf = (void *)(((uint8_t *) p_buf) + p_vector->element_size);
/freebsd-9.3-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_mlx_sar.c71 IN uint32_t seg_idx, OUT void *p_buf)
89 memset(p_buf, 0, MAD_BLOCK_SIZE);
92 memcpy(p_buf, p_sar->p_arbt_mad, p_sar->hdr_sz);
100 memcpy((char *)p_buf + p_sar->hdr_sz, (char *)p_seg,
103 memcpy((char *)p_buf + p_sar->hdr_sz, (char *)p_seg, sz_left);
70 osmv_rmpp_sar_get_mad_seg(IN osmv_rmpp_sar_t * p_sar, IN uint32_t seg_idx, OUT void *p_buf) argument
H A Dosm_vendor_mlx_rmpp_ctx.c117 IN uint32_t resp_timeout, OUT void *p_buf)
126 st = osmv_rmpp_sar_get_mad_seg(&p_send_ctx->sar, seg_idx, p_buf);
131 p_rmpp_mad = (ib_rmpp_mad_t *) p_buf;
115 osmv_rmpp_send_ctx_get_seg(IN osmv_rmpp_send_ctx_t * p_send_ctx, IN uint32_t seg_idx, IN uint32_t resp_timeout, OUT void *p_buf) argument
/freebsd-9.3-release/contrib/ofed/management/opensm/include/vendor/
H A Dosm_vendor_mlx_sar.h99 void *p_buf);
/freebsd-9.3-release/sys/boot/common/
H A Dbcache.c167 caddr_t p_buf; local
185 p_buf = NULL;
192 p_buf = buf + (bcache_blksize * i);
199 result = dd->dv_strategy(dd->dv_devdata, rw, p_blk, p_size * bcache_blksize, p_buf, NULL);
203 bcache_insert(p_buf + (j * bcache_blksize), p_blk + j);
209 result = dd->dv_strategy(dd->dv_devdata, rw, p_blk, p_size * bcache_blksize, p_buf, NULL);
213 bcache_insert(p_buf + (j * bcache_blksize), p_blk + j);
/freebsd-9.3-release/contrib/ntp/sntp/libopts/
H A Dload.c97 * arg: + char * + p_buf + The result buffer +
145 optionMakePath(char * p_buf, int b_sz, char const * fname, char const * prg_path) argument
159 char * dst = p_buf;
180 if (! add_prog_path(p_buf, b_sz, fname, prg_path))
188 if (snprintf(p_buf, (size_t)b_sz, "%s%s",
194 if (! add_env_val(p_buf, b_sz, fname))
198 return get_realpath(p_buf, b_sz);
/freebsd-9.3-release/sys/libkern/
H A Dcrc32.c678 const unsigned char *p_buf,
691 crc = sctp_crc_tableil8_o32[(crc ^ *p_buf++) & 0x000000FF] ^
695 crc ^= *p_buf++;
696 crc ^= (*p_buf++) << 8;
697 crc ^= (*p_buf++) << 16;
698 crc ^= (*p_buf++) << 24;
700 crc ^= *(const uint32_t *) p_buf;
701 p_buf += 4;
711 crc ^= sctp_crc_tableil8_o56[*p_buf++];
712 crc ^= sctp_crc_tableil8_o48[*p_buf
677 crc32c_sb8_64_bit(uint32_t crc, const unsigned char *p_buf, uint32_t length, uint32_t init_bytes) argument
[all...]
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_log.c202 IN const osm_log_level_t verbosity, IN const char *p_buf)
206 printf("%s", p_buf);
201 osm_log_raw(IN osm_log_t * const p_log, IN const osm_log_level_t verbosity, IN const char *p_buf) argument
H A Dosm_helper.c564 dbg_get_capabilities_str(IN char *p_buf, argument
570 char *p_local = p_buf;
/freebsd-9.3-release/contrib/ofed/management/opensm/include/opensm/
H A Dosm_log.h391 IN const osm_log_level_t verbosity, IN const char *p_buf);
/freebsd-9.3-release/contrib/ofed/management/opensm/include/iba/
H A Dib_types.h10677 IN OUT void *p_buf OPTIONAL;
10688 * p_buf
10690 * provider must not access pointers in the p_buf between user-mode and
10691 * kernel-mode. Any pointers embedded in the p_buf are invalidated by
10711 * structure are expected to know the format of data in the p_buf based

Completed in 95 milliseconds