Home
last modified time | relevance | path

Searched refs:msg_length (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_eu.h220 unsigned msg_length,
228 unsigned msg_length,
239 unsigned msg_length,
249 unsigned msg_length,
261 unsigned msg_length,
302 unsigned msg_length,
312 unsigned msg_length,
324 unsigned msg_length,
446 unsigned msg_length,
454 unsigned msg_length,
[all …]
Dbrw_eu_emit.c374 unsigned msg_length, in brw_set_message_descriptor() argument
395 brw_inst_set_mlen(devinfo, inst, msg_length); in brw_set_message_descriptor()
412 unsigned msg_length; in brw_set_math_message() local
421 msg_length = 2; in brw_set_math_message()
424 msg_length = 1; in brw_set_math_message()
441 msg_length, response_length, false, false); in brw_set_math_message()
473 unsigned msg_length, in brw_set_urb_message() argument
485 msg_length, response_length, true, in brw_set_urb_message()
489 assert(msg_length == 2); /* header + one OWORD of data */ in brw_set_urb_message()
518 unsigned msg_length, in brw_set_dp_write_message() argument
[all …]
/external/boringssl/src/ssl/
Ds3_both.cc352 size_t msg_length = ((in[0] & 0x7f) << 8) | in[1]; in read_v2_client_hello() local
353 if (msg_length > (1024 * 4)) { in read_v2_client_hello()
357 if (msg_length < SSL3_RT_HEADER_LENGTH - 2) { in read_v2_client_hello()
366 if (in.size() < 2 + msg_length) { in read_v2_client_hello()
367 *out_consumed = 2 + msg_length; in read_v2_client_hello()
371 CBS v2_client_hello = CBS(ssl->s3->read_buffer.span().subspan(2, msg_length)); in read_v2_client_hello()
464 *out_consumed = 2 + msg_length; in read_v2_client_hello()
/external/tensorflow/tensorflow/contrib/mpi_collectives/kernels/
Dmpi_ops.cc689 int msg_length; in BackgroundThreadLoop() local
690 MPI_Get_count(&status, MPI_BYTE, &msg_length); in BackgroundThreadLoop()
693 if (msg_length == 0) { in BackgroundThreadLoop()
701 char* buffer = new char[msg_length]; in BackgroundThreadLoop()
702 MPI_Recv(buffer, msg_length, MPI_BYTE, source_rank, TAG_NOTIFY, in BackgroundThreadLoop()
766 int msg_length; in BackgroundThreadLoop() local
767 MPI_Get_count(&status, MPI_BYTE, &msg_length); in BackgroundThreadLoop()
770 char* buffer = new char[msg_length]; in BackgroundThreadLoop()
771 MPI_Recv(buffer, msg_length, MPI_BYTE, 0, TAG_NOTIFY, MPI_COMM_WORLD, in BackgroundThreadLoop()
/external/tensorflow/tensorflow/contrib/mpi_collectives/
Dmpi_ops.cc690 int msg_length; in BackgroundThreadLoop() local
691 MPI_Get_count(&status, MPI_BYTE, &msg_length); in BackgroundThreadLoop()
694 if (msg_length == 0) { in BackgroundThreadLoop()
702 char* buffer = new char[msg_length]; in BackgroundThreadLoop()
703 MPI_Recv(buffer, msg_length, MPI_BYTE, source_rank, TAG_NOTIFY, in BackgroundThreadLoop()
767 int msg_length; in BackgroundThreadLoop() local
768 MPI_Get_count(&status, MPI_BYTE, &msg_length); in BackgroundThreadLoop()
771 char* buffer = new char[msg_length]; in BackgroundThreadLoop()
772 MPI_Recv(buffer, msg_length, MPI_BYTE, 0, TAG_NOTIFY, MPI_COMM_WORLD, in BackgroundThreadLoop()
/external/u-boot/drivers/net/
Dpcnet.c48 u32 msg_length; member
514 pkt_len = (readl(&entry->msg_length) & 0xfff) - 4; in pcnet_recv()
/external/webrtc/webrtc/p2p/base/
Dstun.cc138 uint16_t msg_length = rtc::GetBE16(&data[2]); in ValidateMessageIntegrity() local
139 if (size != (msg_length + kStunHeaderSize)) { in ValidateMessageIntegrity()