Home
last modified time | relevance | path

Searched refs:restrict (Results 1 – 25 of 232) sorted by relevance

12345678910

/external/libcxx/include/
Dcwchar34 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 …]
Dcstdio51 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 …]
Dcstdlib39 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);
Dcstring28 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);
Dcinttypes230 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);
Dctime40 size_t strftime(char* restrict s, size_t maxsize, const char* restrict format,
41 const tm* restrict timeptr);
/external/pdfium/third_party/libopenjpeg20/
D0012-mct_sse.patch32 OPJ_INT32* restrict c0,
33 OPJ_INT32* restrict c1,
41 OPJ_INT32* restrict c0,
42 OPJ_INT32* restrict c1,
50 OPJ_INT32* restrict c0,
51 OPJ_INT32* restrict c1,
/external/clang/test/SemaObjC/
Drestrict-id-type.m4 void f0(restrict id a0) {}
6 void f1(restrict id *a0) {}
8 void f2(restrict Class a0) {}
10 void f3(restrict Class *a0) {}
Dformat-strings-utf8.m9 int printf(const char *restrict, ...);
10 int scanf(const char * restrict, ...);
/external/skia/gn/
Dpush_to_android.py15 restrict = [] if serial == 'auto' else ['-s', serial] variable
18 subprocess.check_output(['adb'] + restrict + ['push', host, device])
19 subprocess.check_call(['adb'] + restrict + ['shell', 'chmod', '+x', device])
/external/clang/test/CodeGenOpenCL/
Dkernel-arg-info.cl4 kernel void foo(__global int * restrict X, const int Y,
5 volatile int anotherArg, __constant float * restrict Z) {
66 // CHECK: ![[MD14]] = !{!"restrict", !"const", !"volatile", !"restrict const"}
/external/clang/test/CodeGenObjC/
Dbuiltin-memfns.m3 void *memcpy(void *restrict s1, const void *restrict s2, unsigned long n);
/external/clang/test/SemaObjCXX/
Dformat-strings.mm6 extern int scanf(const char *restrict, ...);
7 extern int printf(const char *restrict, ...);
8 extern int vprintf(const char *restrict, va_list);
/external/bison/m4/
Dgnulib-common.m4315 [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/clang/test/Analysis/
Dsecurity-syntax-checks.m131 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/
Dhorizontal.ll67 ; 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,
Ddiamond.ll6 ; 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) {
Dcmp_sel.ll6 ; int foo(double * restrict A, double * restrict B, double G) {
Dodd_store.ll6 ;int foo(char * restrict A, float * restrict B, float T) {
/external/stressapptest/src/
Dstressapptest_config.h.in217 /* Define to the equivalent of the C99 'restrict' keyword, or to
218 nothing if this is not supported. Do not define if restrict is
220 #undef restrict
223 "#define restrict _Restrict" or "#define restrict __restrict__" in the
225 restrict; if so, hopefully it defines __RESTRICT like Sun C does. */
/external/libopus/
Dconfigure.ac53 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 …]
/external/libxml2/result/schemas/
Drestrict-CT-attr-ref_0_01 ./test/schemas/restrict-CT-attr-ref_0.xml validates
/external/llvm/test/DebugInfo/Generic/
Drestrict.ll39 !1 = !DIFile(filename: "restrict.c", directory: "/tmp/dbginfo")
42 !5 = !DIFile(filename: "restrict.c", directory: "/tmp/dbginfo")
/external/llvm/test/CodeGen/Thumb2/
Dv8_IT_4.ll2 ; 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/Analysis/BasicAA/
Dphi-loop.ll15 ; void test2(const section_t * restrict section, unsigned * restrict dst) {;

12345678910