/external/valgrind/main/VEX/test/ |
fpucw.c | 4 void fldcw_default ( void ) 9 void fldcw_exns ( void ) 14 void fldcw_precision ( void ) 19 void fldcw_rounding ( void ) 24 int main ( void )
|
mxcsr.c | 4 void mxcsr_default ( void ) 9 void mxcsr_exns ( void ) 15 void mxcsr_daz ( void ) 20 void mxcsr_fz ( void ) 26 int main ( void )
|
/external/wpa_supplicant_8/src/crypto/ |
random.h | 20 void random_init(const char *entropy_file); 21 void random_deinit(void); 22 void random_add_randomness(const void *buf, size_t len); 23 int random_get_bytes(void *buf, size_t len); 24 int random_pool_ready(void); 25 void random_mark_pool_ready(void);
|
/external/clang/test/SemaCXX/ |
static-cast.cpp | 22 void t_529_2() 25 (void)static_cast<float>(i); 27 (void)static_cast<float>(d); 28 (void)static_cast<int>(d); 29 (void)static_cast<char>(i); 30 (void)static_cast<unsigned long>(i); 31 (void)static_cast<int>(En1); 32 (void)static_cast<double>(En1); 33 (void)static_cast<int&>(i); 34 (void)static_cast<const int&>(i) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/misc/ |
TestDictionary.h | 17 - (void) test01add; 18 - (void) test02add; 19 - (void) test03add; 20 - (void) test04removefromLo; 21 - (void) test05removefromHi;
|
/external/clang/test/CXX/class.access/class.friend/ |
p11.cpp | 5 void foo() { 6 void bar(); 8 friend void bar(); 14 void foo() { 16 friend void bar(); // expected-error {{no matching function found in local scope}}
|
/external/clang/test/CXX/except/except.spec/ |
p1.cpp | 11 void f() throw() { } 13 void g(int) throw(X) { } 15 void h() throw(X, Y) { } 18 void foo() throw (X, Y) { } 21 void (*fptr)() throw(); 29 void f1() noexcept { } 30 void f2() noexcept (true) { } 31 void f3() noexcept (false) { } 32 void f4() noexcept (1 < 2) { } 35 void foo() noexcept { [all...] |
/external/clang/test/CXX/expr/expr.cast/ |
p4-0x.cpp | 6 void test_lvalue_to_rvalue_drop_cvquals(const X &x, const Y &y, const int &i) { 7 (void)(X&&)x; 8 (void)(int&&)i; 9 (void)(X&&)y; 10 (void)(Y&&)x;
|
/external/clang/test/CodeGen/ |
2002-12-15-StructParameters.c | 5 void *stack; 10 void foo(void*); 11 void bar(compile_stack_type T, unsigned); 13 void test() {
|
2007-09-17-WeakRef.c | 4 extern void B (void); 6 int active (void) 8 static void *const p = __extension__ (void *) &A;
|
2008-09-03-WeakAlias.c | 3 extern void B (void); 5 int active (void) 7 static void *const p = __extension__ (void *) &A;
|
pointer-arithmetic.c | 10 typedef void (*FP)(void); 11 void *f2(void *a, int b) { return a + b; } 12 void *f2_0(void *a, int b) { return &a[b]; } 13 void *f2_1(void *a, int b) { return (a += b); } 14 void *f3(int a, void *b) { return a + b; [all...] |
/external/clang/test/CodeGenCXX/ |
vararg-non-pod.cpp | 9 void vararg(...); 11 // CHECK: define void @_Z4test1X 12 void test(X x) { 13 // CHECK: call void @llvm.trap() 15 // CHECK: ret void
|
virt-thunk-reference.cpp | 3 struct A { int a; virtual void aa(int&); }; 4 struct B { int b; virtual void bb(int&); }; 5 struct C : A,B { virtual void aa(int&), bb(int&); }; 6 void C::aa(int&) {} 7 void C::bb(int&) {}
|
/external/clang/test/CodeGenOpenCL/ |
ptx-calls.cl | 3 void device_function() { 5 // CHECK: define ptx_device void @device_function() 7 __kernel void kernel_function() { 10 // CHECK: define ptx_kernel void @kernel_function() 11 // CHECK: call ptx_device void @device_function()
|
/external/clang/test/Parser/ |
enhanced-proto-1.m | 5 - (void) FOO; 7 - (void) FOO1; 9 - (void) REQ; 14 - (void) FOO2; 16 - (void) FOO3;
|
/external/clang/test/Sema/ |
callingconv.c | 3 void __attribute__((fastcall)) foo(float *a) { 6 void __attribute__((stdcall)) bar(float *a) { 9 void __attribute__((fastcall(1))) baz(float *a) { // expected-error {{attribute takes no arguments}} 12 void __attribute__((fastcall)) test0() { // expected-error {{function with no prototype cannot use fastcall calling convention}} 15 void __attribute__((fastcall)) test1(void) { 18 void __attribute__((fastcall)) test2(int a, ...) { // expected-error {{variadic function cannot use fastcall calling convention}} 21 void __attribute__((cdecl)) ctest0() {} 23 void __attribute__((cdecl(1))) ctest1(float x) {} // expected-error {{attribute takes no arguments}} 25 void (__attribute__((fastcall)) *pfoo)(float*) = foo [all...] |
pointer-subtract-compat.c | 9 void f0(void (*fp)(void)) { 10 int x = fp - fp; // expected-warning{{arithmetic on pointers to the function type 'void (void)' is a GNU extension}}
|
/external/clang/test/SemaObjC/Inputs/ |
arc-system-header.h | 1 static inline void *test0(id x) { 5 static inline void **test1(__strong id* x) { 6 return (void**) x; 50 static inline void *test8(id ptr) { 51 return (__bridge_retain void*) ptr;
|
/external/clang/test/SemaObjC/ |
block-as-object.m | 9 void foo(MyBlock b) { 13 void foo2(id b) { 16 void foo3(void (^block)(void)) {
|
/external/icu4c/test/cintltst/ |
cnumtst.h | 29 static void TestNumberFormat(void); 34 static void TestSpelloutNumberParse(void); 39 static void TestSignificantDigits(void); 44 static void TestSigDigRounding(void); 49 static void TestNumberFormatPadding(void); [all...] |
/external/icu4c/test/intltest/ |
tzfmttst.h | 19 void runIndexedTest(int32_t index, UBool exec, const char*& name, char* par); 21 void TestTimeZoneRoundTrip(void); 22 void TestTimeRoundTrip(void);
|
/external/kernel-headers/original/linux/ |
cdev.h | 14 void cdev_init(struct cdev *, const struct file_operations *); 16 struct cdev *cdev_alloc(void); 18 void cdev_put(struct cdev *p); 22 void cdev_del(struct cdev *); 24 void cd_forget(struct inode *);
|
/external/libxml2/include/libxml/ |
nanohttp.h | 21 XMLPUBFUN void XMLCALL 22 xmlNanoHTTPInit (void); 23 XMLPUBFUN void XMLCALL 24 xmlNanoHTTPCleanup (void); 25 XMLPUBFUN void XMLCALL 31 XMLPUBFUN void * XMLCALL 38 XMLPUBFUN void * XMLCALL 46 XMLPUBFUN void * XMLCALL 49 XMLPUBFUN void * XMLCALL 54 xmlNanoHTTPReturnCode (void *ctx) [all...] |
/external/llvm/test/CodeGen/X86/ |
fold-call-2.ll | 3 @f = external global void ()* ; <void ()**> [#uses=1] 7 load void ()** @f, align 8 ; <void ()*>:0 [#uses=1] 8 tail call void %0( ) nounwind
|