HomeSort by relevance Sort by last modified time
    Searched refs:restrict (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/Sema/
gnu89.c 3 int f(int restrict);
format-strings-non-iso.c 3 int printf(const char *restrict, ...);
4 int scanf(const char * restrict, ...);
  /external/mesa3d/src/mesa/main/
streaming-load-memcpy.h 33 _mesa_streaming_load_memcpy(void *restrict dst, void *restrict src, size_t len);
  /external/clang/test/SemaCXX/
format-strings-0x-nopedantic.cpp 4 extern int scanf(const char *restrict, ...);
5 extern int printf(const char *restrict, ...);
err_reference_bind_drops_quals.cpp 3 #define restrict __restrict__ macro
5 void test1(ptr p, const ptr cp, restrict ptr rp, const restrict ptr crp,
6 volatile ptr vp, const volatile ptr cvp, restrict volatile ptr rvp,
7 const restrict volatile ptr crvp) {
10 ptr& p3 = rp; // expected-error {{drops 'restrict' qualifier}}
11 ptr& p4 = crp; // expected-error {{drops 'const' and 'restrict' qualifiers}}
14 ptr& p7 = rvp; // expected-error {{drops 'restrict' and 'volatile' qualifiers}}
15 ptr& p8 = crvp; // expected-error {{drops 'const', 'restrict', and 'volatile' qualifiers}}
19 const ptr& cp3 = rp; // expected-error {{drops 'restrict' qualifier}
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/signal_h/
47-1-buildonly.c 4 int sigtimedwait(const sigset_t *restrict, siginfo_t *restrict,
5 const struct timespec *restrict);
11 typedef int (*sigtimedwait_test) (const sigset_t * restrict,
12 siginfo_t * restrict,
13 const struct timespec * restrict);
48-1-buildonly.c 3 int sigwait(const sigset_t *restrict, int *restrict);
9 typedef int (*sigwait_test) (const sigset_t * restrict, int *restrict);
49-1-buildonly.c 3 int sigwaitinfo(const sigset_t *restrict, siginfo_t *restrict);
9 typedef int (*sigwaitinfo_test) (const sigset_t * restrict,
10 siginfo_t * restrict);
  /external/clang/test/CodeGen/
2006-01-13-Includes.c 4 int printf(const char * restrict format, ...);
2002-06-25-FWriteInterfaceFailure.c 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
vfprintf.c 4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
2002-02-18-64bitConstant.c 5 int printf(const char * restrict format, ...);
2003-10-02-UnionLValueError.c 3 int sprintf(char * restrict str, const char * restrict format, ...);
restrict.c 10 void test1(int * restrict x, int y) {
14 void test2(int *x, int * restrict y) {
17 typedef int * restrict rp;
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/sys/mman_h/
20-1-buildonly.c 11 * int posix_mem_offset(const void *restrict, size_t, off_t *restrict,
12 * size_t *restrict, int *restrict)
23 typedef int (*posix_mem_offset_test) (const void *restrict, size_t,
24 off_t * restrict, size_t * restrict,
25 int *restrict);
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 2 int fprintf(FILE*restrict, const char* restrict format, ...);
  /external/clang/test/Modules/Inputs/crash-recovery/usr/include/
stdio.h 2 int fprintf(FILE*restrict, const char* restrict format, ...);
  /external/fio/os/windows/posix/include/
dlfcn.h 8 void *dlsym(void *restrict handle, const char *restrict name);
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
13 int fputs(const char * restrict, FILE * restrict) __asm("_" "fputs" );
system-header-simulator.h 9 #define restrict /*restrict*/ macro
21 int scanf(const char *restrict format, ...);
22 int fscanf(FILE *restrict, const char *restrict, ...);
23 int printf(const char *restrict format, ...);
24 int fprintf(FILE *restrict, const char *restrict, ...);
34 char *strcpy(char *restrict, const char *restrict);
    [all...]
  /external/fio/os/windows/posix/include/arpa/
inet.h 15 const char *inet_ntop(int af, const void *restrict src,
16 char *restrict dst, socklen_t size);
17 int inet_pton(int af, const char *restrict src, void *restrict dst);
  /external/clang/test/PCH/
format-strings.c 9 extern int printf(const char *restrict, ...);
  /external/clang/test/Parser/
asm.c 14 asm restrict (""); // expected-warning {{ignored restrict qualifier on asm}}
  /external/skia/gn/
push_to_android.py 15 restrict = [] if serial == 'auto' else ['-s', serial]
18 subprocess.check_output(['adb'] + restrict + ['push', host, device])
19 subprocess.check_call(['adb'] + restrict + ['shell', 'chmod', '+x', device])
  /external/skqp/gn/
push_to_android.py 15 restrict = [] if serial == 'auto' else ['-s', serial]
18 subprocess.check_output(['adb'] + restrict + ['push', host, device])
19 subprocess.check_call(['adb'] + restrict + ['shell', 'chmod', '+x', device])

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 910