HomeSort by relevance Sort by last modified time
    Searched defs:utflen (Results 1 - 12 of 12) sorted by null

  /external/libutf/
utflen.c 20 utflen(const char *s) function
  /external/regex-re2/util/
rune.cc 210 utflen(const char *s) function in namespace:re2
  /libcore/ojluni/src/main/java/java/io/
DataOutputStream.java 348 int utflen = 0; local
355 utflen++;
357 utflen += 3;
359 utflen += 2;
363 if (utflen > 65535)
365 "encoded string too long: " + utflen + " bytes");
370 if(dos.bytearr == null || (dos.bytearr.length < (utflen+2)))
371 dos.bytearr = new byte[(utflen*2) + 2];
374 bytearr = new byte[utflen+2];
377 bytearr[count++] = (byte) ((utflen >>> 8) & 0xFF)
    [all...]
DataInputStream.java 586 int utflen = in.readUnsignedShort(); local
591 if (dis.bytearr.length < utflen){
592 dis.bytearr = new byte[utflen*2];
593 dis.chararr = new char[utflen*2];
598 bytearr = new byte[utflen];
599 chararr = new char[utflen];
606 in.readFully(bytearr, 0, utflen);
608 while (count < utflen) {
615 while (count < utflen) {
626 if (count > utflen)
    [all...]
ObjectOutputStream.java 1343 long utflen = bout.getUTFLength(str); local
2208 long utflen = 0; local
    [all...]
  /external/boringssl/src/crypto/x509/
a_strex.c 203 int utflen; local
204 utflen = UTF8_putc(utfbuf, sizeof utfbuf, c);
205 for(i = 0; i < utflen; i++) {
207 * because if utflen==1 its value will be correct anyway
  /external/jmdns/src/javax/jmdns/impl/
DNSOutgoing.java 79 int utflen = 0; local
83 utflen += 1;
86 utflen += 3;
88 utflen += 2;
93 writeByte(utflen);
  /external/mksh/src/
eval.c 79 static int utflen(const char *) MKSH_A_PURE;
84 utflen(const char *s) function
463 flen = utflen(beg);
472 flen = utflen(beg);
1108 c = utflen(p);
    [all...]
  /external/svox/pico/lib/
picotok.c 219 picoos_int32 utflen; member in struct:tok_subobj
439 tok->utflen = picobase_det_utf8_length(ch);
441 tok->utflen = 0;
444 if ((tok->utfpos == tok->utflen)) {
449 } else if (tok->utfpos < tok->utflen) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.ds_1.4.101.v20130813-1853.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.ds_1.4.100.v20130515-2026.jar 

Completed in 2423 milliseconds