Home | History | Annotate | Download | only in text

Lines Matching full:neon

663 >    (a.k.a. NEON) GCC intrinsics in your C and C++ sources, as well as
664 > NEON instructions in Assembly files.
668 > based CPUs support the NEON instruction set extensions and that you
671 > [CPU-ARM-NEON](CPU-ARM-NEON.html) and [CPU-FEATURES](CPU-FEATURES.html).
674 > may be compiled with NEON support by using the '`.neon`' suffix, as
677 LOCAL_SRC_FILES = foo.c.neon bar.c zoo.c.arm.neon
679 > In this example, '`foo.c`' will be compiled in thumb+neon mode,
681 > compiled in 'arm+neon' mode.
683 > Note that the '`.neon`' suffix must appear after the '`.arm`' suffix
684 > if you use both (i.e. `foo.c.arm.neon` works, but not `foo.c.neon.arm` !)