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

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterAlias.java 58 private static final String extractString(byte[] sArray, int sBegin) {
59 char[] buf = new char[strlen(sArray, sBegin)];
61 buf[i] = (char)(sArray[sBegin + i] & 0xff);
66 private static final int strlen(byte[] sArray, int sBegin)
68 int i = sBegin;
70 return i - sBegin - 1;
  /external/sqlite/dist/orig/
shell.c 192 static struct rusage sBegin; /* CPU time at start */
200 getrusage(RUSAGE_SELF, &sBegin);
221 timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
222 timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
    [all...]
  /external/sqlite/dist/
shell.c 198 static struct rusage sBegin; /* CPU time at start */
206 getrusage(RUSAGE_SELF, &sBegin);
227 timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
228 timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
    [all...]

Completed in 571 milliseconds