Searched defs:fp (Results 1 - 25 of 675) sorted by relevance

1234567891011>>

/external/bison/lib/
H A Dfpending.c27 __fpending (FILE *fp) argument
H A Dfseterr.c27 fseterr (FILE *fp) argument
33 fp->_flags |= _IO_ERR_SEEN;
37 fp->_flags |= _IOERR;
39 fp->_flags |= _IOERR;
43 fp->__modeflags |= __FLAG_ERROR;
45 fp->_Mode |= 0x200 /* _MERR */;
47 fp->__error = 1;
49 if (fp->state != 0 /* CLOSED */)
50 fp->state = 5 /* ERR */;
62 fflush (fp);
[all...]
H A Dfopen-safer.c33 FILE *fp = fopen (file, mode); local
35 if (fp)
37 int fd = fileno (fp);
46 fclose (fp);
51 if (fclose (fp) != 0
52 || ! (fp = fdopen (f, mode)))
62 return fp;
H A Dfopen.c78 FILE *fp; local
97 fp = fdopen (fd, mode);
98 if (fp == NULL)
104 return fp;
H A Dfprintf.c36 fprintf (FILE *fp, const char *format, ...) argument
51 fseterr (fp);
55 if (fwrite (output, 1, len, fp) < len)
72 fseterr (fp);
H A Dvfprintf.c36 vfprintf (FILE *fp, const char *format, va_list args) argument
48 fseterr (fp);
52 if (fwrite (output, 1, len, fp) < len)
69 fseterr (fp);
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp10-0x.cpp5 void (*fp)(int&) = &f; variable
/external/clang/test/Index/
H A Dwerror.c1 inline int *get_int_ptr(float *fp) { argument
2 return fp;
/external/clang/test/Sema/
H A Dformat-strings-c90.c7 void foo(char **sp, float *fp, int *ip) { argument
12 scanf("%a", fp);
13 scanf("%afoobar", fp);
23 scanf("%as", fp); /* expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
25 scanf("%aS", fp); /* expected-warning{{format specifies type 'wchar_t **' (aka 'int **') but the argument has type 'float *'}}
28 scanf("%a[abc]", fp); /* expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
H A D2007-10-01-BuildArrayRef.c16 const struct foo *fp; local
17 fp = &sfoo;
18 fp[0].bar = 1; // expected-error {{ assignment of read-only member}}
H A Dpointer-subtract-compat.c9 void f0(void (*fp)(void)) { argument
10 int x = fp - fp; // expected-warning{{arithmetic on pointers to the function type 'void (void)' is a GNU extension}}
/external/clang/test/SemaCXX/
H A Dformat-strings-0x.cpp8 void f(char **sp, float *fp) { argument
12 scanf("%afoobar", fp);
29 printf("void: %d", f(sp, fp)); // expected-error {{cannot pass expression of type 'void' to variadic function; expected type from format string was 'int'}}
H A Dreinterpret-fn-obj-pedantic.cpp6 fnptr fp = 0; local
7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
H A Dincomplete-call.cpp21 Func fp; local
22 fp(); // expected-error {{calling function with incomplete return type 'A'}}
/external/v8/src/arm/
H A Dframes-arm.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/ia32/
H A Dframes-ia32.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/mips/
H A Dframes-mips.cc40 Address ExitFrame::ComputeStackPointer(Address fp) { argument
41 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/v8/src/x64/
H A Dframes-x64.cc38 Address ExitFrame::ComputeStackPointer(Address fp) { argument
39 return Memory::Address_at(fp + ExitFrameConstants::kSPOffset);
/external/oprofile/libutil/
H A Dop_cpufreq.c23 FILE * fp = op_try_open_file("/proc/cpuinfo", "r"); local
24 if (!fp)
28 line = op_get_line(fp);
66 op_close_file(fp);
H A Dop_lockfile.c24 FILE * fp; local
27 fp = fopen(file, "r");
28 if (fp == NULL)
31 if (fscanf(fp, "%d", &value) != 1) {
32 fclose(fp);
36 fclose(fp);
44 FILE * fp; local
61 fp = fopen(file, "w");
62 if (!fp)
65 fprintf(fp, "
[all...]
/external/clang/test/CXX/except/except.spec/
H A Dp2-places.cpp13 void (*fp)() throw (int); member in namespace:dyn
48 void (*fp)() noexcept(false);
/external/clang/test/CodeGen/
H A D2009-06-01-addrofknr.c18 struct funcptr fp; local
20 fp.func = &func;
21 fp.func = func;
/external/clang/test/Parser/
H A Dpointer_promotion.c7 struct foo *fp; local
12 if (cp < fp) {} // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}}
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
/external/libsepol/utils/
H A Dchkcon.c19 FILE *fp; local
24 fp = fopen(argv[1], "r");
25 if (!fp) {
30 if (sepol_set_policydb_from_file(fp) < 0) {
35 fclose(fp);
/external/valgrind/main/memcheck/tests/
H A Dfprw.c12 float* fp = malloc(sizeof(float)); local
17 *fp += ( f > 0.1 ? 20.0 : 21.0 );
19 free(fp);
21 *fp += 30.0;

Completed in 554 milliseconds

1234567891011>>