Searched refs:MSGLEN (Results 1 – 5 of 5) sorted by relevance
/third_party/mbedtls/tests/suites/ |
D | test_suite_ssl.function | 26 enum { MSGLEN = 10 }; 28 unsigned char input[MSGLEN]; 29 unsigned char output[MSGLEN]; 208 enum { MSGLEN = 105 }; 209 unsigned char message[MSGLEN] = { 0 }; 210 unsigned char received[MSGLEN] = { 0 }; 214 TEST_ASSERT(mbedtls_test_mock_tcp_send_b(&socket, message, MSGLEN) < 0); 217 TEST_ASSERT(mbedtls_test_mock_tcp_recv_b(&socket, received, MSGLEN) < 0); 221 TEST_ASSERT(mbedtls_test_mock_tcp_send_nb(&socket, message, MSGLEN) < 0); 224 TEST_ASSERT(mbedtls_test_mock_tcp_recv_nb(&socket, received, MSGLEN) < 0); [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/opencv/ |
D | MotionCells.cpp | 185 …m_motioncells_idx_count = m_MotionCells.size () * MSGLEN; //one motion cell idx: (lin idx : col id… in performDetectionMotionCells() 187 char *tmpstr = new char[MSGLEN + 1]; in performDetectionMotionCells() 210 snprintf (tmpstr, MSGLEN + 1, "%d:%d,", m_MotionCells.at (i).lineidx, in performDetectionMotionCells() 213 snprintf (tmpstr, MSGLEN + 1, "%d:%d", m_MotionCells.at (i).lineidx, in performDetectionMotionCells()
|
D | MotionCells.h | 58 #define MSGLEN 6 macro
|
D | gstmotioncells.cpp | 91 #define MSGLEN 6 macro 1026 motioncellsnumber = motioncellsidxcnt / MSGLEN; in gst_motion_cells_transform_ip()
|
/third_party/python/Doc/howto/ |
D | sockets.rst | 200 while totalsent < MSGLEN: 209 while bytes_recd < MSGLEN: 210 chunk = self.sock.recv(min(MSGLEN - bytes_recd, 2048))
|