HomeSort by relevance Sort by last modified time
    Searched full:dlength (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/native/
java_lang_StringToReal.cpp 343 int32_t xLength, yLength, DLength, D2Length, decApproxCount, incApproxCount;
346 xLength = yLength = DLength = D2Length = 0;
418 DLength = xLength;
419 allocateU64 (D, DLength);
420 memcpy (D, x, DLength * sizeof (uint64_t));
421 subtractHighPrecision (D, DLength, y, yLength);
425 DLength = yLength;
426 allocateU64 (D, DLength);
427 memcpy (D, y, DLength * sizeof (uint64_t));
428 subtractHighPrecision (D, DLength, x, xLength)
    [all...]
  /external/smack/src/org/xbill/DNS/
Name.java 494 int dlength = dnametarget.length(); local
496 if (plength + dlength > MAXNAME)
501 newname.name = new byte[plength + dlength];
503 System.arraycopy(dnametarget.name, 0, newname.name, plength, dlength);
  /external/chromium_org/third_party/icu/source/test/cintltst/
ucsdetst.c 123 int32_t byteLength = 0, sLength = 0, dLength = 0;
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
148 if (u_strCompare(detected, dLength, s, sLength, FALSE) != 0) {
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.cpp 178 int32_t dLength = 0;
206 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
208 if (testString.compare(decoded, dLength) != 0) {
  /external/icu4c/test/cintltst/
ucsdetst.c 123 int32_t byteLength = 0, sLength = 0, dLength = 0;
146 dLength = ucsdet_getUChars(match, detected, sLength, &status);
148 if (u_strCompare(detected, dLength, s, sLength, FALSE) != 0) {
  /external/icu4c/test/intltest/
csdetest.cpp 190 int32_t dLength = 0;
218 dLength = ucsdet_getUChars(matches[0], decoded, testLength, &status);
220 if (testString.compare(decoded, dLength) != 0) {

Completed in 3294 milliseconds