HomeSort by relevance Sort by last modified time
    Searched refs:outputLength (Results 1 - 15 of 15) 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/harfbuzz/tests/linebreaking/
harfbuzz-qt.cpp 92 char *HB_TextCodec_ConvertFromUnicode(void *codec, const HB_UChar16 *unicode, hb_uint32 length, hb_uint32 *outputLength)
98 if (outputLength)
99 *outputLength = data.length();
  /packages/inputmethods/LatinIME/native/jni/src/
correction.h 335 const int inputSize, const int *output, const int outputLength) {
338 // Assuming that dp[0][0] ... dp[outputLength - 1][inputSize] are already calculated,
339 // and calculate dp[ouputLength][0] ... dp[outputLength][inputSize].
340 int *const current = editDistanceTable + outputLength * (inputSize + 1);
341 const int *const prev = editDistanceTable + (outputLength - 1) * (inputSize + 1);
343 outputLength >= 2 ? editDistanceTable + (outputLength - 2) * (inputSize + 1) : 0;
344 current[0] = outputLength;
345 const int co = toBaseLowerCase(output[outputLength - 1]);
346 const int prevCO = outputLength >= 2 ? toBaseLowerCase(output[outputLength - 2]) : 0
    [all...]
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/intltest/
normconf.h 97 UnicodeString output[], int32_t outputLength);
normconf.cpp 531 UnicodeString output[], int32_t outputLength) {
536 for (i=0; i<outputLength; ++i) {
569 if((i + 1) == outputLength) {
572 errln(UnicodeString("Missing field(s) in ", "") + s + " only " + (i + 1) + " out of " + outputLength);
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.h 51 void* outputBuffer, int outputBufferLength, int& outputLength);
TextCodecMac.cpp 133 void *outputBuffer, int outputBufferLength, int& outputLength)
194 outputLength = bytesWritten;
  /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/icu4c/i18n/
uspoof.cpp 391 UChar *dest, int32_t destCapacity, int32_t *outputLength, UErrorCode *status) {
408 *outputLength = requiredCapacity;
515 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
521 u_strFromUTF8(dest, outBufCapacity, outputLength, in, inLength, status);
523 dest = static_cast<UChar *>(uprv_malloc(*outputLength * sizeof(UChar)));
529 u_strFromUTF8(dest, *outputLength, NULL, in, inLength, status);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 900 ByteCount outputLength;
904 OSStatus status = ConvertFromUnicodeToText(textInfo, inputLength, string.characters(), kNilOptions, 0, 0, 0, 0, maxOutputLength, &inputRead, &outputLength, outputData.data());
  /external/icu4c/test/cintltst/
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...]
ccapitst.c     [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 2815 milliseconds