Home
last modified time | relevance | path

Searched refs:outChars (Results 1 – 25 of 88) sorted by relevance

1234

/dports/editors/libreoffice6/libreoffice-6.4.7.2/connectivity/source/drivers/jdbc/
H A DReader.cxx131 jint outChars(0); in readBytes() local
141 outChars = t.pEnv->CallIntMethod( object, mID, pCharArray, 0, nCharsToRead ); in readBytes()
142 if ( !outChars ) in readBytes()
149 if(outChars > 0) in readBytes()
153 const sal_Int32 outBytes = std::min(nBytesToRead, outChars*jcs); in readBytes()
154 assert(outBytes == outChars*jcs || outBytes == outChars*jcs - 1); in readBytes()
166 if(outBytes < outChars*jcs) in readBytes()
168 assert(outChars*jcs - outBytes == 1); in readBytes()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/native/sun/font/layout/
H A DThaiLayoutEngine.cpp95 LEUnicode *outChars; in computeGlyphs() local
100 outChars = LE_NEW_ARRAY(LEUnicode, count * 2); in computeGlyphs()
102 if (outChars == NULL) { in computeGlyphs()
110 LE_DELETE_ARRAY(outChars); in computeGlyphs()
115 …glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStor… in computeGlyphs()
116 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success); in computeGlyphs()
118 LE_DELETE_ARRAY(outChars); in computeGlyphs()
H A DHangulLayoutEngine.cpp248 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
250 if (outChars == NULL) { in characterProcessing()
259 LE_DELETE_ARRAY(outChars); in characterProcessing()
282 outChars[outCharCount] = trail; in characterProcessing()
289 outChars[outCharCount] = lead; in characterProcessing()
295 outChars[outCharCount] = vowel; in characterProcessing()
301 outChars[outCharCount] = trail; in characterProcessing()
333 LEUnicode lead = outChars[outStart]; in characterProcessing()
334 LEUnicode vowel = outChars[outStart + 1]; in characterProcessing()
343 outChars[outCharCount] = syllable; in characterProcessing()
[all …]
H A DIndicLayoutEngine.cpp118 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
133 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
135 if (outChars == NULL) { in characterProcessing()
144 LE_DELETE_ARRAY(outChars); in characterProcessing()
154 …outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStora… in characterProcessing()
157 …outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage… in characterProcessing()
161 LE_DELETE_ARRAY(outChars); in characterProcessing()
H A DTibetanLayoutEngine.cpp76 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
89 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
91 if (outChars == NULL) { in characterProcessing()
100 LE_DELETE_ARRAY(outChars); in characterProcessing()
106 …le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, g… in characterProcessing()
H A DKhmerLayoutEngine.cpp70 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
83 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
85 if (outChars == NULL) { in characterProcessing()
94 LE_DELETE_ARRAY(outChars); in characterProcessing()
100 …le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, gly… in characterProcessing()
H A DOpenTypeLayoutEngine.cpp308 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
325 outChars = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing()
327 if (outChars == NULL) { in characterProcessing()
333 LE_DELETE_ARRAY(outChars); in characterProcessing()
337 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); in characterProcessing()
430 LEUnicode *outChars = NULL; in computeGlyphs() local
443 …outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStor… in computeGlyphs()
449 if (outChars != NULL) { in computeGlyphs()
451 … glyphProcessing(outChars, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success); in computeGlyphs()
452 …LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete… in computeGlyphs()
H A DArabicLayoutEngine.cpp95 … le_int32 max, le_bool rightToLeft, LEUnicode *&outChars, in characterProcessing() argument
107 outChars = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing()
109 if (outChars == NULL) { in characterProcessing()
118 LE_DELETE_ARRAY(outChars); in characterProcessing()
122 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); in characterProcessing()
H A DLayoutEngine.cpp250 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
345 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount); in characterProcessing()
347 if (outChars == NULL) { in characterProcessing()
354 outChars[out] = (LEUnicode) LE_GET_GLYPH(fakeGlyphStorage[i]); in characterProcessing()
375 LEUnicode *outChars = NULL; in computeGlyphs() local
376 …le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyp… in computeGlyphs()
378 if (outChars != NULL) { in computeGlyphs()
379 … mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success); in computeGlyphs()
380 …LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete… in computeGlyphs()
H A DCanonShaping.cpp60 LEUnicode *outChars, LEGlyphStorage &glyphStorage) in reorderMarks() argument
108 outChars[i] = inChars[index]; in reorderMarks()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/native/sun/font/layout/
H A DThaiLayoutEngine.cpp95 LEUnicode *outChars; in computeGlyphs() local
100 outChars = LE_NEW_ARRAY(LEUnicode, count * 2); in computeGlyphs()
102 if (outChars == NULL) { in computeGlyphs()
110 LE_DELETE_ARRAY(outChars); in computeGlyphs()
115 …glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStor… in computeGlyphs()
116 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success); in computeGlyphs()
118 LE_DELETE_ARRAY(outChars); in computeGlyphs()
H A DHangulLayoutEngine.cpp248 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
250 if (outChars == NULL) { in characterProcessing()
259 LE_DELETE_ARRAY(outChars); in characterProcessing()
282 outChars[outCharCount] = trail; in characterProcessing()
289 outChars[outCharCount] = lead; in characterProcessing()
295 outChars[outCharCount] = vowel; in characterProcessing()
301 outChars[outCharCount] = trail; in characterProcessing()
333 LEUnicode lead = outChars[outStart]; in characterProcessing()
334 LEUnicode vowel = outChars[outStart + 1]; in characterProcessing()
343 outChars[outCharCount] = syllable; in characterProcessing()
[all …]
H A DIndicLayoutEngine.cpp118 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
133 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
135 if (outChars == NULL) { in characterProcessing()
144 LE_DELETE_ARRAY(outChars); in characterProcessing()
154 …outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStora… in characterProcessing()
157 …outCharCount = IndicReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage… in characterProcessing()
161 LE_DELETE_ARRAY(outChars); in characterProcessing()
H A DTibetanLayoutEngine.cpp76 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
89 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
91 if (outChars == NULL) { in characterProcessing()
100 LE_DELETE_ARRAY(outChars); in characterProcessing()
106 …le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, g… in characterProcessing()
H A DKhmerLayoutEngine.cpp70 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
83 outChars = LE_NEW_ARRAY(LEUnicode, worstCase); in characterProcessing()
85 if (outChars == NULL) { in characterProcessing()
94 LE_DELETE_ARRAY(outChars); in characterProcessing()
100 …le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, gly… in characterProcessing()
H A DOpenTypeLayoutEngine.cpp308 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
325 outChars = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing()
327 if (outChars == NULL) { in characterProcessing()
333 LE_DELETE_ARRAY(outChars); in characterProcessing()
337 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); in characterProcessing()
430 LEUnicode *outChars = NULL; in computeGlyphs() local
443 …outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, fakeGlyphStor… in computeGlyphs()
449 if (outChars != NULL) { in computeGlyphs()
451 … glyphProcessing(outChars, 0, outCharCount, outCharCount, rightToLeft, fakeGlyphStorage, success); in computeGlyphs()
452 …LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete… in computeGlyphs()
H A DArabicLayoutEngine.cpp95 … le_int32 max, le_bool rightToLeft, LEUnicode *&outChars, in characterProcessing() argument
107 outChars = LE_NEW_ARRAY(LEUnicode, count); in characterProcessing()
109 if (outChars == NULL) { in characterProcessing()
118 LE_DELETE_ARRAY(outChars); in characterProcessing()
122 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); in characterProcessing()
H A DLayoutEngine.cpp250 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) in characterProcessing() argument
345 outChars = LE_NEW_ARRAY(LEUnicode, outCharCount); in characterProcessing()
347 if (outChars == NULL) { in characterProcessing()
354 outChars[out] = (LEUnicode) LE_GET_GLYPH(fakeGlyphStorage[i]); in characterProcessing()
375 LEUnicode *outChars = NULL; in computeGlyphs() local
376 …le_int32 outCharCount = characterProcessing(chars, offset, count, max, rightToLeft, outChars, glyp… in computeGlyphs()
378 if (outChars != NULL) { in computeGlyphs()
379 … mapCharsToGlyphs(outChars, 0, outCharCount, rightToLeft, rightToLeft, glyphStorage, success); in computeGlyphs()
380 …LE_DELETE_ARRAY(outChars); // FIXME: a subclass may have allocated this, in which case this delete… in computeGlyphs()
H A DCanonShaping.cpp60 LEUnicode *outChars, LEGlyphStorage &glyphStorage) in reorderMarks() argument
108 outChars[i] = inChars[index]; in reorderMarks()
/dports/editors/libreoffice/libreoffice-7.2.6.2/connectivity/source/drivers/jdbc/
H A DReader.cxx141 jint outChars = t.pEnv->CallIntMethod( object, mID, pCharArray, 0, nCharsToRead ); in readBytes() local
142 if ( !outChars ) in readBytes()
149 if(outChars > 0) in readBytes()
153 const sal_Int32 outBytes = std::min(nBytesToRead, outChars*jcs); in readBytes()
154 assert(outBytes == outChars*jcs || outBytes == outChars*jcs - 1); in readBytes()
166 if(outBytes < outChars*jcs) in readBytes()
168 assert(outChars*jcs - outBytes == 1); in readBytes()
/dports/graphics/netpbm/netpbm-10.91.01/converter/pbm/
H A Dpbmtoepsi.c268 unsigned int outChars; in main() local
271 outChars = 2; /* initial value */ in main()
274 if (outChars == 72) { in main()
276 outChars = 2; in main()
280 outChars += 2; in main()
282 if (outChars > 0) in main()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.Encoding/tests/UnicodeEncoding/
H A DUnicodeEncodingGetEncoder.cs18 int outChars; in GetEncoder()
21 … encoder.Convert(chars, 0, 10, desBytes, 0, 20, true, out buffer, out outChars, out completed); in GetEncoder()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/
H A Dconvert.cs2184 fixed (char* outChars = returnString){ in ToBase64String()
2248 fixed (char* outChars = &outArray[offsetOut]) { in ToBase64CharArray()
2272 outChars[j++] = '\r'; in ConvertToBase64Array()
2273 outChars[j++] = '\n'; in ConvertToBase64Array()
2278 outChars[j] = base64[(inData[i]&0xfc)>>2]; in ConvertToBase64Array()
2289 outChars[j++] = '\r'; in ConvertToBase64Array()
2290 outChars[j++] = '\n'; in ConvertToBase64Array()
2296 outChars[j] = base64[(inData[i]&0xfc)>>2]; in ConvertToBase64Array()
2299 outChars[j+3] = base64[64]; //Pad in ConvertToBase64Array()
2305 outChars[j+2] = base64[64]; //Pad in ConvertToBase64Array()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/shared/System/
H A DConvert.cs2497 fixed (char* outChars = &outArray[offsetOut]) in ToBase64CharArray()
2556 outChars[j++] = '\r'; in ConvertToBase64Array()
2557 outChars[j++] = '\n'; in ConvertToBase64Array()
2562 outChars[j] = base64[(inData[i] & 0xfc) >> 2]; in ConvertToBase64Array()
2565 outChars[j + 3] = base64[(inData[i + 2] & 0x3f)]; in ConvertToBase64Array()
2574 outChars[j++] = '\r'; in ConvertToBase64Array()
2575 outChars[j++] = '\n'; in ConvertToBase64Array()
2581 outChars[j] = base64[(inData[i] & 0xfc) >> 2]; in ConvertToBase64Array()
2584 outChars[j + 3] = base64[64]; //Pad in ConvertToBase64Array()
2590 outChars[j + 2] = base64[64]; //Pad in ConvertToBase64Array()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/CoreLib/System/
H A DConvert.cs2497 fixed (char* outChars = &outArray[offsetOut]) in ToBase64CharArray()
2556 outChars[j++] = '\r'; in ConvertToBase64Array()
2557 outChars[j++] = '\n'; in ConvertToBase64Array()
2562 outChars[j] = base64[(inData[i] & 0xfc) >> 2]; in ConvertToBase64Array()
2565 outChars[j + 3] = base64[(inData[i + 2] & 0x3f)]; in ConvertToBase64Array()
2574 outChars[j++] = '\r'; in ConvertToBase64Array()
2575 outChars[j++] = '\n'; in ConvertToBase64Array()
2581 outChars[j] = base64[(inData[i] & 0xfc) >> 2]; in ConvertToBase64Array()
2584 outChars[j + 3] = base64[64]; //Pad in ConvertToBase64Array()
2590 outChars[j + 2] = base64[64]; //Pad in ConvertToBase64Array()
[all …]

1234