Home
last modified time | relevance | path

Searched refs:ulength (Results 1 – 6 of 6) 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/tensorflow/tensorflow/core/lib/io/
Dformat.cc139 size_t ulength = 0; in ReadBlock() local
140 if (!port::Snappy_GetUncompressedLength(data, n, &ulength)) { in ReadBlock()
144 char* ubuf = new char[ulength]; in ReadBlock()
151 result->data = StringPiece(ubuf, ulength); in ReadBlock()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DAffixUtilsTest.java127 int ulength = AffixUtils.unescapedCount(input, true, DEFAULT_SYMBOL_PROVIDER); in testUnescape() local
128 assertEquals("Unescaped length on <" + input + ">", output.length(), ulength); in testUnescape()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DAffixUtilsTest.java124 int ulength = AffixUtils.unescapedCount(input, true, DEFAULT_SYMBOL_PROVIDER); in testUnescape() local
125 assertEquals("Unescaped length on <" + input + ">", output.length(), ulength); in testUnescape()
/external/icu/icu4c/source/test/intltest/
Dnumbertest_affixutils.cpp142 int32_t ulength = AffixUtils::unescapedCodePointCount(input, defaultProvider, status); in testUnescape() local
144 assertEquals(input, output.countChar32(), ulength); in testUnescape()
/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()