Home
last modified time | relevance | path

Searched defs:void (Results 1 – 25 of 4927) sorted by relevance

12345678910>>...198

/external/mesa3d/src/glx/tests/
Dindirect_api.cpp61 _glapi_get_dispatch_table_size(void) in _glapi_get_dispatch_table_size() argument
77 void __indirect_glAccum(void) { } in __indirect_glAccum() argument
78 void __indirect_glAlphaFunc(void) { } in __indirect_glAlphaFunc() argument
79 void __indirect_glBegin(void) { } in __indirect_glBegin() argument
80 void __indirect_glBitmap(void) { } in __indirect_glBitmap() argument
81 void __indirect_glBlendFunc(void) { } in __indirect_glBlendFunc() argument
82 void __indirect_glCallList(void) { } in __indirect_glCallList() argument
83 void __indirect_glCallLists(void) { } in __indirect_glCallLists() argument
84 void __indirect_glClear(void) { } in __indirect_glClear() argument
85 void __indirect_glClearAccum(void) { } in __indirect_glClearAccum() argument
[all …]
/external/chromium_org/third_party/mesa/src/src/glx/tests/
Dindirect_api.cpp61 _glapi_get_dispatch_table_size(void) in _glapi_get_dispatch_table_size() argument
77 void __indirect_glAccum(void) { } in __indirect_glAccum() argument
78 void __indirect_glAlphaFunc(void) { } in __indirect_glAlphaFunc() argument
79 void __indirect_glBegin(void) { } in __indirect_glBegin() argument
80 void __indirect_glBitmap(void) { } in __indirect_glBitmap() argument
81 void __indirect_glBlendFunc(void) { } in __indirect_glBlendFunc() argument
82 void __indirect_glCallList(void) { } in __indirect_glCallList() argument
83 void __indirect_glCallLists(void) { } in __indirect_glCallLists() argument
84 void __indirect_glClear(void) { } in __indirect_glClear() argument
85 void __indirect_glClearAccum(void) { } in __indirect_glClearAccum() argument
[all …]
/external/clang/test/Parser/
Dchar-literal-printing.c7 char test1(void) { return '\\'; } in test1() argument
8 wchar_t test2(void) { return L'\\'; } in test2() argument
9 char test3(void) { return '\''; } in test3() argument
10 wchar_t test4(void) { return L'\''; } in test4() argument
11 char test5(void) { return '\a'; } in test5() argument
12 wchar_t test6(void) { return L'\a'; } in test6() argument
13 char test7(void) { return '\b'; } in test7() argument
14 wchar_t test8(void) { return L'\b'; } in test8() argument
15 char test9(void) { return '\e'; } in test9() argument
16 wchar_t test10(void) { return L'\e'; } in test10() argument
[all …]
/external/valgrind/main/VEX/switchback/
Dtest_ppc_jm1.c716 static void test_add (void) in test_add() argument
721 static void test_addo (void) in test_addo() argument
726 static void test_addc (void) in test_addc() argument
731 static void test_addco (void) in test_addco() argument
736 static void test_adde (void) in test_adde() argument
741 static void test_addeo (void) in test_addeo() argument
746 static void test_divw (void) in test_divw() argument
751 static void test_divwo (void) in test_divwo() argument
756 static void test_divwu (void) in test_divwu() argument
761 static void test_divwuo (void) in test_divwuo() argument
[all …]
/external/clang/test/Analysis/
Dpthreadlock.c36 ok1(void) in ok1() argument
42 ok2(void) in ok2() argument
48 ok3(void) in ok3() argument
57 ok4(void) in ok4() argument
66 ok5(void) in ok5() argument
73 ok6(void) in ok6() argument
79 ok7(void) in ok7() argument
86 ok8(void) in ok8() argument
95 ok9(void) in ok9() argument
103 ok10(void) in ok10() argument
[all …]
Didentical-expressions.cpp5 int func(void) in func() argument
10 int func2(void) in func2() argument
23 int checkNotEqualFloatLiteralCompare1(void) { in checkNotEqualFloatLiteralCompare1() argument
27 int checkNotEqualFloatLiteralCompare2(void) { in checkNotEqualFloatLiteralCompare2() argument
31 int checkNotEqualFloatDeclCompare1(void) { in checkNotEqualFloatDeclCompare1() argument
37 int checkNotEqualFloatDeclCompare12(void) { in checkNotEqualFloatDeclCompare12() argument
42 int checkNotEqualFloatDeclCompare3(void) { in checkNotEqualFloatDeclCompare3() argument
47 int checkNotEqualFloatDeclCompare4(void) { in checkNotEqualFloatDeclCompare4() argument
52 int checkNotEqualFloatDeclCompare5(void) { in checkNotEqualFloatDeclCompare5() argument
58 int checkNotEqualFloatDeclCompare6(void) { in checkNotEqualFloatDeclCompare6() argument
[all …]
/external/deqp/modules/egl/
DteglGetProcAddressTests.inl5 const char** getCoreFunctionStrs (void) argument
48 const char** getGlesFunctionStrs (void) argument
164 const char** getGles2FunctionStrs (void) argument
274 const char** getGles3FunctionStrs (void) argument
388 const char** getKhrLockSurfaceFuncStrs (void) argument
400 const char** getOesSinglePrecisionFuncStrs (void) argument
416 const char** getQcomTiledRenderingFuncStrs (void) argument
428 const char** getNvNativeQueryFuncStrs (void) argument
441 const char** getMesaDrmImageFuncStrs (void) argument
453 const char** getNvFenceFuncStrs (void) argument
[all …]
/external/clang/test/Sema/
Dattr-capabilities.c24 void Func1(void) __attribute__((requires_capability(GUI))) {} in Func1() argument
25 void Func2(void) __attribute__((requires_shared_capability(Worker))) {} in Func2() argument
27 void Func3(void) __attribute__((requires_capability)) {} // expected-error {{'requires_capability'… in Func3() argument
28 void Func4(void) __attribute__((requires_shared_capability)) {} // expected-error {{'requires_shar… in Func4() argument
30 void Func5(void) __attribute__((requires_capability(1))) {} // expected-warning {{'requires_capabi… in Func5() argument
31 void Func6(void) __attribute__((requires_shared_capability(BadCapability))) {} // expected-warning… in Func6() argument
33 void Func7(void) __attribute__((assert_capability(GUI))) {} in Func7() argument
34 void Func8(void) __attribute__((assert_shared_capability(GUI))) {} in Func8() argument
36 void Func9(void) __attribute__((assert_capability())) {} // expected-error {{'assert_capability' at… in Func9() argument
37 void Func10(void) __attribute__((assert_shared_capability())) {} // expected-error {{'assert_shared… in Func10() argument
[all …]
Dwarn-unused-function.c25 void f9(void) { f8(f7); } in f9() argument
26 static void f7(void) {} in f7() argument
29 void bar(void) { } in bar() argument
32 void bar2(void) { } in bar2() argument
35 void bar3(void) { } in bar3() argument
41 static void f11(void) { } // expected-warning{{unused}} in f11() argument
43 static void f12(void) { } // expected-warning{{unused}} in f12() argument
47 static void unused(void) { unused(); } // expected-warning{{not needed and will not be emitted}} in unused() argument
51 void f13(void) { in f13() argument
60 void b(void) in b() argument
[all …]
/external/clang/test/CodeGen/
Dattr-weakref.c7 void test1_h(void) { in test1_h() argument
12 void test2_f(void) {} in test2_f() argument
14 void test2_h(void) { in test2_h() argument
21 void test3_foo(void) { in test3_foo() argument
24 void test3_h(void) { in test3_h() argument
31 void test4_h(void) { in test4_h() argument
34 void test4_f(void) {} in test4_f() argument
39 void test5_h(void) { in test5_h() argument
42 void test5_foo(void) { in test5_foo() argument
49 void test6_h(void) { in test6_h() argument
[all …]
Dinline2.c7 int f0(void) { return 0; } in f0() argument
12 int f1(void) { return 0; } in f1() argument
17 inline int f2(void) { return 0; } in f2() argument
22 int f3(void) { return 0; } in f3() argument
27 inline int f5(void) { return 0; } in f5() argument
32 extern inline int f6(void) { return 0; } in f6() argument
37 extern int f7(void) { return 0; } in f7() argument
40 inline int fA(void) { return 0; } in fA() argument
48 extern inline int f4(void) { return 0; } in f4() argument
53 extern inline int f8(void) { return 0; } in f8() argument
[all …]
Darm-microsoft-intrinsics.c7 void check__dmb(void) { in check__dmb() argument
14 void check__dsb(void) { in check__dsb() argument
21 void check__isb(void) { in check__isb() argument
28 __INT64_TYPE__ check__ldrexd(void) { in check__ldrexd() argument
36 unsigned int check_MoveFromCoprocessor(void) { in check_MoveFromCoprocessor() argument
43 unsigned int check_MoveFromCoprocessor2(void) { in check_MoveFromCoprocessor2() argument
50 void check_MoveToCoprocessor(void) { in check_MoveToCoprocessor() argument
57 void check_MoveToCoprocessor2(void) { in check_MoveToCoprocessor2() argument
Ddllexport.c48 __declspec(dllexport) void def(void) {} in def() argument
53 __declspec(dllexport) inline void inlineFunc(void) {} in inlineFunc() argument
54 __declspec(dllexport) inline void externInlineFunc(void) {} in externInlineFunc() argument
60 __declspec(dllexport) void redecl1(void) {} in redecl1() argument
64 void redecl2(void) {} in redecl2() argument
101 void __attribute__((dllimport, dllexport)) precedence1A(void) {} in precedence1A() argument
102 void __declspec(dllimport) __declspec(dllexport) precedence1B(void) {} in precedence1B() argument
106 void __attribute__((dllexport, dllimport)) precedence2A(void) {} in precedence2A() argument
107 void __declspec(dllexport) __declspec(dllimport) precedence2B(void) {} in precedence2B() argument
111 void __declspec(dllexport) precedenceRedecl1(void) {} in precedenceRedecl1() argument
[all …]
/external/valgrind/main/none/tests/ppc32/
Djm-insns.c284 uint32_t* get_rwx_area ( void ) in get_rwx_area() argument
448 static void test_add (void) in test_add() argument
453 static void test_addo (void) in test_addo() argument
458 static void test_addc (void) in test_addc() argument
463 static void test_addco (void) in test_addco() argument
468 static void test_divw (void) in test_divw() argument
473 static void test_divwo (void) in test_divwo() argument
478 static void test_divwu (void) in test_divwu() argument
483 static void test_divwuo (void) in test_divwuo() argument
488 static void test_mulhw (void) in test_mulhw() argument
[all …]
/external/valgrind/main/none/tests/ppc64/
Djm-insns.c284 uint32_t* get_rwx_area ( void ) in get_rwx_area() argument
448 static void test_add (void) in test_add() argument
453 static void test_addo (void) in test_addo() argument
458 static void test_addc (void) in test_addc() argument
463 static void test_addco (void) in test_addco() argument
468 static void test_divw (void) in test_divw() argument
473 static void test_divwo (void) in test_divwo() argument
478 static void test_divwu (void) in test_divwu() argument
483 static void test_divwuo (void) in test_divwuo() argument
488 static void test_mulhw (void) in test_mulhw() argument
[all …]
/external/libunwind/tests/
DLrs-race.c47 foo_0 (void) in foo_0() argument
57 foo_1 (void) in foo_1() argument
67 foo_2 (void) in foo_2() argument
77 foo_3 (void) in foo_3() argument
87 foo_4 (void) in foo_4() argument
97 foo_5 (void) in foo_5() argument
107 foo_6 (void) in foo_6() argument
117 foo_7 (void) in foo_7() argument
127 foo_8 (void) in foo_8() argument
137 foo_9 (void) in foo_9() argument
[all …]
/external/clang/test/SemaObjC/
Darc-nsconsumed-errors.m6 blk a = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; // expect… function
8 blk b = ^void (id arg1, __attribute((ns_consumed)) id arg2){}; function
10 blk c = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; // expect… function
12 blk d = ^void (id arg1, id arg2) {}; // expected-error {{incompatible block pointer types initializ… function
14 blk1 a1 = ^void (__attribute((ns_consumed)) id arg1, id arg2){}; // expected-error {{incompatible b… function
16 blk1 b2 = ^void (id arg1, __attribute((ns_consumed)) id arg2){}; // expected-error {{incompatible b… function
18 blk1 c3 = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; function
20 blk1 d4 = ^void (id arg1, id arg2) {}; // expected-error {{incompatible block pointer types initial… function
/external/openssl/crypto/evp/
De_old.c74 const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } in EVP_bf_cfb() argument
80 const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } in EVP_des_cfb() argument
83 const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } in EVP_des_ede3_cfb() argument
86 const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } in EVP_des_ede_cfb() argument
92 const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } in EVP_idea_cfb() argument
98 const EVP_CIPHER *EVP_rc2_cfb(void) { return EVP_rc2_cfb64(); } in EVP_rc2_cfb() argument
104 const EVP_CIPHER *EVP_cast5_cfb(void) { return EVP_cast5_cfb64(); } in EVP_cast5_cfb() argument
110 const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void) { return EVP_rc5_32_12_16_cfb64(); } in EVP_rc5_32_12_16_cfb() argument
116 const EVP_CIPHER *EVP_aes_128_cfb(void) { return EVP_aes_128_cfb128(); } in EVP_aes_128_cfb() argument
119 const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); } in EVP_aes_192_cfb() argument
[all …]
/external/valgrind/main/memcheck/tests/
Dstr_tester.c70 test_strcmp (void) in test_strcmp() argument
132 test_strcpy (void) in test_strcpy() argument
186 test_stpcpy (void) in test_stpcpy() argument
270 test_stpncpy (void) in test_stpncpy() argument
286 test_strcat (void) in test_strcat() argument
316 test_strncat (void) in test_strncat() argument
358 test_strncmp (void) in test_strncmp() argument
378 test_strncpy (void) in test_strncpy() argument
420 test_strlen (void) in test_strlen() argument
441 test_strchr (void) in test_strchr() argument
[all …]
Derrs1.c7 void ddd ( void ) { p[-1] += 'z'; } in ddd() argument
8 void ccc ( void ) { ddd(); } in ccc() argument
9 void bbb ( void ) { ccc(); } in bbb() argument
10 void aaa ( void ) { bbb(); } in aaa() argument
12 void zzzzzzz ( void ) { p = malloc(10); } in zzzzzzz() argument
13 void yyy ( void ) { zzzzzzz(); } in yyy() argument
14 void xxx ( void ) { yyy(); } in xxx() argument
15 void www ( void ) { xxx(); } in www() argument
17 int main ( void ) { www(); aaa(); return 0; } in main() argument
/external/valgrind/main/none/tests/x86/
Dmovx.c4 static int movzbw_1 ( void ) in movzbw_1() argument
17 static int movzbw_2 ( void ) in movzbw_2() argument
30 static int movzbl_1 ( void ) in movzbl_1() argument
43 static int movzbl_2 ( void ) in movzbl_2() argument
56 static int movzwl_1 ( void ) in movzwl_1() argument
69 static int movzwl_2 ( void ) in movzwl_2() argument
82 static int movsbw_1 ( void ) in movsbw_1() argument
95 static int movsbw_2 ( void ) in movsbw_2() argument
108 static int movsbl_1 ( void ) in movsbl_1() argument
121 static int movsbl_2 ( void ) in movsbl_2() argument
[all …]
/external/clang/test/Rewriter/
Drewrite-function-decl.mm5 void (^aBlock)(void) = ^ { function
9 void (^bBlocks)(void) = ^ { function
12 void (^c)(void) = ^ { function
20 void (^aBlock)(void) = ^ { function
24 void (^bBlocks)(void) = ^ { function
27 void (^c)(void) = ^ { function
/external/pcre/dist/sljit/
DsljitUtils.c37 static SLJIT_INLINE void allocator_grab_lock(void) in allocator_grab_lock() argument
42 static SLJIT_INLINE void allocator_release_lock(void) in allocator_release_lock() argument
51 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void) in sljit_grab_lock() argument
56 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void) in sljit_release_lock() argument
71 static SLJIT_INLINE void allocator_grab_lock(void) in allocator_grab_lock() argument
80 static SLJIT_INLINE void allocator_release_lock(void) in allocator_release_lock() argument
91 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void) in sljit_grab_lock() argument
100 SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void) in sljit_release_lock() argument
115 static SLJIT_INLINE void allocator_grab_lock(void) in allocator_grab_lock() argument
120 static SLJIT_INLINE void allocator_release_lock(void) in allocator_release_lock() argument
[all …]
/external/clang/test/SemaObjCXX/
Darc-nsconsumed-errors.mm6 blk a = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {… function
8 blk b = ^void (id, __attribute((ns_consumed)) id){}; function
10 blk c = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; // expected-error {… function
12 blk d = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk'}} function
14 blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a vari… function
16 blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a vari… function
18 blk1 c3 = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; function
20 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk… function
/external/deqp/framework/delibs/decpp/
DdeProcess.cpp31 Process::Process (void) in Process() argument
38 Process::~Process (void) in ~Process() argument
49 void Process::waitForFinish (void) in waitForFinish() argument
55 void Process::terminate (void) in terminate() argument
61 void Process::kill (void) in kill() argument
67 void Process::closeStdIn (void) in closeStdIn() argument
73 void Process::closeStdOut (void) in closeStdOut() argument
79 void Process::closeStdErr (void) in closeStdErr() argument

12345678910>>...198