/external/tensorflow/tensorflow/core/platform/ |
macros.h | 24 #define TF_ATTRIBUTE_NOINLINE __attribute__((noinline))
|
/external/eigen/bench/ |
benchVecAdd.cpp | 17 __attribute__ ((noinline)) void benchVec(Scalar* a, Scalar* b, Scalar* c, int size); 18 __attribute__ ((noinline)) void benchVec(MatrixXf& a, MatrixXf& b, MatrixXf& c); 19 __attribute__ ((noinline)) void benchVec(VectorXf& a, VectorXf& b, VectorXf& c);
|
benchCholesky.cpp | 29 __attribute__ ((noinline)) void benchLLT(const MatrixType& m)
|
/external/llvm/include/llvm/Support/ |
Compiler.h | 185 #if __has_attribute(noinline) || LLVM_GNUC_PREREQ(3, 4, 0) 186 #define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline)) 188 #define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
Compiler.h | 187 #if __has_attribute(noinline) || LLVM_GNUC_PREREQ(3, 4, 0) 188 #define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline)) 190 #define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
|
/external/v8/include/ |
v8config.h | 175 // V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported 193 // V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported 219 # define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline)) 315 # define V8_NOINLINE __attribute__((noinline)) 317 # define V8_NOINLINE __declspec(noinline)
|
/art/benchmark/const-class/src/ |
ConstClassBenchmark.java | [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
Compiler.h | 184 #if __has_attribute(noinline) || LLVM_GNUC_PREREQ(3, 4, 0) 185 #define LLVM_ATTRIBUTE_NOINLINE __attribute__((noinline)) 187 #define LLVM_ATTRIBUTE_NOINLINE __declspec(noinline)
|
/external/u-boot/include/linux/ |
compiler.h | 385 #ifndef noinline 386 #define noinline macro 390 * Rather then using noinline to prevent stack consumption, use 393 #define noinline_for_stack noinline
|
/art/test/497-inlining-and-class-loader/src/ |
Main.java | 90 // before we walk the stack in $noinline$bar. 105 public static void $noinline$bar() {
|
/external/clang/test/CodeGenCXX/ |
optnone-class-members.cpp | 8 // The attribute set shall contain attributes 'noinline' and 'optnone'. 34 __attribute__((noinline)) int noinline_method(int a); 55 // optnone implies noinline; therefore attribute noinline is added to 58 // However 'noinline' wins over 'always_inline' and therefore 59 // the resulting attributes for this method are: noinline + optnone 72 // 'noinline' + 'noinline and optnone' = 'noinline and optnone' 162 // CHECK-NOT: noinline [all...] |
/external/compiler-rt/test/asan/TestCases/Posix/ |
coverage-direct-large.cc | 39 #define DECL(x) __attribute__((noinline)) static void x() {}
|
/external/gemmlowp/internal/ |
common.h | 40 #define GEMMLOWP_NOINLINE __attribute__((noinline))
|
/external/linux-kselftest/tools/testing/selftests/x86/ |
test_FCMOV.c | 17 long double __attribute__((noinline)) insn(long flags) \
|
/external/tensorflow/tensorflow/contrib/compiler/ |
jit_test.py | 143 @function.Defun(compiled=True, noinline=True) 159 @function.Defun(compiled=True, noinline=True) 247 @function.Defun(compiled=True, noinline=True) 274 compiled=True, noinline=True, separate_compiled_gradients=True)
|
/external/u-boot/arch/arm/lib/ |
semihosting.c | 28 static noinline long smh_trap(unsigned int sysnum, void *addr)
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_internal_defs.h | 125 extern "C" SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE NOINLINE 127 extern "C++" SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE NOINLINE 136 # define NOINLINE __declspec(noinline) 149 # define NOINLINE __attribute__((noinline))
|
/external/llvm/bindings/go/llvm/ |
ir_test.go | 69 {NoInlineAttribute, "noinline"},
|
/external/tensorflow/tensorflow/contrib/recurrent/python/ops/ |
recurrent.py | 333 noinline = not compiled 420 *_Dtypes(forward_sig), python_grad_func=Grad, noinline=noinline) 552 @function.Defun(*_Dtypes(backward_sig), noinline=noinline)
|
/external/tensorflow/tensorflow/compiler/tests/ |
jit_test.py | 58 noinline = kwargs.pop("noinline", None) 60 @function.Defun(func_name=name, noinline=noinline, compiled=True) 98 def _compare(self, fn, args, require_kernel_launch=True, noinline=None): 108 compiled_op = CompiledKernel(fn, *placeholders, noinline=noinline) 158 # TODO(b/36139787): Re-enable this test when noinline works again. 159 # Tests compiled=True and noinline=True. 163 # noinline=True [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/ |
7zTypes.h | 110 #define MY_NO_INLINE __declspec(noinline)
|
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
7zTypes.h | 114 #define MY_NO_INLINE __declspec(noinline)
|
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/ |
7zTypes.h | 114 #define MY_NO_INLINE __declspec(noinline)
|
/external/boringssl/src/crypto/ |
mem.c | 94 __attribute((weak, noinline))
|
/external/compiler-rt/test/tsan/ |
unaligned_race.cc | 5 #define NOINLINE __attribute__((noinline)) 21 static NOINLINE void access(volatile char *p, int sz, int rw) { 49 static NOINLINE void access3(bool main, int sz1, bool rw, volatile char *p) { 65 static NOINLINE void 85 static NOINLINE void 105 NOINLINE void Test(bool main) {
|