HomeSort by relevance Sort by last modified time
    Searched refs:tmpLength (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImpl.java 526 byte[] tmpLength = new byte[2];
530 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
531 tmpLength[1] = (byte) (tmp.length & 0xFF);
532 ds.update(tmpLength);
535 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
536 tmpLength[1] = (byte) (tmp.length & 0xFF);
537 ds.update(tmpLength);
541 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
542 tmpLength[1] = (byte) (tmp.length & 0xFF);
543 ds.update(tmpLength);
    [all...]
  /external/icu4c/common/
uloc.cpp 537 int32_t tmpLength = 0;
544 tmpLength = 0;
547 tmpLength++;
549 if (tmpLength != 0 && tmpLength < length) {
550 length = tmpLength;
    [all...]
  /external/webrtc/src/modules/interface/
module_common_types.h 623 WebRtc_UWord32 tmpLength = _bufferLength;
629 newLength = tmpLength;
  /external/icu4c/tools/pkgdata/
pkgdata.cpp     [all...]

Completed in 5588 milliseconds