Searched refs:fout (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
H A Dvignette_approx_f.rsh53 float4 fout;
54 fout.rgb = in.rgb * lumen;
55 fout.w = in.w;
56 return fout;
H A Dvignette_f.rsh53 float4 fout;
54 fout.rgb = in.rgb * lumen;
55 fout.w = in.w;
H A Dfisheye_approx_f.rsh58 const float4 fout = rsSample(in_alloc, sampler, new_coord);
59 return fout;
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A Dvignette.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dvignette_approx.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dfisheye.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
H A Dfisheye_approx.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A Dvignette.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dvignette_approx.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dfisheye.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
H A Dfisheye_approx.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
/frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
H A Dvignette.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dvignette_approx.rsh54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
H A Dfisheye.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
H A Dfisheye_approx.rsh55 const float4 fout = rsSample(in_alloc, sampler, new_coord);
56 return rsPackColorTo8888(fout);
/frameworks/base/cmds/idmap/
H A Dscan.cpp43 FILE* fout = fopen(filename, "a"); local
44 if (fout == NULL) {
48 if (TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_EX)) != 0) {
49 fclose(fout);
53 if (TEMP_FAILURE_RETRY(ftruncate(fileno(fout), 0)) != 0) {
54 TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_UN));
55 fclose(fout);
61 fprintf(fout, "%s %s\n", overlay.apk_path.string(), overlay.idmap_path.string());
64 TEMP_FAILURE_RETRY(fflush(fout));
65 TEMP_FAILURE_RETRY(flock(fileno(fout), LOCK_U
[all...]
/frameworks/base/packages/SystemUI/scripts/
H A Dnew_merge.py136 fout = open(outFile, "w")
144 fout.write(line.replace(replace, withText))
146 fout.write(line)
148 fout.close()
/frameworks/base/services/core/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java55 void dump(FileDescriptor fd, PrintWriter fout, String[] args, int userId); argument
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustManagerService.java859 protected void dump(FileDescriptor fd, final PrintWriter fout, String[] args) {
860 if (!DumpUtils.checkDumpPermission(mContext, TAG, fout)) return;
862 fout.println("disabled because the system is in safe mode.");
866 fout.println("disabled because the third-party apps can't run yet.");
873 fout.println("Trust manager state:");
875 dumpUser(fout, user, user.id == mCurrentUser);
881 private void dumpUser(PrintWriter fout, UserInfo user, boolean isCurrent) {
882 fout.printf(" User \"%s\" (id=%d, flags=%#x)",
885 fout.println("(managed profile)");
886 fout
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkPolicyManagerService.java2577 final IndentingPrintWriter fout = new IndentingPrintWriter(writer, " ");
2593 fout.println("Cleared snooze timestamps");
2597 fout.print("System ready: "); fout.println(mSystemReady);
2598 fout.print("Restrict background: "); fout.println(mRestrictBackground);
2599 fout.print("Restrict power: "); fout.println(mRestrictPower);
2600 fout.print("Device idle: "); fout
4171 dumpUL(IndentingPrintWriter fout) argument
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DCountryDetectorService.java211 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
212 if (!DumpUtils.checkDumpPermission(mContext, TAG, fout)) return;
215 final Printer p = new PrintWriterPrinter(fout);
/frameworks/base/core/java/android/os/
H A DBinder.java499 FileOutputStream fout = new FileOutputStream(fd);
500 PrintWriter pw = new FastPrintWriter(fout);
535 final FileOutputStream fout = new FileOutputStream(fd);
536 final PrintWriter pw = new FastPrintWriter(fout);
553 * @param fout The file to which you should dump your state. This will be
557 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
586 FileOutputStream fout = new FileOutputStream(err != null ? err : out);
587 PrintWriter pw = new FastPrintWriter(fout);
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodWrapper.java209 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
217 fout.println("Permission Denial: can't dump InputMethodManager from from pid="
225 fd, fout, args, latch));
228 fout.println("Timeout waiting for dump");
231 fout.println("Interrupted waiting for dump");
H A DAbstractInputMethodService.java198 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBlur.cpp325 float4 *fout = (float4 *)buf; local
329 OneVFU4(fout, pi, stride, cp->mFp, cp->mIradius * 2 + 1, 0, info->dim.x);
333 OneVU4(info, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
334 fout++;
391 float *fout = (float *)buf; local
395 OneVFU1(fout, pi, stride, cp->mFp, cp->mIradius * 2 + 1, 0, info->dim.x);
399 OneVU1(info, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
400 fout++;

Completed in 635 milliseconds

12