/toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/ |
attr-merge-vfp-2.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
attr-merge-vfp-2r.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
attr-merge-vfp-4.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
attr-merge-vfp-4r.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
attr-merge-vfp-5.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
attr-merge-vfp-5r.d | 7 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
eabi-hard-float.d | 6 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
eabi-soft-float-ABI4.d | 6 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
eabi-soft-float-r.d | 6 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
eabi-soft-float.d | 6 # not-target: *-*-*coff *-*-pe *-*-wince *-*-*aout* *-*-netbsd *-*-riscix*
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
warn1.d | 4 #target: cris-*-*elf* cris-*-*aout*
|
warn2.d | 4 #target: cris-*-*elf* cris-*-*aout*
|
warn4.d | 4 #target: cris-*-*elf* cris-*-*aout*
|
/toolchain/binutils/binutils-2.25/bfd/ |
libaout.h | 31 /* Macros for accessing components in an aout header. */ 356 /* Used on Linux, 386BSD, etc. See include/aout/aout64.h. */ 474 extern bfd_boolean NAME (aout, squirt_out_relocs) 477 extern bfd_boolean NAME (aout, make_sections) 480 extern const bfd_target * NAME (aout, some_aout_object_p) 483 extern bfd_boolean NAME (aout, mkobject) 486 extern enum machine_type NAME (aout, machine_type) 489 extern bfd_boolean NAME (aout, set_arch_mach) 492 extern bfd_boolean NAME (aout, new_section_hook) 495 extern bfd_boolean NAME (aout, set_section_contents [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicColorMatrix.java | 199 * aout. 202 * @param aout Output allocation 204 public void forEach(Allocation ain, Allocation aout) { 205 forEach(0, ain, aout, null); 221 * @param aout Output allocation 224 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { 237 if (!aout.getElement().isCompatible(Element.U8(mRS)) && 238 !aout.getElement().isCompatible(Element.U8_2(mRS)) && 239 !aout.getElement().isCompatible(Element.U8_3(mRS)) && 240 !aout.getElement().isCompatible(Element.U8_4(mRS)) & [all...] |
Script.java | 39 * e.g. foreach(ain, aout), setVar(ain); 242 * @param aout 245 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { 246 if (ain == null && aout == null) { 248 "At least one of ain or aout is required to be non-null."); 255 if (aout != null) { 256 out_id = aout.getID(mRS); 266 long aoutInc = getDummyAlloc(aout); 278 * @param aout 282 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) [all...] |
ScriptIntrinsicResize.java | 94 * @param aout Output allocation. Element type must match 97 public void forEach_bicubic(Allocation aout) { 98 if (aout == mInput) { 101 forEach_bicubic(aout, null); 109 * @param aout Output allocation. Element type must match 113 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) { 114 forEach(0, (Allocation) null, aout, null, opt);
|
/frameworks/compile/slang/tests/P_reduce_general_examples_explicit/ |
ScriptC_reduce_general_examples_explicit.java.expect | 190 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 191 aout.setAutoPadding(true); 192 reduce(mExportReduceIdx_addint_init, new Allocation[]{ain1}, aout, sc); 193 return new result_int(aout); 223 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 224 aout.setAutoPadding(true); 225 reduce(mExportReduceIdx_addint_comb, new Allocation[]{ain1}, aout, sc); 226 return new result_int(aout); 256 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 257 aout.setAutoPadding(true) [all...] |
/frameworks/rs/tests/latency/ |
latency.cpp | 71 sp<Allocation> aout = Allocation::createTyped(rs, t); local 80 sc->forEach_root(ain, aout); 95 sc->forEach_root(ain, aout); 96 aout->copy1DTo(buf); 110 aout.clear();
|
/frameworks/compile/slang/tests/P_reduce_general_inputs/ |
ScriptC_reduce_general_inputs.java.expect | 178 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 179 aout.setAutoPadding(true); 180 reduce(mExportReduceIdx_my_half_half_0, new Allocation[]{ain1, ain2}, aout, sc); 181 return new result_int(aout); 242 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 243 aout.setAutoPadding(true); 244 reduce(mExportReduceIdx_my_half_half_1, new Allocation[]{ain1, ain2}, aout, sc); 245 return new result_int(aout); 310 Allocation aout = Allocation.createSized(mRSLocal, __I32, 1); 311 aout.setAutoPadding(true) [all...] |
/frameworks/base/rs/java/android/renderscript/ |
ScriptIntrinsicResize.java | 84 * @param aout Output allocation. Element type must match 87 public void forEach_bicubic(Allocation aout) { 88 if (aout == mInput) { 91 forEach_bicubic(aout, null); 99 * @param aout Output allocation. Element type must match 103 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) { 104 forEach(0, (Allocation) null, aout, null, opt);
|
ScriptIntrinsicBlur.java | 84 * @param aout Output allocation. Must match creation element 87 public void forEach(Allocation aout) { 88 forEach(0, (Allocation) null, aout, null); 95 * @param aout Output allocation. Must match creation element 99 public void forEach(Allocation aout, Script.LaunchOptions opt) { 100 forEach(0, (Allocation) null, aout, null, opt);
|
ScriptIntrinsicConvolve3x3.java | 104 * @param aout Output allocation. Must match creation element 107 public void forEach(Allocation aout) { 108 forEach(0, (Allocation) null, aout, null); 115 * @param aout Output allocation. Must match creation element 119 public void forEach(Allocation aout, Script.LaunchOptions opt) { 120 forEach(0, (Allocation) null, aout, null, opt);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsic.cpp | 77 uint32_t inLen, Allocation * aout, 83 uint32_t inLen, Allocation * aout, 91 Allocation * aout, 98 preLaunch(slot, ains, inLen, aout, usr, usrLen, sc); 100 if (forEachMtlsSetup(ains, inLen, aout, usr, usrLen, sc, &mtls)) { 108 mCtx->launchForEach(ains, inLen, aout, sc, &mtls); 112 postLaunch(slot, ains, inLen, aout, usr, usrLen, sc);
|
/toolchain/binutils/binutils-2.25/gas/ |
configure.tgt | 133 arm-*-aout) fmt=aout ;; 145 arm-*-linux*aout*) fmt=aout em=linux ;; 152 arm-*-*n*bsd*) fmt=aout em=nbsd ;; 158 arm-*-riscix*) fmt=aout em=riscix ;; 210 i386-sequent-bsd*) fmt=aout em=dynix ;; 216 i386-*-bsd*) fmt=aout em=386bsd ;; 221 i386-*-netbsd0.8) fmt=aout em=386bsd ;; 229 *) fmt=aout em=nbsd ; [all...] |