Home
last modified time | relevance | path

Searched refs:__restrict (Results 1 – 25 of 95) sorted by relevance

1234

/external/arm-optimized-routines/string/include/
Dstringlib.h11 #ifndef __restrict
12 # define __restrict macro
16 void *__memcpy_aarch64 (void *__restrict, const void *__restrict, size_t);
21 char *__strcpy_aarch64 (char *__restrict, const char *__restrict);
30 void *__memcpy_aarch64_simd (void *__restrict, const void *__restrict, size_t);
40 char *__strcpy_aarch64_sve (char *__restrict, const char *__restrict);
46 void *__memcpy_arm (void *__restrict, const void *__restrict, size_t);
49 char *__strcpy_arm (char *__restrict, const char *__restrict);
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-pdbdump/Inputs/
DTypeQualifiersTest.cpp5 int * __restrict x_member;
6 float * __restrict y_member;
7 int* volatile __restrict m_volatile;
11 int f(const volatile int* __restrict arg_crv) { in f()
16 void g(int& __restrict arg_ref) { in g()
23 int set() __restrict { return 2; } in set()
30 int func(int x) __restrict { return 1; } in func()
35 const int* __restrict p_object = &s.a;
37 volatile int Foo:: * __restrict p_data_member = &Foo::a;
39 int (Foo::* p_member_func)(int) __restrict = &Foo::func;
[all …]
/external/libcxx/src/support/win32/
Dlocale_win32.cpp16 int __libcpp_vasprintf(char **sptr, const char *__restrict fmt, va_list ap);
42 size_t mbrlen_l( const char *__restrict s, size_t n, in mbrlen_l()
43 mbstate_t *__restrict ps, locale_t loc ) in mbrlen_l()
48 size_t mbsrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, in mbsrtowcs_l()
49 size_t len, mbstate_t *__restrict ps, locale_t loc ) in mbsrtowcs_l()
54 size_t wcrtomb_l( char *__restrict s, wchar_t wc, mbstate_t *__restrict ps, in wcrtomb_l()
60 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s, in mbrtowc_l()
61 size_t n, mbstate_t *__restrict ps, locale_t loc ) in mbrtowc_l()
66 size_t mbsnrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, in mbsnrtowcs_l()
67 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc ) in mbsnrtowcs_l()
[all …]
Dsupport.cpp22 int __libcpp_vasprintf( char **sptr, const char *__restrict format, va_list ap ) in __libcpp_vasprintf()
52 size_t mbsnrtowcs( wchar_t *__restrict dst, const char **__restrict src, in mbsnrtowcs()
53 size_t src_size_bytes, size_t max_dest_chars, mbstate_t *__restrict ps ) in mbsnrtowcs()
104 size_t wcsnrtombs( char *__restrict dst, const wchar_t **__restrict src, in wcsnrtombs()
105 size_t max_source_chars, size_t dst_size_bytes, mbstate_t *__restrict ps ) in wcsnrtombs()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-pdbdump/
Dtype-qualifiers.test8 ; GLOBALS_FUNC-DAG: int __cdecl f(const volatile int* __restrict arg_crv)
9 ; GLOBALS_FUNC-DAG: void __cdecl g(int& __restrict arg_ref)
12 ; GLOBALS_DATA-DAG: static volatile int* __restrict ArrayVar[10][100]
13 ; GLOBALS_DATA-DAG: static long* __restrict RestrictVar
14 ; GLOBALS_DATA-DAG: static const int* __restrict NS::p_object
16 ; GLOBALS_DATA-DAG: static volatile int* __restrict NS::p_data_member
20 ; QUALS-DAG: typedef long* __restrict RestrictTypedef
22 ; QUALS-DAG: int* __restrict x_member
23 ; QUALS-DAG: float* __restrict y_member
24 ; QUALS-DAG: int* volatile __restrict m_volatile
/external/libcxx/include/support/win32/
Dlocale_win32.h114 size_t mbrlen_l( const char *__restrict s, size_t n,
115 mbstate_t *__restrict ps, locale_t loc);
116 size_t mbsrtowcs_l( wchar_t *__restrict dst, const char **__restrict src,
117 size_t len, mbstate_t *__restrict ps, locale_t loc );
118 size_t wcrtomb_l( char *__restrict s, wchar_t wc, mbstate_t *__restrict ps,
120 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s,
121 size_t n, mbstate_t *__restrict ps, locale_t loc);
122 size_t mbsnrtowcs_l( wchar_t *__restrict dst, const char **__restrict src,
123 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc);
124 size_t wcsnrtombs_l( char *__restrict dst, const wchar_t **__restrict src,
[all …]
/external/clang/test/Analysis/
Dtaint-tester.cpp8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
9 int printf(const char * __restrict, ...);
14 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
Dtaint-tester.c157 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
158 int printf(const char * __restrict, ...);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dcodec.h164 int WebRtcIsacfix_AutocorrC(int32_t* __restrict r,
165 const int16_t* __restrict x,
168 int16_t* __restrict scale);
178 int WebRtcIsacfix_AutocorrNeon(int32_t* __restrict r,
179 const int16_t* __restrict x,
182 int16_t* __restrict scale);
193 int WebRtcIsacfix_AutocorrMIPS(int32_t* __restrict r,
194 const int16_t* __restrict x,
197 int16_t* __restrict scale);
209 typedef int (*AutocorrFix)(int32_t* __restrict r,
[all …]
Dfilters.c17 int WebRtcIsacfix_AutocorrC(int32_t* __restrict r, in WebRtcIsacfix_AutocorrC()
18 const int16_t* __restrict x, in WebRtcIsacfix_AutocorrC()
21 int16_t* __restrict scale) { in WebRtcIsacfix_AutocorrC()
Dfilters_mips.c15 int WebRtcIsacfix_AutocorrMIPS(int32_t* __restrict r, in WebRtcIsacfix_AutocorrMIPS()
16 const int16_t* __restrict x, in WebRtcIsacfix_AutocorrMIPS()
19 int16_t* __restrict scale) { in WebRtcIsacfix_AutocorrMIPS()
/external/clang/test/CodeGenCXX/
Dmangle-ms-arg-qualifiers.cpp40 void foo_piad(char * __restrict x) {} in foo_piad()
44 void foo_qiad(char * const __restrict x) {} in foo_qiad()
48 void foo_riad(char * volatile __restrict x) {} in foo_riad()
52 void foo_siad(char * const volatile __restrict x) {} in foo_siad()
258 void mangle_yes_backref4(int *const __restrict, int *const __restrict) {} in mangle_yes_backref4() argument
Dmangle-ms-cxx11.cpp16 using C = int () __restrict;
28 using F = int () __restrict &;
40 using I = int () __restrict &&;
201 void foo() __restrict &;
202 void foo() __restrict &&;
204 void A::foo() __restrict & {} in foo()
206 void A::foo() __restrict && {} in foo()
301 void unaligned_foo5(int __unaligned * __restrict p1) {} in unaligned_foo5()
Dmangle-ms-return-qualifiers.cpp167 int S::* __restrict f10() { return 0; } in f10()
170 int S::* const __restrict f11() { return 0; } in f11()
188 int & __restrict h1() { return z; } in h1()
/external/jemalloc/src/
Dmutex.c34 static int (*pthread_create_fptr)(pthread_t *__restrict, const pthread_attr_t *,
35 void *(*)(void *), void *__restrict);
52 pthread_create(pthread_t *__restrict thread, in pthread_create()
53 const pthread_attr_t *__restrict attr, void *(*start_routine)(void *), in pthread_create()
54 void *__restrict arg) in pthread_create()
/external/libcxx/include/
Dwchar.h175 size_t mbsnrtowcs(wchar_t *__restrict dst, const char **__restrict src,
176 size_t nmc, size_t len, mbstate_t *__restrict ps);
177 size_t wcsnrtombs(char *__restrict dst, const wchar_t **__restrict src,
178 size_t nwc, size_t len, mbstate_t *__restrict ps);
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/COFF/
Dtype-quals.ll6 ; int * __restrict x_member;
7 ; float * __restrict y_member;
8 ; int* volatile __restrict m_volatile;
11 ; int f(const volatile int* __restrict arg_crv) {
18 ; void g(int& __restrict arg_ref) {
26 ; int func(int x) __restrict { return 1; }
31 ; int* __restrict p_object = &s.a;
33 ; int Foo:: * __restrict p_data_member = &Foo::a;
35 ; int (Foo::* p_member_func)(int) __restrict = &Foo::func;
69 ; CHECK: ArgType: const volatile int* __restrict (0x1001)
[all …]
/external/clang/test/SemaCXX/
Daddr-of-overloaded-function.cpp214 void R() __restrict {}; in R()
216 void CR() const __restrict {}; in CR()
217 void VR() volatile __restrict {}; in VR()
218 void CVR() const volatile __restrict {}; in CVR()
/external/clang/test/PCH/
Dpr4489.c9 extern int fprintf (struct _IO_FILE *__restrict __stream,
10 __const char *__restrict __format, ...);
/external/clang/test/Sema/
Dimplicit-decl.c6 extern int printf(__const char *__restrict __format, ...); // expected-note{{'printf' declared here…
27 extern int sformatf(char *str, __const char *__restrict __format, ...); // expected-note{{'sformatf…
/external/jemalloc_new/include/jemalloc/internal/
Dbackground_thread_externs.h27 extern int pthread_create_wrapper(pthread_t *__restrict, const pthread_attr_t *,
28 void *(*)(void *), void *__restrict);
/external/clang/test/SemaObjCXX/
Dparameters.mm19 template<typename T> void r1(__restrict T);
20 void r2(__restrict id x) { r1(x); }
/external/libpng/
Dpngconf.h365 # define PNG_RESTRICT __restrict
393 # define PNG_RESTRICT __restrict
418 # define PNG_RESTRICT __restrict
424 # define PNG_RESTRICT __restrict
/external/pdfium/third_party/libpng16/
Dpngconf.h365 # define PNG_RESTRICT __restrict
393 # define PNG_RESTRICT __restrict
418 # define PNG_RESTRICT __restrict
424 # define PNG_RESTRICT __restrict
/external/swiftshader/third_party/llvm-7.0/llvm/test/Demangle/
Dms-cxx11.test14 ; CHECK: struct FTypeWithQuals::S<int __cdecl(void) __restrict> FTypeWithQuals::c
23 ; CHECK: struct FTypeWithQuals::S<int __cdecl(void) __restrict &> FTypeWithQuals::f
32 ; CHECK: struct FTypeWithQuals::S<int __cdecl(void) __restrict &&> FTypeWithQuals::i
78 ; CHECK: void __thiscall PR19361::A::foo(void) __restrict &
81 ; CHECK: void __thiscall PR19361::A::foo(void) __restrict &&
130 ; CHECK: void __cdecl unaligned_foo5(int __unaligned *__restrict)

1234