Searched refs:out (Results 426 - 450 of 484) sorted by path

<<11121314151617181920

/frameworks/native/opengl/tools/glgen/src/
H A DGenerateGLES.java26 static void copy(String filename, PrintStream out) throws IOException { argument
30 out.println(s);
51 System.out.println("Special-casing function " + fname);
96 new PrintStream(new FileOutputStream("out/" + gl11Filename));
98 new PrintStream(new FileOutputStream("out/" + gl11cFilename));
H A DJniCodeEmitter.java130 public void emitNativeDeclaration(JFunc jfunc, PrintStream out) { argument
132 out.println(" /* @hide C function " + jfunc.getCFunc().getOriginal() + " */");
133 out.println();
135 out.println(" // C function " + jfunc.getCFunc().getOriginal());
136 out.println();
139 emitFunction(jfunc, out, true, false);
142 public void emitJavaInterfaceCode(JFunc jfunc, PrintStream out) { argument
143 emitFunction(jfunc, out, false, true);
146 public void emitJavaCode(JFunc jfunc, PrintStream out) { argument
147 emitFunction(jfunc, out, fals
156 emitFunctionCall(JFunc jfunc, PrintStream out, String iii, boolean grabArray) argument
198 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String iii) argument
204 printIfcheckPostamble(PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
351 emitNativeBoundsChecks(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
429 emitSentinelCheck(CFunc cfunc, String cname, PrintStream out, boolean isBuffer, boolean emitExceptionCheck, String offset, String remaining, String iii) argument
472 emitLocalVariablesForSentinel(CFunc cfunc, PrintStream out) argument
521 emitFunction(JFunc jfunc, PrintStream out, boolean nativeDecl, boolean interfaceDecl) argument
731 emitJniCode(JFunc jfunc, PrintStream out) argument
[all...]
/frameworks/native/services/sensorservice/
H A DSensorService.cpp283 sensors_event_t out; local
285 if (si->process(&out, event[i])) {
286 buffer[count + k] = out;
608 // filter out events not for this connection
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.h261 void dump(String8& out, char* scratch, size_t SIZE) const;
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp229 Region out; local
235 out.orSelf(transform(*it++));
238 out.set(transform(reg.bounds()));
243 out = reg.translate(xpos, ypos);
245 return out;
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java188 * Filter out the ones for events whose BYxxx rule is for
191 * Returns 0 if the event should not be filtered out
297 // Not allowed, filter it out.
309 // if we got to here, we didn't filter it out
314 * Filters out instances that don't match the BYSETPOS clause of a monthly recurrence rule.
369 continue; // out of range
376 continue; // out of range
728 * @param add Whether or not we should add to out, or remove from out.
729 * @param out th
733 expand(Time dtstart, EventRecurrence r, long rangeStartDateValue, long rangeEndDateValue, boolean add, TreeSet<Long> out) argument
[all...]
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DEventRecurrenceTest.java731 System.out.println("Error... got:");
733 System.out.println("expected:");
734 System.out.println("{");
735 System.out.println(" freq=" + freq);
736 System.out.println(" until=" + until);
737 System.out.println(" count=" + count);
738 System.out.println(" interval=" + interval);
739 System.out.println(" wkst=" + wkst);
740 System.out.println(" bysecond=" + Arrays.toString(bysecond));
741 System.out
[all...]
H A DRRuleTest.java46 String[] out = new String[dates.length];
51 out[i] = time.format2445().substring(0, 8); // Just YYMMDD
53 out[i] = time.format2445().substring(0, 15); // YYMMDDThhmmss
57 return out;
118 long[] out = rp.expand(dtstart, recur, rangeStart.toMillis(false /* use isDst */),
126 String[] actual = getFormattedDates(out, outCal, truncate);
H A DRecurrenceProcessorTest.java38 String[] out = new String[dates.length];
42 out[i] = time.format2445();
45 return out;
48 private static void printLists(String[] expected, String[] out) { argument
49 Log.i(TAG, " expected out");
51 for (i = 0; i < expected.length && i < out.length; i++) {
53 + " " + out[i]);
58 for (; i < out.length; i++) {
59 Log.i(TAG, " [" + i + "] " + out[i]);
109 long[] out
[all...]
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java1190 ByteArrayOutputStream out = new ByteArrayOutputStream();
1197 out.write(temp);
1201 out.write(temp);
1209 if (out.size() > 0) {
1210 return out.toByteArray();
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java150 ByteArrayOutputStream out = null;
153 out = new ByteArrayOutputStream();
157 out.write(buffer, 0, n);
161 final byte[] bitmapBytes = out.toByteArray();
185 if (out != null) {
187 out.close();
/frameworks/opt/telephony/src/java/android/telephony/
H A DCellBroadcastMessage.java83 public void writeToParcel(Parcel out, int flags) { argument
84 mSmsCbMessage.writeToParcel(out, flags);
85 out.writeLong(mDeliveryTime);
86 out.writeInt(mIsRead ? 1 : 0);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsUsageMonitor.java510 XmlSerializer out = new FastXmlSerializer();
511 out.setOutput(outfile, "utf-8");
513 out.startDocument(null, true);
515 out.startTag(null, TAG_SMS_POLICY_BODY);
518 out.startTag(null, TAG_PACKAGE);
519 out.attribute(null, ATTR_PACKAGE_NAME, policy.getKey());
520 out.attribute(null, ATTR_PACKAGE_SMS_POLICY, policy.getValue().toString());
521 out.endTag(null, TAG_PACKAGE);
524 out.endTag(null, TAG_SMS_POLICY_BODY);
525 out
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DModelInterpreter.java147 OutputStream out; field in class:ModelInterpreter
167 ModelInterpreter (InputStream in, OutputStream out) argument
170 this.out = out;
214 out = s.getOutputStream();
234 //System.out.println("MI<< " + line);
656 //System.out.println("MI>> " + s);
658 out.write(bytes);
659 out.write('\r');
673 //System.out
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DWap230WspContentTypeTest.java257 ByteArrayOutputStream out = new ByteArrayOutputStream();
258 out.write(0x00);
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
266 ByteArrayOutputStream out = new ByteArrayOutputStream();
267 out.write(testType.getBytes("US-ASCII"));
268 out.write(WSP_STRING_TERMINATOR);
270 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
281 ByteArrayOutputStream out = new ByteArrayOutputStream();
282 out.write(testType.length() + 1);
283 out
[all...]
/frameworks/rs/cpp/
H A DScript.h39 void forEach(uint32_t slot, sp<const Allocation> in, sp<const Allocation> out,
/frameworks/rs/driver/
H A DrsdBcc.cpp76 ALOGE("bcc: FAILS to create compiler context (out of memory)");
82 ALOGE("bcc: FAILS to create compiler driver (out of memory)");
197 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
201 p.out = buf;
211 p.out = mtls->fep.ptrOut + (mtls->fep.yStrideOut * p.y) +
239 //ALOGE("usr ptr in %p, out %p", mtls->fep.ptrIn, mtls->fep.ptrOut);
241 p.out = mtls->fep.ptrOut + (mtls->fep.eStrideOut * xStart);
376 p.out = mtls->fep.ptrOut + (mtls->fep.yStrideOut * offset) +
H A DrsdIntrinsicBlend.cpp101 uchar4 *out = (uchar4 *)p->out; local
107 out += xstart;
111 for (;x1 < x2; x1++, out++) {
112 *out = 0;
116 for (;x1 < x2; x1++, out++, in++) {
117 *out = *in;
127 rsdIntrinsicBlendSrcOver_K(out, in, len);
129 out += len << 3;
133 for (;x1 < x2; x1++, out
[all...]
H A DrsdIntrinsicBlur.cpp92 static void OneV(const RsForEachStubParamStruct *p, float4 *out, int32_t x, int32_t y, argument
107 out->xyzw = blurredPixel;
113 static void OneVF(float4 *out, argument
122 rsdIntrinsicBlurVF_K(out, ptrIn, iStride, gPtr, ct, x1, x1 + t);
139 out->xyzw = blurredPixel;
141 out++;
145 static void OneH(const RsForEachStubParamStruct *p, uchar4 *out, int32_t x, argument
157 out->xyzw = convert_uchar4(blurredPixel);
173 uchar4 *out = (uchar4 *)p->out; local
[all...]
H A DrsdIntrinsicColorMatrix.cpp61 static void One(const RsForEachStubParamStruct *p, uchar4 *out, argument
88 *out = convert_uchar4(sum);
95 uchar4 *out = (uchar4 *)p->out; local
101 out += xstart;
109 rsdIntrinsicColorMatrixDot_K(out, in, cp->ip, len);
111 rsdIntrinsicColorMatrix3x3_K(out, in, cp->ip, len);
114 rsdIntrinsicColorMatrix4x4_K(out, in, cp->ip, len);
117 out += len << 2;
123 One(p, out
[all...]
H A DrsdIntrinsicConvolve3x3.cpp54 static void ConvolveOne(const RsForEachStubParamStruct *p, uint32_t x, uchar4 *out, argument
73 *out = o;
94 uchar4 *out = (uchar4 *)p->out; local
98 ConvolveOne(p, 0, out, py0, py1, py2, cp->fp);
100 out++;
107 rsdIntrinsicConvolve3x3_K(out, &py0[x1-1], &py1[x1-1], &py2[x1-1], cp->ip, len);
109 out += len << 1;
114 ConvolveOne(p, x1, out, py0, py1, py2, cp->fp);
115 out
[all...]
H A DrsdIntrinsicConvolve5x5.cpp52 static void One(const RsForEachStubParamStruct *p, uint32_t x, uchar4 *out, argument
94 *out = o;
124 uchar4 *out = (uchar4 *)p->out; local
129 One(p, x1, out, py0, py1, py2, py3, py4, cp->fp);
130 out++;
137 rsdIntrinsicConvolve5x5_K(out, py0, py1, py2, py3, py4, cp->ip, len);
138 out += len << 1;
144 One(p, x1, out, py0, py1, py2, py3, py4, cp->fp);
145 out
[all...]
H A DrsdIntrinsicLUT.cpp42 uchar4 *out = (uchar4 *)p->out; local
48 out += xstart;
59 *out = o;
61 out++;
H A DrsdIntrinsicYuvToRGB.cpp100 uchar4 *out = (uchar4 *)p->out; local
108 rsdIntrinsicYuv_K(out, Y, uv, len, YuvCoeff);
110 out += len << 3;
118 *out = rsYuvToRGBA_uchar4(Y[x1], u, v);
119 out++;
121 *out = rsYuvToRGBA_uchar4(Y[x1], u, v);
122 out++;
H A DrsdRuntimeStubs.cpp431 Allocation *out) {
433 rsrForEach(rsc, sc, target, in, out, NULL, 0, NULL);
438 Allocation *out,
441 rsrForEach(rsc, sc, target, in, out, usr, 0, NULL);
446 Allocation *out,
450 rsrForEach(rsc, sc, target, in, out, usr, 0, call);
455 Allocation *out,
459 rsrForEach(rsc, sc, target, in, out, usr, usrLen, NULL);
464 Allocation *out,
469 rsrForEach(rsc, sc, target, in, out, us
429 SC_ForEach_SAA(Script *target, Allocation *in, Allocation *out) argument
436 SC_ForEach_SAAU(Script *target, Allocation *in, Allocation *out, const void *usr) argument
444 SC_ForEach_SAAUS(Script *target, Allocation *in, Allocation *out, const void *usr, const RsScriptCall *call) argument
453 SC_ForEach_SAAUL(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen) argument
462 SC_ForEach_SAAULS(Script *target, Allocation *in, Allocation *out, const void *usr, uint32_t usrLen, const RsScriptCall *call) argument
[all...]

Completed in 231 milliseconds

<<11121314151617181920