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

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ServerHandshakeImpl.java 519 byte[] tmpLength = new byte[2];
523 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
524 tmpLength[1] = (byte) (tmp.length & 0xFF);
525 ds.update(tmpLength);
528 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
529 tmpLength[1] = (byte) (tmp.length & 0xFF);
530 ds.update(tmpLength);
534 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
535 tmpLength[1] = (byte) (tmp.length & 0xFF);
536 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 585 WebRtc_UWord32 tmpLength = _bufferLength;
591 newLength = tmpLength;

Completed in 75 milliseconds