/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
functexcept.h | 48 __throw_bad_exception(void) __attribute__((__noreturn__)); 52 __throw_bad_alloc(void) __attribute__((__noreturn__)); 56 __throw_bad_cast(void) __attribute__((__noreturn__)); 59 __throw_bad_typeid(void) __attribute__((__noreturn__)); 63 __throw_logic_error(const char*) __attribute__((__noreturn__)); 66 __throw_domain_error(const char*) __attribute__((__noreturn__)); 69 __throw_invalid_argument(const char*) __attribute__((__noreturn__)); 72 __throw_length_error(const char*) __attribute__((__noreturn__)); 75 __throw_out_of_range(const char*) __attribute__((__noreturn__)); 78 __throw_runtime_error(const char*) __attribute__((__noreturn__)) [all...] |
/frameworks/rs/driver/runtime/ |
rs_core.c | 5 extern float4 __attribute__((overloadable)) convert_float4(uchar4 c); 15 extern float __attribute__((overloadable)) rsClamp(float v, float l, float h) { 18 extern char __attribute__((overloadable)) rsClamp(char v, char l, char h) { 21 extern uchar __attribute__((overloadable)) rsClamp(uchar v, uchar l, uchar h) { 24 extern short __attribute__((overloadable)) rsClamp(short v, short l, short h) { 27 extern ushort __attribute__((overloadable)) rsClamp(ushort v, ushort l, ushort h) { 30 extern int __attribute__((overloadable)) rsClamp(int v, int l, int h) { 33 extern uint __attribute__((overloadable)) rsClamp(uint v, uint l, uint h) { 37 extern int32_t __attribute__((overloadable)) rsAtomicCas(volatile int32_t *ptr, int32_t expectedValue, int32_t newValue) { 41 extern uint32_t __attribute__((overloadable)) rsAtomicCas(volatile uint32_t *ptr, uint32_t expectedValue, uint32_t newValue) [all...] |
/prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/ |
rs_matrix.rsh | 36 _RS_RUNTIME void __attribute__((overloadable)) 41 _RS_RUNTIME void __attribute__((overloadable)) 46 _RS_RUNTIME void __attribute__((overloadable)) 58 _RS_RUNTIME float __attribute__((overloadable)) 63 _RS_RUNTIME float __attribute__((overloadable)) 68 _RS_RUNTIME float __attribute__((overloadable)) 76 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix4x4 *m); 80 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix3x3 *m); 84 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix2x2 *m); 91 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix4x4 *m, const float *v) [all...] |
/prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/ |
rs_matrix.rsh | 36 _RS_RUNTIME void __attribute__((overloadable)) 41 _RS_RUNTIME void __attribute__((overloadable)) 46 _RS_RUNTIME void __attribute__((overloadable)) 58 _RS_RUNTIME float __attribute__((overloadable)) 63 _RS_RUNTIME float __attribute__((overloadable)) 68 _RS_RUNTIME float __attribute__((overloadable)) 76 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix4x4 *m); 80 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix3x3 *m); 84 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix2x2 *m); 91 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix4x4 *m, const float *v) [all...] |
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/ |
rs_matrix.rsh | 36 _RS_RUNTIME void __attribute__((overloadable)) 41 _RS_RUNTIME void __attribute__((overloadable)) 46 _RS_RUNTIME void __attribute__((overloadable)) 58 _RS_RUNTIME float __attribute__((overloadable)) 63 _RS_RUNTIME float __attribute__((overloadable)) 68 _RS_RUNTIME float __attribute__((overloadable)) 76 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix4x4 *m); 80 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix3x3 *m); 84 extern void __attribute__((overloadable)) rsMatrixLoadIdentity(rs_matrix2x2 *m); 91 extern void __attribute__((overloadable)) rsMatrixLoad(rs_matrix4x4 *m, const float *v) [all...] |
/external/clang/test/CodeGenCXX/ |
attr-used.cpp | 3 // <rdar://problem/8684363>: clang++ not respecting __attribute__((used)) on destructors 6 __attribute__((used)) X0() {} 8 __attribute__((used)) ~X0() {} 11 // PR19743: not emitting __attribute__((used)) inline methods in nested classes. 15 void __attribute__((used)) f() {} 22 void __attribute__((used)) bar() { foo(); }
|
/external/clang/test/Parser/ |
cxx-attributes.cpp | 5 __attribute__ (( __format__(__printf__,2,3) )) = 0; 7 __attribute__ (( __format__(__printf__,2,3) )) {} 11 template <typename S> void X<S>::f() __attribute__((locks_excluded())); // expected-error{{nested name specifier 'X<S>::' for declaration does not refer into a class, class template or class template partial specialization}} \ 17 typedef int __attribute__((__aligned__(A))) T1; 20 typedef int __attribute__((aligned(int(1)))) T1; 21 typedef int __attribute__((aligned(int))) T2; // expected-error {{expected '(' for function-style cast}}
|
/external/clang/test/Sema/ |
attr-print.c | 3 // CHECK: int x __attribute__((aligned(4))); 4 int x __attribute__((aligned(4))); 10 // CHECK: void foo() __attribute__((const)); 11 void foo() __attribute__((const)); 13 // CHECK: void bar() __attribute__((__const)); 14 void bar() __attribute__((__const));
|
/external/clang/test/SemaCXX/ |
attr-regparm.cpp | 6 void __attribute__((regparm(3))) f0(); 7 void __attribute__((regparm(3))) f1(); 8 void __attribute__((regparm(3))) f2(); // expected-note{{previous declaration is here}} 13 void __attribute__((regparm(3))) X0::f1() { } 14 void __attribute__((regparm(2))) X0::f2() { } // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}} 15 void __attribute__((regparm(2))) X0::f3() { } // expected-error{{function declared with regparm(2) attribute was previously declared without the regparm attribute}}
|
/external/clang/test/CodeGen/ |
attr-used.c | 7 int g0 __attribute__((used)); 9 static void __attribute__((used)) f0(void) { 13 static int l0 __attribute__((used)) = 5225;
|
2007-03-26-BitfieldAfterZeroWidth.c | 6 } __attribute__ ((packed)) y;
|
/external/clang/test/SemaObjCXX/ |
arc-memfunc.mm | 5 static id makeObject1() __attribute__((ns_returns_retained)); 6 id makeObject2() __attribute__((ns_returns_retained)); 13 id (X0::*pmf)() __attribute__((ns_returns_retained)) = &X0::makeObject2;
|
/external/clang/test/SemaOpenCL/ |
vector_inc_dec_ops.cl | 4 typedef __attribute__((ext_vector_type(2))) char char2; 5 typedef __attribute__((ext_vector_type(4))) unsigned int uint4; 6 typedef __attribute__((ext_vector_type(8))) long long8;
|
/external/compiler-rt/lib/profile/ |
InstrProfilingPlatformDarwin.c | 14 __attribute__((visibility("hidden"))) 16 __attribute__((visibility("hidden"))) 18 __attribute__((visibility("hidden"))) 20 __attribute__((visibility("hidden"))) 22 __attribute__((visibility("hidden"))) 24 __attribute__((visibility("hidden"))) 27 __attribute__((visibility("hidden"))) 31 __attribute__((visibility("hidden"))) 35 __attribute__((visibility("hidden"))) 37 __attribute__((visibility("hidden")) [all...] |
/external/fio/compiler/ |
compiler.h | 19 #define fio_unused __attribute__((__unused__)) 20 #define fio_init __attribute__((constructor)) 21 #define fio_exit __attribute__((destructor))
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
linkage_32.h | 15 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 16 #define FASTCALL(x) x __attribute__((regparm(3))) 17 #define fastcall __attribute__((regparm(3)))
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
linkage_32.h | 15 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 16 #define FASTCALL(x) x __attribute__((regparm(3))) 17 #define fastcall __attribute__((regparm(3)))
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
linkage_32.h | 15 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 16 #define FASTCALL(x) x __attribute__((regparm(3))) 17 #define fastcall __attribute__((regparm(3)))
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
linkage_32.h | 15 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 16 #define FASTCALL(x) x __attribute__((regparm(3))) 17 #define fastcall __attribute__((regparm(3)))
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
linkage_32.h | 15 #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 16 #define FASTCALL(x) x __attribute__((regparm(3))) 17 #define fastcall __attribute__((regparm(3)))
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestMax.rs | 24 float __attribute__((kernel)) testMaxFloatFloatFloat(float in, unsigned int x) { 29 float2 __attribute__((kernel)) testMaxFloat2Float2Float2(float2 in, unsigned int x) { 34 float3 __attribute__((kernel)) testMaxFloat3Float3Float3(float3 in, unsigned int x) { 39 float4 __attribute__((kernel)) testMaxFloat4Float4Float4(float4 in, unsigned int x) { 45 char __attribute__((kernel)) testMaxCharCharChar(char inV1, unsigned int x) { 50 char2 __attribute__((kernel)) testMaxChar2Char2Char2(char2 inV1, unsigned int x) { 55 char3 __attribute__((kernel)) testMaxChar3Char3Char3(char3 inV1, unsigned int x) { 60 char4 __attribute__((kernel)) testMaxChar4Char4Char4(char4 inV1, unsigned int x) { 65 uchar __attribute__((kernel)) testMaxUcharUcharUchar(uchar inV1, unsigned int x) { 70 uchar2 __attribute__((kernel)) testMaxUchar2Uchar2Uchar2(uchar2 inV1, unsigned int x) [all...] |
TestMin.rs | 24 float __attribute__((kernel)) testMinFloatFloatFloat(float in, unsigned int x) { 29 float2 __attribute__((kernel)) testMinFloat2Float2Float2(float2 in, unsigned int x) { 34 float3 __attribute__((kernel)) testMinFloat3Float3Float3(float3 in, unsigned int x) { 39 float4 __attribute__((kernel)) testMinFloat4Float4Float4(float4 in, unsigned int x) { 45 char __attribute__((kernel)) testMinCharCharChar(char inV1, unsigned int x) { 50 char2 __attribute__((kernel)) testMinChar2Char2Char2(char2 inV1, unsigned int x) { 55 char3 __attribute__((kernel)) testMinChar3Char3Char3(char3 inV1, unsigned int x) { 60 char4 __attribute__((kernel)) testMinChar4Char4Char4(char4 inV1, unsigned int x) { 65 uchar __attribute__((kernel)) testMinUcharUcharUchar(uchar inV1, unsigned int x) { 70 uchar2 __attribute__((kernel)) testMinUchar2Uchar2Uchar2(uchar2 inV1, unsigned int x) [all...] |
/external/bluetooth/bluedroid/osi/include/ |
osi.h | 6 #define UNUSED_ATTR __attribute__((unused))
|
/external/clang/test/ASTMerge/Inputs/ |
function1.c | 6 int f5(int) __attribute__((const));
|
function2.c | 7 int f5(int) __attribute__((const));
|