Searched refs:nch (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvMxN_ext.c92 mlib_s32 nch);
97 mlib_s32 nch);
102 mlib_s32 nch,
129 mlib_s32 nch)
134 for (j = 0; j < m; j += 3, src += 3 * nch, dkernel += 3) {
135 const mlib_s32 *src2 = src + 2 * nch;
140 mlib_d64 val1 = src[nch];
156 mlib_d64 val2 = src2[i * nch];
173 mlib_s32 nch)
185 dst[i * nch]
124 mlib_ImageConvMxNMulAdd_S32(mlib_d64 *dst, const mlib_s32 *src, const mlib_d64 *dkernel, mlib_s32 n, mlib_s32 m, mlib_s32 nch) argument
170 mlib_ImageConvMxNMedian_S32(mlib_s32 *dst, mlib_d64 *src, mlib_s32 n, mlib_s32 nch) argument
190 mlib_ImageConvMxNS322S32_ext(mlib_s32 *dst, const mlib_s32 *src, mlib_s32 n, mlib_s32 nch, mlib_s32 dx_l, mlib_s32 dx_r) argument
236 mlib_s32 nch = mlib_ImageGetChannels(dst); local
[all...]
H A Dmlib_ImageConvMxN_Fp.c86 mlib_s32 nch,
92 mlib_s32 nch,
101 mlib_s32 nch,
107 mlib_s32 nch,
120 mlib_s32 nch,
130 mlib_s32 nch,
162 mlib_s32 nch,
168 for (j = 0; j < m - 2; j += 3, src += 3 * nch, kernel += 3) {
169 const mlib_f32 *src2 = src + 2 * nch;
174 mlib_f32 val1 = src[nch];
157 mlib_ImageConvMxNMulAdd_F32(mlib_f32 *dst, const mlib_f32 *src, const mlib_d64 *kernel, mlib_s32 n, mlib_s32 m, mlib_s32 nch, mlib_s32 dnch) argument
241 mlib_ImageConvMxNF322F32_ext(mlib_f32 *dst, const mlib_f32 *src, mlib_s32 n, mlib_s32 nch, mlib_s32 dx_l, mlib_s32 dx_r) argument
284 mlib_s32 nch = mlib_ImageGetChannels(dst); local
544 mlib_ImageConvMxNMulAdd_D64(mlib_d64 *dst, const mlib_d64 *src, const mlib_d64 *kernel, mlib_s32 n, mlib_s32 m, mlib_s32 nch, mlib_s32 dnch) argument
629 mlib_ImageConvMxND642D64_ext(mlib_d64 *dst, const mlib_d64 *src, mlib_s32 n, mlib_s32 nch, mlib_s32 dx_l, mlib_s32 dx_r) argument
671 mlib_s32 nch = mlib_ImageGetChannels(dst); local
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java153 int nch = text[pos];
154 if (nch >= TAIL_START && nch < TAIL_LIMIT) {
156 ch = (ch << LEAD_SURROGATE_SHIFT) + nch + SURROGATE_OFFSET;
H A DScriptRun.java251 int nch = text[scriptLimit];
252 if (nch >= TAIL_START && nch < TAIL_LIMIT) {
254 ch = (ch << LEAD_SURROGATE_SHIFT) + nch + SURROGATE_OFFSET;
/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js156 var nch;
157 while ((nch = inp.read(buff, 0, buff.length)) != -1) {
159 new java.lang.String(buff, 0, nch), null);
160 progress.setValue(progress.getValue() + nch);
190 var nch;
191 while ((nch = inp.read(buff, 0, buff.length)) != -1) {
193 new java.lang.String(buff, 0, nch), null);
194 progress.setValue(progress.getValue() + nch);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultEditorKit.java203 int nch;
216 while ((nch = in.read(buff, 0, buff.length)) != -1) {
218 for(int counter = 0; counter < nch; counter++) {
264 if (last < nch) {
266 if (last < (nch - 1)) {
268 nch - last - 1), attr);
269 pos += (nch - last - 1);
274 nch - last), attr);
275 pos += (nch - last);
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java755 int nch;
756 while ((nch = in.read(buff, 0, buff.length)) != -1) {
757 doc.insertString(doc.getLength(), new String(buff, 0, nch),
759 progress.setValue(progress.getValue() + nch);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextUI.java2293 int nch;
2300 while ((nch = in.read(buff, 0, buff.length)) != -1) {
2302 sbuff = new StringBuffer(nch);
2305 for(int counter = 0; counter < nch; counter++) {
2341 if (last < nch) {
2343 if (last < (nch - 1)) {
2344 sbuff.append(buff, last, nch - last - 1);
2347 sbuff.append(buff, last, nch - last);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java776 protected final void append(StringBuffer message, int value, int nch) { argument
785 if (nch == 4) {
794 } else if (nch == 2) {

Completed in 422 milliseconds