HomeSort by relevance Sort by last modified time
    Searched refs:outputLength (Results 1 - 12 of 12) 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();
  /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;
  /packages/inputmethods/LatinIME/native/jni/src/
correction.cpp 44 const int editDistanceTableWidth, const int outputLength) {
50 if (j < editDistanceTableWidth + 1 && i < outputLength + 1) {
63 const int inputLength, const unsigned short *output, const int outputLength) {
66 // Assuming that dp[0][0] ... dp[outputLength - 1][inputLength] are already calculated,
67 // and calculate dp[ouputLength][0] ... dp[outputLength][inputLength].
68 int *const current = editDistanceTable + outputLength * (inputLength + 1);
69 const int *const prev = editDistanceTable + (outputLength - 1) * (inputLength + 1);
71 outputLength >= 2 ? editDistanceTable + (outputLength - 2) * (inputLength + 1) : 0;
72 current[0] = outputLength;
    [all...]
  /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 390 UChar *dest, int32_t destCapacity, int32_t *outputLength, UErrorCode *status) {
407 *outputLength = requiredCapacity;
514 static UChar * convertFromUTF8(UChar *outBuf, int32_t outBufCapacity, int32_t *outputLength,
520 u_strFromUTF8(dest, outBufCapacity, outputLength, in, inLength, status);
522 dest = static_cast<UChar *>(uprv_malloc(*outputLength * sizeof(UChar)));
528 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 774 int32_t outputLength;
843 outputLength = (int32_t)strlen(output);
844 if(outputLength > maxOutputLength) {
845 maxOutputLength = outputLength;
846 U_ASSERT(outputLength < sizeof(output));
    [all...]
ccapitst.c     [all...]

Completed in 1248 milliseconds