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

1234567891011>>

/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp10-0x.cpp4 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);
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.c17 struct funcptr fp; local
19 fp.func = &func;
20 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;
/external/bison/lib/
H A Dfopen-safer.c39 FILE *fp = fopen (file, mode); local
41 if (fp)
43 int fd = fileno (fp);
52 fclose (fp);
57 if (fclose (fp) != 0
58 || ! (fp = fdopen (f, mode)))
68 return fp;
/external/clang/test/Analysis/
H A Dtaint-tester.cpp16 FILE *fp; local
/external/clang/test/CXX/except/except.handle/
H A Dp16.cpp18 float *fp = 0; local
19 ptr = fp; // expected-error{{assigning to 'int *' from incompatible type 'float *'}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1inst.cpp14 void test_f(X0<float, int> xfi, X0<void, int> xvi, float *fp, void *vp, int i) { argument
15 xfi.f(fp, i);
/external/dhcpcd/compat/
H A Dgetline.c42 FILE * __restrict fp)
56 if (feof(fp))
68 if (fgets(p, BUFSIZ, fp) == NULL)
41 getline(char ** __restrict buf, size_t * __restrict buflen, FILE * __restrict fp) argument
/external/elfutils/tests/
H A Darsymtest.c39 FILE *fp; local
56 fp = fopen (argv[2], "w");
57 if (fp == NULL)
122 fprintf (fp, "%s in %s\n", arsym[narsym].as_name, arhdr->ar_name);
141 fclose (fp);

Completed in 700 milliseconds

1234567891011>>