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

1 2

  /external/clang/test/Sema/
gnu89.c 3 int f(int restrict);
types.c 5 restrict T x;
8 restrict S y; // expected-error {{restrict requires a pointer or reference ('S' (aka 'int *[2]') is invalid)}}
format-strings-scanf.c 7 int fscanf(FILE * restrict, const char * restrict, ...) ;
8 int scanf(const char * restrict, ...) ;
9 int sscanf(const char * restrict, const char * restrict, ...) ;
function.c 3 void f(double a[restrict][5]); // should promote to restrict ptr.
4 void f(double (* restrict a)[5]);
declspec.c 22 __restrict__ f* v2; // expected-error {{restrict requires a pointer or reference ('f' (aka 'int (void)') is invalid)}}
23 __restrict__ fptr v3; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}}
24 f *__restrict__ v4; // expected-error {{pointer to function type 'f' (aka 'int (void)') may not be 'restrict' qualified}}
26 restrict struct hallo; // expected-error {{restrict requires a pointer or reference}}
format-strings.c 6 int fprintf(FILE *, const char *restrict, ...);
7 int printf(const char *restrict, ...); // expected-note{{passing argument to parameter here}}
8 int snprintf(char *restrict, size_t, const char *restrict, ...);
9 int sprintf(char *restrict, const char *restrict, ...);
12 int vfprintf(FILE *, const char *restrict, va_list);
13 int vprintf(const char *restrict, va_list);
15 int vsprintf(char *restrict, const char *restrict, va_list); // expected-note{{passing argument to parameter here}
    [all...]
c89.c 34 int *restrict; variable
return.c 245 char* const volatile restrict ignored_cvr_quals(); // expected-warning{{'const volatile restrict' type qualifiers on return type have no effect}}
  /external/clang/test/CodeGen/
vfprintf.c 4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
restrict.c 10 void test1(int * restrict x, int y) {
14 void test2(int *x, int * restrict y) {
17 typedef int * restrict rp;
  /ndk/sources/host-tools/sed-4.2.1/lib/
sys_time.in.h 59 int gettimeofday (struct timeval *restrict, void *restrict);
string.in.h 92 extern void *mempcpy (void *restrict __dest, void const *restrict __src,
136 extern char *stpcpy (char *restrict __dst, char const *restrict __src);
151 extern char *stpncpy (char *restrict __dst, char const *restrict __src,
316 extern char *strsep (char **restrict __stringp, char const *restrict __delim);
403 extern char *strtok_r (char *restrict s, char const *restrict delim
    [all...]
gettimeofday.c 106 rpl_gettimeofday (struct timeval *restrict tv, void *restrict tz)
  /external/clang/test/Analysis/
pr_4164.c 17 int getsockopt(int, int, int, void * restrict, socklen_t * restrict);
bstring.c 36 void *__memcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
44 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
158 void *__mempcpy_chk(void *restrict s1, const void *restrict s2, size_t n,
166 void *mempcpy(void *restrict s1, const void *restrict s2, size_t n);
string.c 263 char *__strcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen);
270 char *strcpy(char *restrict s1, const char *restrict s2);
319 char *__stpcpy_chk(char *restrict s1, const char *restrict s2, size_t destlen);
326 char *stpcpy(char *restrict s1, const char *restrict s2);
363 char *__strcat_chk(char *restrict s1, const char *restrict s2, size_t destlen)
    [all...]
cfref_rdar6080742.c 9 int printf(const char *restrict,...);
  /external/dhcpcd/
common.h 64 # define __restrict restrict
  /external/v8/test/mjsunit/
debug-sourceinfo.js 274 location.restrict(i);
279 location.restrict(1, 0);
283 location.restrict(2, 0);
287 location.restrict(2, 1);
291 location.restrict(2, 2);
295 location.restrict(2, 3);
299 location.restrict(3, 1);
303 location.restrict(5, 0);
307 location.restrict(5, 2);
311 location.restrict(5, 4);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 227 // The Restrict() version limits what flags are shown.
277 bool found_match = false; // stays false iff no dir matches restrict
304 void ShowUsageWithFlagsRestrict(const char *argv0, const char *restrict) {
306 if (restrict != NULL && *restrict != '\0') {
307 substrings.push_back(restrict);
388 ShowUsageWithFlagsRestrict(progname, ""); // empty restrict
392 string restrict = "/" + FLAGS_helpon + "."; local
393 ShowUsageWithFlagsRestrict(progname, restrict.c_str());
  /external/clang/test/Parser/
MicrosoftExtensions.c 9 __declspec(noalias) __declspec(restrict) void * __cdecl xxx( void * _Memory );
  /external/chromium/chrome/browser/sync/sessions/
status_controller.cc 34 bool restrict, ModelSafeGroup group) {
35 DCHECK(restrict == group_restriction_in_effect_) << "Group violation!";
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
argp.h 58 "restrict", and "configure" may have defined "restrict". */
61 # if defined restrict || 199901L <= __STDC_VERSION__
62 # define __restrict restrict
regex.h 521 "restrict", and "configure" may have defined "restrict". */
524 # if defined restrict || 199901L <= __STDC_VERSION__
525 # define __restrict restrict
531 /* gcc 3.1 and up support the [restrict] syntax. */
  /external/wpa_supplicant/
driver_broadcom.c 377 int restrict = (enabled ? 1 : 0); local
380 &restrict, sizeof(restrict)) < 0 ||
382 &restrict, sizeof(restrict)) < 0)

Completed in 3970 milliseconds

1 2