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

  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 44 private int outputLength; // count of the bytes to return from outputBuffer
88 return (outputIndex == outputLength) ? -1 : outputBuffer[outputIndex++] & 0xFF;
90 if (outputIndex < outputLength) {
94 outputLength = 0;
95 while (outputLength == 0) {
105 outputLength = cipher.doFinal(outputBuffer, 0);
113 outputLength = cipher.update(inputBuffer, 0, byteCount, outputBuffer, 0);
  /external/icu4c/test/perf/utfperf/
utfperf.cpp 39 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints;
182 encodedLength=outputLength=0;
209 outputLength=pOut-output;
210 if(inputLength!=outputLength) {
211 fprintf(stderr, "error: roundtrip failed, inputLength %d!=outputLength %d\n", inputLength, outputLength);
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.cpp 133 void *outputBuffer, int outputBufferLength, int& outputLength)
194 outputLength = bytesWritten;
  /packages/inputmethods/LatinIME/native/jni/src/
correction.cpp 44 const int editDistanceTableWidth, const int outputLength) {
50 if (j < editDistanceTableWidth + 1 && i < outputLength + 1) {
64 const int outputLength, const int inputSize) {
66 AKLOGI("getCurrentEditDistance %d, %d", inputSize, outputLength);
68 return editDistanceTable[(editDistanceTableWidth + 1) * (outputLength) + inputSize];
551 const int outputLength = outputIndex + 1;
566 const int quoteDiffCount = max(0, getQuoteCount(word, outputLength)
572 dumpEditDistance10ForDebug(editDistanceTable, correction->mInputSize, outputLength);
584 ed = getCurrentEditDistance(editDistanceTable, correction->mInputSize, outputLength,
588 max(inputSize, outputLength) - ed)
    [all...]
  /external/icu4c/test/cintltst/
ccapitst.c     [all...]
cmsccoll.c 775 int32_t outputLength;
844 outputLength = (int32_t)strlen(output);
845 if(outputLength > maxOutputLength) {
846 maxOutputLength = outputLength;
847 U_ASSERT(outputLength < sizeof(output));
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp     [all...]
  /prebuilts/tools/common/m2/internal/commons-lang/commons-lang/2.4/
commons-lang-2.4.jar 

Completed in 544 milliseconds