HomeSort by relevance Sort by last modified time
    Searched defs:ulength (Results 1 - 5 of 5) sorted by null

  /external/python/cpython2/Modules/_multiprocessing/
socket_connection.c 150 UINT32 ulength; local
155 res = _conn_recvall(conn->handle, (char*)&ulength, 4);
160 ulength = ntohl(ulength);
161 if (ulength > maxlength)
164 if (ulength > buflength) {
165 *newbuffer = buffer = PyMem_Malloc((size_t)ulength);
171 res = _conn_recvall(conn->handle, buffer, (size_t)ulength);
175 res = (Py_ssize_t)ulength;
  /external/icu/icu4c/source/test/intltest/
numbertest_affixutils.cpp 142 int32_t ulength = AffixUtils::unescapedCodePointCount(input, defaultProvider, status); local
144 assertEquals(input, output.countChar32(), ulength);
  /external/tensorflow/tensorflow/core/lib/io/
format.cc 139 size_t ulength = 0; local
140 if (!port::Snappy_GetUncompressedLength(data, n, &ulength)) {
144 char* ubuf = new char[ulength];
151 result->data = StringPiece(ubuf, ulength);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
AffixUtilsTest.java 127 int ulength = AffixUtils.unescapedCount(input, true, DEFAULT_SYMBOL_PROVIDER); local
128 assertEquals("Unescaped length on <" + input + ">", output.length(), ulength);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
AffixUtilsTest.java 124 int ulength = AffixUtils.unescapedCount(input, true, DEFAULT_SYMBOL_PROVIDER); local
125 assertEquals("Unescaped length on <" + input + ">", output.length(), ulength);

Completed in 814 milliseconds