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 527 byte[] tmpLength = new byte[2];
531 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
532 tmpLength[1] = (byte) (tmp.length & 0xFF);
533 ds.update(tmpLength);
536 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
537 tmpLength[1] = (byte) (tmp.length & 0xFF);
538 ds.update(tmpLength);
542 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
543 tmpLength[1] = (byte) (tmp.length & 0xFF);
544 ds.update(tmpLength);
    [all...]
  /external/icu4c/common/
uloc.c 544 int32_t tmpLength = 0;
551 tmpLength = 0;
554 tmpLength++;
556 if (tmpLength != 0 && tmpLength < length) {
557 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 896 milliseconds