HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 1 - 25 of 758) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p10-0x.cpp 5 void (*fp)(int&) = &f; variable
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 46 FieldPacker fp = new FieldPacker(1024); local
47 fp.addBoolean(true);
48 fp.addF32(0.1f);
49 fp.addF32(new Float3());
50 fp.addF32(new Float4());
51 fp.addF32(new Float2());
52 fp.addF64(0.2);
53 fp.addF64(new Double2());
54 fp.addF64(new Double3());
55 fp.addF64(new Double4())
96 FieldPacker fp = new FieldPacker(256); local
118 FieldPacker fp = new FieldPacker(256); local
138 FieldPacker fp = new FieldPacker(256); local
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
funopen.c 51 FILE *fp; local
66 if ((fp = __sfp()) == NULL)
68 fp->_flags = flags;
69 fp->_file = -1;
70 fp->_cookie = (void *)cookie;
71 fp->_read = readfn;
72 fp->_write = writefn;
73 fp->_seek = seekfn;
74 fp->_close = closefn;
75 return (fp);
    [all...]
fdopen.c 52 FILE *fp; local
79 if ((fp = __sfp()) == NULL)
83 fp->_flags = 0;
87 fp->_flags = flags;
94 fp->_flags |= __SAPP;
95 fp->_file = fd;
96 fp->_cookie = fp;
97 fp->_read = __sread;
98 fp->_write = __swrite
    [all...]
fopen.c 54 FILE *fp; local
60 if ((fp = __sfp()) == NULL)
63 fp->_flags = 0; /* release */
74 fp->_flags = 0; /* release */
79 fp->_file = f;
80 fp->_flags = flags;
81 fp->_cookie = fp;
82 fp->_read = __sread;
83 fp->_write = __swrite
    [all...]
fwalk.c 47 FILE *fp; local
61 for (fp = g->iobs, n = g->niobs; --n >= 0; fp++)
62 if ((fp->_flags != 0) && ((fp->_flags & __SIGN) == 0))
63 ret |= (*function)(fp);
  /bionic/libc/upstream-netbsd/libc/string/
memccpy.c 53 const unsigned char *fp = f; local
56 if ((*tp++ = *fp++) == uc)
  /external/clang/test/CodeGen/
2009-06-01-addrofknr.c 18 struct funcptr fp; local
20 fp.func = &func;
21 fp.func = func;
  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 6 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}}
  /external/libsepol/utils/
chkcon.c 19 FILE *fp; local
24 fp = fopen(argv[1], "r");
25 if (!fp) {
30 if (sepol_set_policydb_from_file(fp) < 0) {
35 fclose(fp);
  /bionic/tests/
sys_stat_test.cpp 24 FILE* fp = tmpfile(); local
25 ASSERT_TRUE(fp != NULL);
27 int fd = fileno(fp);
42 fclose(fp);
  /external/bison/lib/
fopen-safer.c 33 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;
  /external/oprofile/libutil/
op_cpufreq.c 23 FILE * fp = op_try_open_file("/proc/cpuinfo", "r"); local
24 if (!fp)
28 line = op_get_line(fp);
66 op_close_file(fp);
  /art/test/023-many-interfaces/
iface-gen.c 13 FILE* fp; local
20 fp = fopen(nameBuf, "w");
21 if (fp == NULL) {
26 fprintf(fp, "interface Interface%03d {\n", i);
28 fprintf(fp, " int func%03d();\n", i);
29 fprintf(fp, "}\n");
30 fclose(fp);
33 fp = fopen("func-decl", "w");
34 fprintf(fp, " implements\n");
36 fprintf(fp, " Interface%03d%s\n", i, (i == count-1) ? "" : ",")
    [all...]
  /bionic/libc/stdio/
stdio.c 46 FILE *fp = cookie; local
49 ret = read(fp->_file, buf, n);
52 fp->_offset += ret;
54 fp->_flags &= ~__SOFF; /* paranoia */
61 FILE *fp = cookie; local
63 if (fp->_flags & __SAPP)
64 (void) lseek(fp->_file, (off_t)0, SEEK_END);
65 fp->_flags &= ~__SOFF; /* in case FAPPEND mode is set */
66 return (write(fp->_file, buf, n));
72 FILE *fp = cookie local
    [all...]
  /dalvik/tests/023-many-interfaces/
iface-gen.c 13 FILE* fp; local
20 fp = fopen(nameBuf, "w");
21 if (fp == NULL) {
26 fprintf(fp, "interface Interface%03d {\n", i);
28 fprintf(fp, " int func%03d();\n", i);
29 fprintf(fp, "}\n");
30 fclose(fp);
33 fp = fopen("func-decl", "w");
34 fprintf(fp, " implements\n");
36 fprintf(fp, " Interface%03d%s\n", i, (i == count-1) ? "" : ",")
    [all...]
  /dalvik/vm/mterp/cstubs/
enddefs.cpp 5 #undef fp macro
  /device/asus/flo/conn_init/
conn_init.c 31 FILE *fp = NULL; local
33 fp = fopen("/persist/wifi/.macaddr", "r");
34 if ( fp == NULL )
41 n = fread(macAddress, 12, 1, fp);
42 fclose(fp);
  /device/lge/mako/conn_init/
conn_init.c 31 FILE *fp = NULL; local
33 fp = fopen("/persist/wifi/.macaddr", "r");
34 if ( fp == NULL )
41 n = fread(macAddress, 12, 1, fp);
42 fclose(fp);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampling_test.cc 59 FILE* fp = fopen(filename.c_str(), "w"); local
60 fwrite(s.data(), 1, s.length(), fp);
61 fclose(fp);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampling_test.cc 59 FILE* fp = fopen(filename.c_str(), "w"); local
60 fwrite(s.data(), 1, s.length(), fp);
61 fclose(fp);
  /external/clang/test/CXX/except/except.spec/
p2-places.cpp 13 void (*fp)() throw (int); member in namespace:dyn
48 void (*fp)() noexcept(false);
  /external/clang/test/FixIt/
dereference-addressof.c 9 void fp(float *aPtr) {} // expected-note{{passing argument to parameter 'aPtr' here}} function
17 fp(*bPtr); // expected-error{{passing 'float' to parameter of incompatible type 'float *'; remove *}}
  /external/clang/test/Parser/
pointer_promotion.c 7 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/clang/test/Sema/
2007-10-01-BuildArrayRef.c 16 const struct foo *fp; local
17 fp = &sfoo;
18 fp[0].bar = 1; // expected-error {{ assignment of read-only member}}

Completed in 917 milliseconds

1 2 3 4 5 6 7 8 91011>>