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

  /libcore/crypto/src/main/java/org/conscrypt/
ServerKeyExchange.java 104 byte[] tmpLength = new byte[2];
106 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
107 tmpLength[1] = (byte) (tmp.length & 0xFF);
108 ds.update(tmpLength);
111 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
112 tmpLength[1] = (byte) (tmp.length & 0xFF);
113 ds.update(tmpLength);
120 byte[] tmpLength = new byte[2];
122 tmpLength[0] = (byte) ((tmp.length & 0xFF00) >>> 8);
123 tmpLength[1] = (byte) (tmp.length & 0xFF)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uloc.c 544 int32_t tmpLength = 0;
551 tmpLength = 0;
554 tmpLength++;
556 if (tmpLength != 0 && tmpLength < length) {
557 length = tmpLength;
    [all...]
  /external/icu4c/common/
uloc.cpp 529 int32_t tmpLength = 0;
536 tmpLength = 0;
539 tmpLength++;
541 if (tmpLength != 0 && tmpLength < length) {
542 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...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 84 milliseconds