/external/libcxx/include/ |
D | cwchar | 34 int fwprintf(FILE* restrict stream, const wchar_t* restrict format, ...); 35 int fwscanf(FILE* restrict stream, const wchar_t* restrict format, ...); 36 int swprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, ...); 37 int swscanf(const wchar_t* restrict s, const wchar_t* restrict format, ...); 38 int vfwprintf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); 39 int vfwscanf(FILE* restrict stream, const wchar_t* restrict format, va_list arg); // C99 40 int vswprintf(wchar_t* restrict s, size_t n, const wchar_t* restrict format, va_list arg); 41 int vswscanf(const wchar_t* restrict s, const wchar_t* restrict format, va_list arg); // C99 42 int vwprintf(const wchar_t* restrict format, va_list arg); 43 int vwscanf(const wchar_t* restrict format, va_list arg); // C99 [all …]
|
D | cstdio | 51 FILE* fopen(const char* restrict filename, const char* restrict mode); 52 FILE* freopen(const char* restrict filename, const char * restrict mode, 53 FILE * restrict stream); 54 void setbuf(FILE* restrict stream, char* restrict buf); 55 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size); 56 int fprintf(FILE* restrict stream, const char* restrict format, ...); 57 int fscanf(FILE* restrict stream, const char * restrict format, ...); 58 int printf(const char* restrict format, ...); 59 int scanf(const char* restrict format, ...); 60 int snprintf(char* restrict s, size_t n, const char* restrict format, ...); // C99 [all …]
|
D | cstdlib | 39 double strtod (const char* restrict nptr, char** restrict endptr); 40 float strtof (const char* restrict nptr, char** restrict endptr); // C99 41 long double strtold (const char* restrict nptr, char** restrict endptr); // C99 42 long strtol (const char* restrict nptr, char** restrict endptr, int base); 43 long long strtoll (const char* restrict nptr, char** restrict endptr, int base); // C99 44 unsigned long strtoul (const char* restrict nptr, char** restrict endptr, int base); 45 unsigned long long strtoull(const char* restrict nptr, char** restrict endptr, int base); // C99 73 int mbtowc(wchar_t* restrict pwc, const char* restrict s, size_t n); 75 size_t mbstowcs(wchar_t* restrict pwcs, const char* restrict s, size_t n); 76 size_t wcstombs(char* restrict s, const wchar_t* restrict pwcs, size_t n);
|
D | cstring | 28 void* memcpy(void* restrict s1, const void* restrict s2, size_t n); 30 char* strcpy (char* restrict s1, const char* restrict s2); 31 char* strncpy(char* restrict s1, const char* restrict s2, size_t n); 32 char* strcat (char* restrict s1, const char* restrict s2); 33 char* strncat(char* restrict s1, const char* restrict s2, size_t n); 38 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n); 51 char* strtok(char* restrict s1, const char* restrict s2);
|
D | cinttypes | 230 intmax_t strtoimax(const char* restrict nptr, char** restrict endptr, int base); 231 uintmax_t strtoumax(const char* restrict nptr, char** restrict endptr, int base); 232 intmax_t wcstoimax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); 233 uintmax_t wcstoumax(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
|
D | ctime | 40 size_t strftime(char* restrict s, size_t maxsize, const char* restrict format, 41 const tm* restrict timeptr);
|
/external/clang/test/SemaObjC/ |
D | restrict-id-type.m | 4 void f0(restrict id a0) {} 6 void f1(restrict id *a0) {} 8 void f2(restrict Class a0) {} 10 void f3(restrict Class *a0) {}
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
D | complete-ant-cmd.pl | 42 list( restrict( $word, getArguments() )); 46 list( restrict( $word, getTargets() )); 57 sub restrict { subroutine
|
/external/libopus/ |
D | configure.ac | 53 AC_CACHE_CHECK([for C/C++ restrict keyword], ac_cv_c_restrict, 55 # The order here caters to the fact that C++ does not require restrict. 56 for ac_kw in __restrict __restrict__ _Restrict restrict; do 71 AH_VERBATIM([restrict], 72 [/* Define to the equivalent of the C99 'restrict' keyword, or to 73 nothing if this is not supported. Do not define if restrict is 75 #undef restrict 78 "#define restrict _Restrict" or "#define restrict __restrict__" in the 80 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ 87 restrict) ;; [all …]
|
D | config.h.in | 148 /* Define to the equivalent of the C99 'restrict' keyword, or to 149 nothing if this is not supported. Do not define if restrict is 151 #undef restrict 154 "#define restrict _Restrict" or "#define restrict __restrict__" in the 156 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
|
/external/clang/test/CodeGenOpenCL/ |
D | kernel-arg-info.cl | 4 kernel void foo(__global int * restrict X, const int Y, 5 volatile int anotherArg, __constant float * restrict Z) { 13 // CHECK: !{!"kernel_arg_type_qual", !"restrict", !"const", !"volatile", !"restrict const"}
|
/external/clang/test/CodeGenObjC/ |
D | builtin-memfns.m | 3 void *memcpy(void *restrict s1, const void *restrict s2, unsigned long n);
|
/external/bison/m4/ |
D | gnulib-common.m4 | 315 [AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict], 317 # The order here caters to the fact that C++ does not require restrict. 318 for ac_kw in __restrict __restrict__ _Restrict restrict; do 332 AH_VERBATIM([restrict], 333 [/* Define to the equivalent of the C99 'restrict' keyword, or to 334 nothing if this is not supported. Do not define if restrict is 336 #undef restrict 339 "#define restrict _Restrict" in the previous line. Perhaps some future 346 restrict) ;; 347 no) AC_DEFINE([restrict], []) ;; definition [all …]
|
/external/ltrace/etc/ |
D | libc.so.conf | 456 ; int wscanf(const wchar_t *restrict, ...); 457 ; int fwscanf(FILE *restrict, const wchar_t *restrict, ...); 458 ; int swscanf(const wchar_t *restrict, const wchar_t *restrict, ...); 459 ; int vfwscanf(FILE *restrict, const wchar_t *restrict, va_list); 460 ; int vswscanf(const wchar_t *restrict, const wchar_t *restrict, va_list); 461 ; int vwscanf(const wchar_t *restrict, va_list);
|
/external/clang/test/SemaObjCXX/ |
D | format-strings.mm | 6 extern int scanf(const char *restrict, ...); 7 extern int printf(const char *restrict, ...); 8 extern int vprintf(const char *restrict, va_list);
|
/external/clang/test/Analysis/ |
D | security-syntax-checks.m | 131 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen); 138 char *strcpy(char *restrict s1, const char *restrict s2); 155 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen); 162 char *strcat(char *restrict s1, const char *restrict s2);
|
/external/llvm/test/Transforms/SLPVectorizer/X86/ |
D | horizontal.ll | 67 ; int foo(float * restrict A, float * restrict B, int n) { 134 ; int foo(float * restrict A, float * restrict B, int n) { 241 ; int foo(float * restrict A, float * restrict B, int n) { 308 ; int foo(float * restrict A, float * restrict B, float * restrict C, int n) { 374 ; void foo(double * restrict A, double * restrict B, double * restrict C,
|
D | diamond.ll | 6 ; int foo(int * restrict B, int * restrict A, int n, int m) { 44 ; int extr_user(int * restrict B, int * restrict A, int n, int m) {
|
D | cmp_sel.ll | 6 ; int foo(double * restrict A, double * restrict B, double G) {
|
D | cast.ll | 6 ; int foo(int * restrict A, char * restrict B) {
|
D | odd_store.ll | 6 ;int foo(char * restrict A, float * restrict B, float T) {
|
/external/llvm/test/DebugInfo/Generic/ |
D | restrict.ll | 39 !1 = !DIFile(filename: "restrict.c", directory: "/tmp/dbginfo") 43 !5 = !DIFile(filename: "restrict.c", directory: "/tmp/dbginfo")
|
/external/libxml2/result/schemas/ |
D | restrict-CT-attr-ref_0_0 | 1 ./test/schemas/restrict-CT-attr-ref_0.xml validates
|
/external/llvm/test/CodeGen/Thumb2/ |
D | v8_IT_4.ll | 2 ; RUN: llc < %s -mtriple=thumbv7-eabi -float-abi=hard -arm-restrict-it | FileCheck %s 4 ; RUN: llc < %s -mtriple=thumbv7-eabi -float-abi=hard -regalloc=basic -arm-restrict-it | FileCheck …
|
/external/llvm/test/Transforms/LoopVectorize/X86/ |
D | vect.omp.force.small-tc.ll | 17 ; void foo(float* restrict A, float* restrict B)
|