Searched refs:out (Results 1 - 25 of 185) sorted by relevance

12345678

/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DMatrixUtils.h63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6];
73 out[2][1] = in[7];
74 out[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
H A DImageUtils.h56 * out: Resulting image (note must be preallocated before
62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
70 * out: Resulting image (note must be preallocated before
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height);
114 static ImageType *imageTypeToRowPointers(ImageType out, int width, int height);
H A DtrsMatrix.cpp79 void inv33d(const double m[3][3], double out[3][3]) argument
83 out[0][0] = (m[1][1]*m[2][2] - m[1][2]*m[2][1]) / det;
84 out[1][0] = (m[1][2]*m[2][0] - m[1][0]*m[2][2]) / det;
85 out[2][0] = (m[1][0]*m[2][1] - m[1][1]*m[2][0]) / det;
87 out[0][1] = (m[0][2]*m[2][1] - m[0][1]*m[2][2]) / det;
88 out[1][1] = (m[0][0]*m[2][2] - m[0][2]*m[2][0]) / det;
89 out[2][1] = (m[0][1]*m[2][0] - m[0][0]*m[2][1]) / det;
91 out[0][2] = (m[0][1]*m[1][2] - m[0][2]*m[1][1]) / det;
92 out[1][2] = (m[0][2]*m[1][0] - m[0][0]*m[1][2]) / det;
93 out[
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DMatrixUtils.h63 static void convert9to33(double out[3][3], double in[9]) { argument
64 out[0][0] = in[0];
65 out[0][1] = in[1];
66 out[0][2] = in[2];
68 out[1][0] = in[3];
69 out[1][1] = in[4];
70 out[1][2] = in[5];
72 out[2][0] = in[6];
73 out[2][1] = in[7];
74 out[
121 convert33to9(double out[9], double in[3][3]) argument
[all...]
H A DImageUtils.h56 * out: Resulting image (note must be preallocated before
62 static void rgb2yvu(ImageType out, ImageType in, int width, int height);
64 static void rgba2yvu(ImageType out, ImageType in, int width, int height);
70 * out: Resulting image (note must be preallocated before
76 static void yvu2rgb(ImageType out, ImageType in, int width, int height);
77 static void yvu2bgr(ImageType out, ImageType in, int width, int height);
92 static ImageType rgb2gray(ImageType out, ImageType in, int width, int height);
114 static ImageType *imageTypeToRowPointers(ImageType out, int width, int height);
H A DtrsMatrix.cpp79 void inv33d(const double m[3][3], double out[3][3]) argument
83 out[0][0] = (m[1][1]*m[2][2] - m[1][2]*m[2][1]) / det;
84 out[1][0] = (m[1][2]*m[2][0] - m[1][0]*m[2][2]) / det;
85 out[2][0] = (m[1][0]*m[2][1] - m[1][1]*m[2][0]) / det;
87 out[0][1] = (m[0][2]*m[2][1] - m[0][1]*m[2][2]) / det;
88 out[1][1] = (m[0][0]*m[2][2] - m[0][2]*m[2][0]) / det;
89 out[2][1] = (m[0][1]*m[2][0] - m[0][0]*m[2][1]) / det;
91 out[0][2] = (m[0][1]*m[1][2] - m[0][2]*m[1][1]) / det;
92 out[1][2] = (m[0][2]*m[1][0] - m[0][0]*m[1][2]) / det;
93 out[
[all...]
/packages/apps/Email/src/org/apache/commons/io/output/
H A DCloseShieldOutputStream.java37 * @param out underlying output stream
39 public CloseShieldOutputStream(OutputStream out) { argument
40 super(out);
49 out = new ClosedOutputStream();
H A DProxyOutputStream.java41 // the proxy is stored in a protected superclass variable named 'out'
50 out.write(idx);
59 out.write(bts);
70 out.write(bts, st, end);
78 out.flush();
86 out.close();
H A DProxyWriter.java43 // the proxy is stored in a protected superclass variable named 'out'
52 out.write(idx);
61 out.write(chr);
72 out.write(chr, st, end);
81 out.write(str);
92 out.write(str, st, end);
100 out.flush();
108 out.close();
/packages/apps/Email/src/org/apache/james/mime4j/message/
H A DBodyPart.java38 public void writeTo(OutputStream out) throws IOException { argument
39 getHeader().writeTo(out);
40 getBody().writeTo(out);
H A DMemoryBinaryBody.java29 //BEGIN android-changed: Stubbing out logging
59 ByteArrayOutputStream out = new ByteArrayOutputStream();
60 IOUtils.copy(is, out);
61 out.close();
62 tempFile = out.toByteArray();
89 public void writeTo(OutputStream out) throws IOException { argument
90 IOUtils.copy(getInputStream(),out);
H A DTempFileBinaryBody.java27 //BEGIN android-changed: Stubbing out logging
59 OutputStream out = tempFile.getOutputStream();
60 IOUtils.copy(is, out);
61 out.close();
88 public void writeTo(OutputStream out) throws IOException { argument
89 IOUtils.copy(getInputStream(),out);
H A DMemoryTextBody.java32 //BEGIN android-changed: Stubbing out logging
64 ByteArrayOutputStream out = new ByteArrayOutputStream();
65 IOUtils.copy(is, out);
66 out.close();
67 tempFile = out.toByteArray();
115 public void writeTo(OutputStream out) throws IOException { argument
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
/packages/apps/Launcher2/
H A Dprint_db.py50 def print_intent(out, id, i, cell):
52 out.write("""<span class="intent" title="%s">shortcut</span>""" % (
57 def print_icon(out, id, i, cell):
60 out.write("""<img src="%s">""" % ( icon_fn ))
65 def print_cell(out, id, i, cell):
67 out.write(cgi.escape(str(cell)))
74 def render_cell_info(out, cell, occupied):
76 out.write(" <td width=%d height=%d></td>\n" %
90 out.write((" <td colspan=%d rowspan=%d width=%d height=%d"
97 out
[all...]
/packages/apps/Email/src/com/beetstra/jutf7/
H A DUTF7StyleCharsetEncoder.java102 * @param out The output byte buffer
105 protected CoderResult implFlush(ByteBuffer out) { argument
107 if (out.remaining() < 2)
110 out.put(base64.getChar(sextet));
111 out.put(unshift);
141 * @param out The output byte buffer
144 protected CoderResult encodeLoop(CharBuffer in, ByteBuffer out) { argument
146 if (out.remaining() < 4)
150 unshift(out, ch);
151 out
180 unshift(ByteBuffer out, char ch) argument
203 encodeBase64(char ch, ByteBuffer out) argument
[all...]
H A DUTF7StyleCharsetDecoder.java64 protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) { argument
72 if (!out.hasRemaining())
74 out.put((char)shift);
79 if (!out.hasRemaining())
81 CoderResult result = handleBase64(in, out, b);
94 if (!out.hasRemaining())
96 out.put((char)b);
115 * @param out The output buffer
120 private CoderResult handleBase64(ByteBuffer in, CharBuffer out, byte lastRead) { argument
130 out
148 implFlush(CharBuffer out) argument
[all...]
/packages/apps/Email/src/com/android/email/mail/internet/
H A DEmailHtmlUtil.java39 StringBuilder out = new StringBuilder();
43 out.append(text.substring(end, start));
49 out.append("&nbsp;");
51 out.append(' ');
53 out.append("<br>");
55 out.append("&lt;");
57 out.append("&gt;");
59 out.append("&amp;");
62 out.append(text.substring(end));
63 text = out
[all...]
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
H A DDomainList.java67 StringBuffer out = new StringBuffer();
69 out.append("@");
70 out.append(get(i));
72 out.append(",");
74 return out.toString();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java28 public OrderedDataOutputStream(OutputStream out) { argument
29 super(out);
39 out.write(mByteBuffer.array(), 0, 2);
45 out.write(mByteBuffer.array());
/packages/apps/Email/src/com/android/email/mail/transport/
H A DEOLConvertingOutputStream.java26 public EOLConvertingOutputStream(OutputStream out) { argument
27 super(out);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DFileTransforms.java25 public static OutputStream getCryptedStream(OutputStream out) { argument
27 return out;
/packages/apps/Camera/tests/src/com/android/camera/stress/
H A DCameraLatency.java122 BufferedWriter out = new BufferedWriter(fstream);
123 out.write("Camera Latency : \n");
124 out.write("Number of loop: " + TOTAL_NUMBER_OF_IMAGECAPTURE + "\n");
125 out.write("Avg AutoFocus = " + mAvgAutoFocusTime + "\n");
126 out.write("Avg mShutterLag = " + mAvgShutterLag + "\n");
127 out.write("Avg mShutterToPictureDisplayedTime = "
129 out.write("Avg mPictureDisplayedToJpegCallbackTime = "
131 out.write("Avg mJpegCallbackFinishTime = " +
133 out.close();
/packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
H A DCameraLatency.java112 BufferedWriter out = new BufferedWriter(fstream);
113 out.write("Camera Latency : \n");
114 out.write("Number of loop: " + TOTAL_NUMBER_OF_IMAGECAPTURE + "\n");
115 out.write("Avg AutoFocus = " + mAvgAutoFocusTime + "\n");
116 out.write("Avg mShutterLag = " + mAvgShutterLag + "\n");
117 out.write("Avg mShutterToPictureDisplayedTime = "
119 out.write("Avg mPictureDisplayedToJpegCallbackTime = "
121 out.write("Avg mJpegCallbackFinishTime = " +
123 out.close();
/packages/apps/Calculator/src/com/android/calculator2/
H A DPersist.java72 DataOutputStream out = new DataOutputStream(os);
73 out.writeInt(LAST_VERSION);
74 out.writeInt(mDeleteMode);
75 history.write(out);
76 out.close();
H A DHistoryEntry.java43 void write(DataOutput out) throws IOException { argument
44 out.writeUTF(mBase);
45 out.writeUTF(mEdited);

Completed in 404 milliseconds

12345678