Home
last modified time | relevance | path

Searched refs:ulength (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/_multiprocessing/
Dsocket_connection.c150 UINT32 ulength; in conn_recv_string() local
155 res = _conn_recvall(conn->handle, (char*)&ulength, 4); in conn_recv_string()
160 ulength = ntohl(ulength); in conn_recv_string()
161 if (ulength > maxlength) in conn_recv_string()
164 if (ulength > buflength) { in conn_recv_string()
165 *newbuffer = buffer = PyMem_Malloc((size_t)ulength); in conn_recv_string()
171 res = _conn_recvall(conn->handle, buffer, (size_t)ulength); in conn_recv_string()
175 res = (Py_ssize_t)ulength; in conn_recv_string()
/external/protobuf/conformance/third_party/jsoncpp/
Djsoncpp.cpp2634 Value::CZString::CZString(char const* str, unsigned ulength, DuplicationPolicy allocate) in CZString() argument
2638 storage_.length_ = ulength & 0x3FFFFFFF; in CZString()