/external/arm-optimized-routines/string/include/ |
D | stringlib.h | 11 #ifndef __restrict 12 # define __restrict macro 16 void *__memcpy_aarch64 (void *__restrict, const void *__restrict, size_t); 22 char *__strcpy_aarch64 (char *__restrict, const char *__restrict); 23 char *__stpcpy_aarch64 (char *__restrict, const char *__restrict); 32 char *__strcpy_aarch64_mte (char *__restrict, const char *__restrict); 33 char *__stpcpy_aarch64_mte (char *__restrict, const char *__restrict); 41 void *__memcpy_aarch64_simd (void *__restrict, const void *__restrict, size_t); 51 char *__strcpy_aarch64_sve (char *__restrict, const char *__restrict); 52 char *__stpcpy_aarch64_sve (char *__restrict, const char *__restrict); [all …]
|
/external/llvm-project/libc/AOR_v20.02/string/include/ |
D | stringlib.h | 12 #ifndef __restrict 13 # define __restrict macro 17 void *__memcpy_aarch64 (void *__restrict, const void *__restrict, size_t); 22 char *__strcpy_aarch64 (char *__restrict, const char *__restrict); 23 char *__stpcpy_aarch64 (char *__restrict, const char *__restrict); 34 void *__memcpy_aarch64_simd (void *__restrict, const void *__restrict, size_t); 44 char *__strcpy_aarch64_sve (char *__restrict, const char *__restrict); 45 char *__stpcpy_aarch64_sve (char *__restrict, const char *__restrict); 51 void *__memcpy_arm (void *__restrict, const void *__restrict, size_t); 54 char *__strcpy_arm (char *__restrict, const char *__restrict);
|
/external/llvm-project/llvm/test/tools/llvm-pdbutil/Inputs/ |
D | TypeQualifiersTest.cpp | 5 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/ |
D | locale_win32.cpp | 16 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 …]
|
D | support.cpp | 22 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/llvm-project/libcxx/src/support/win32/ |
D | locale_win32.cpp | 15 int __libcpp_vasprintf(char **sptr, const char *__restrict fmt, va_list ap); 43 size_t mbrlen_l( const char *__restrict s, size_t n, in mbrlen_l() 44 mbstate_t *__restrict ps, locale_t loc ) in mbrlen_l() 49 size_t mbsrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, in mbsrtowcs_l() 50 size_t len, mbstate_t *__restrict ps, locale_t loc ) in mbsrtowcs_l() 55 size_t wcrtomb_l( char *__restrict s, wchar_t wc, mbstate_t *__restrict ps, in wcrtomb_l() 61 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s, in mbrtowc_l() 62 size_t n, mbstate_t *__restrict ps, locale_t loc ) in mbrtowc_l() 67 size_t mbsnrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, in mbsnrtowcs_l() 68 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc ) in mbsnrtowcs_l() [all …]
|
D | support.cpp | 21 int __libcpp_vasprintf( char **sptr, const char *__restrict format, va_list ap ) in __libcpp_vasprintf() 51 size_t mbsnrtowcs( wchar_t *__restrict dst, const char **__restrict src, in mbsnrtowcs() 52 size_t src_size_bytes, size_t max_dest_chars, mbstate_t *__restrict ps ) in mbsnrtowcs() 108 size_t wcsnrtombs( char *__restrict dst, const wchar_t **__restrict src, in wcsnrtombs() 109 size_t max_source_chars, size_t dst_size_bytes, mbstate_t *__restrict ps ) in wcsnrtombs()
|
/external/llvm-project/libc/src/string/memory_utils/ |
D | memcpy_utils.h | 29 extern "C" void LLVM_LIBC_MEMCPY_MONITOR(char *__restrict, 30 const char *__restrict, size_t); 35 static void CopyBlock(char *__restrict dst, const char *__restrict src) { in CopyBlock() 52 static void CopyLastBlock(char *__restrict dst, const char *__restrict src, in CopyLastBlock() 67 static void CopyBlockOverlap(char *__restrict dst, const char *__restrict src, in CopyBlockOverlap() 88 static void CopyAlignedBlocks(char *__restrict dst, const char *__restrict src, in CopyAlignedBlocks()
|
/external/llvm-project/llvm/test/tools/llvm-pdbutil/ |
D | type-qualifiers.test | 10 ; GLOBALS_FUNC-DAG: int __cdecl f(const volatile int* __restrict arg_crv) 11 ; GLOBALS_FUNC-DAG: void __cdecl g(int& __restrict arg_ref) 14 ; GLOBALS_DATA-DAG: static volatile int* __restrict ArrayVar[10][100] 15 ; GLOBALS_DATA-DAG: static long* __restrict RestrictVar 16 ; GLOBALS_DATA-DAG: static const int* __restrict NS::p_object 18 ; GLOBALS_DATA-DAG: static volatile int* __restrict NS::p_data_member 22 ; QUALS-DAG: typedef long* __restrict RestrictTypedef 24 ; QUALS-DAG: int* __restrict x_member 25 ; QUALS-DAG: float* __restrict y_member 26 ; QUALS-DAG: int* volatile __restrict m_volatile
|
/external/libcxx/include/support/win32/ |
D | locale_win32.h | 114 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/ |
D | taint-tester.cpp | 8 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);
|
/external/llvm-project/clang/test/Analysis/ |
D | taint-tester.cpp | 8 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);
|
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | codec.h | 148 int WebRtcIsacfix_AutocorrC(int32_t* __restrict r, 149 const int16_t* __restrict x, 152 int16_t* __restrict scale); 162 int WebRtcIsacfix_AutocorrNeon(int32_t* __restrict r, 163 const int16_t* __restrict x, 166 int16_t* __restrict scale); 177 int WebRtcIsacfix_AutocorrMIPS(int32_t* __restrict r, 178 const int16_t* __restrict x, 181 int16_t* __restrict scale); 193 typedef int (*AutocorrFix)(int32_t* __restrict r, [all …]
|
/external/llvm-project/libcxx/include/support/win32/ |
D | locale_win32.h | 178 size_t mbrlen_l( const char *__restrict s, size_t n, 179 mbstate_t *__restrict ps, locale_t loc); 180 size_t mbsrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, 181 size_t len, mbstate_t *__restrict ps, locale_t loc ); 182 size_t wcrtomb_l( char *__restrict s, wchar_t wc, mbstate_t *__restrict ps, 184 size_t mbrtowc_l( wchar_t *__restrict pwc, const char *__restrict s, 185 size_t n, mbstate_t *__restrict ps, locale_t loc); 186 size_t mbsnrtowcs_l( wchar_t *__restrict dst, const char **__restrict src, 187 size_t nms, size_t len, mbstate_t *__restrict ps, locale_t loc); 188 size_t wcsnrtombs_l( char *__restrict dst, const wchar_t **__restrict src, [all …]
|
/external/llvm-project/libc/src/string/x86/ |
D | memcpy.cpp | 15 static void CopyRepMovsb(char *__restrict dst, const char *__restrict src, in CopyRepMovsb() 48 static void memcpy_x86(char *__restrict dst, const char *__restrict src, in memcpy_x86() 83 void *LLVM_LIBC_ENTRYPOINT(memcpy)(void *__restrict dst, in LLVM_LIBC_ENTRYPOINT() 84 const void *__restrict src, size_t size) { in LLVM_LIBC_ENTRYPOINT()
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | mangle-ms-arg-qualifiers.cpp | 40 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
|
D | mangle-ms-cxx11.cpp | 17 using C = int () __restrict; 29 using F = int () __restrict &; 41 using I = int () __restrict &&; 204 void foo() __restrict &; 205 void foo() __restrict &&; 207 void A::foo() __restrict & {} in foo() 209 void A::foo() __restrict && {} in foo() 304 void unaligned_foo5(int __unaligned * __restrict p1) {} in unaligned_foo5()
|
/external/clang/test/CodeGenCXX/ |
D | mangle-ms-arg-qualifiers.cpp | 40 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
|
D | mangle-ms-cxx11.cpp | 16 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()
|
/external/llvm-project/libc/src/stdio/ |
D | fwrite.cpp | 16 size_t fwrite_unlocked(const void *__restrict ptr, size_t size, size_t nmeb, in fwrite_unlocked() 17 __llvm_libc::FILE *__restrict stream) { in fwrite_unlocked() 22 size_t fwrite(const void *__restrict ptr, size_t size, size_t nmeb, in fwrite() 23 __llvm_libc::FILE *__restrict stream) { in fwrite()
|
/external/llvm-project/lldb/test/Shell/SymbolFile/PDB/Inputs/ |
D | TypeQualsTest.cpp | 8 typedef long* __restrict RestrictTypedef; 27 void Func5(int a, int* __restrict b, int& __restrict c) { in Func5() 31 void Func6(const volatile int* __restrict b) { in Func6()
|
/external/llvm-project/libc/src/string/ |
D | memcpy.cpp | 33 static void memcpy_impl(char *__restrict dst, const char *__restrict src, in memcpy_impl() 58 void *LLVM_LIBC_ENTRYPOINT(memcpy)(void *__restrict dst, in LLVM_LIBC_ENTRYPOINT() 59 const void *__restrict src, size_t size) { in LLVM_LIBC_ENTRYPOINT()
|
/external/libcxx/include/ |
D | wchar.h | 175 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/llvm-project/libcxx/include/ |
D | wchar.h | 175 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/llvm-project/lldb/test/Shell/SymbolFile/PDB/ |
D | type-quals.test | 28 CHECK-DAG: Type{{.*}} , size = 4, compiler_type = {{.*}} int *__restrict 29 CHECK-DAG: Type{{.*}} , size = 4, compiler_type = {{.*}} int &__restrict 30 …{.*}} , name = "Func5", {{.*}}, compiler_type = {{.*}} void (int, int *__restrict, int &__restrict) 32 … Type{{.*}} , name = "Func6", {{.*}}, compiler_type = {{.*}} void (const volatile int *__restrict) 37 CHECK-DAG: Type{{.*}} , size = 4, compiler_type = {{.*}} long *__restrict
|