HomeSort by relevance Sort by last modified time
    Searched defs:fp (Results 1 - 25 of 385) 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 4 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/bionic/
cpuacct.c 37 FILE *fp; local
41 fp = fopen(buf, "w+");
42 if (!fp) {
50 fp = fopen(buf, "w+");
52 if (!fp)
55 fprintf(fp, "0");
56 if (fclose(fp))
  /bionic/libc/stdio/
funopen.c 43 FILE *fp; local
58 if ((fp = __sfp()) == NULL)
60 fp->_flags = flags;
61 fp->_file = -1;
62 fp->_cookie = (void *)cookie; /* SAFE: cookie not modified */
63 fp->_read = readfn;
64 fp->_write = writefn;
65 fp->_seek = seekfn;
66 fp->_close = closefn;
67 return (fp);
    [all...]
fopen.c 45 FILE *fp; local
51 if ((fp = __sfp()) == NULL)
54 fp->_flags = 0; /* release */
57 fp->_file = f;
58 fp->_flags = flags;
59 fp->_cookie = fp;
60 fp->_read = __sread;
61 fp->_write = __swrite;
62 fp->_seek = __sseek
    [all...]
fwalk.c 42 FILE *fp; local
48 for (fp = g->iobs, n = g->niobs; --n >= 0; fp++) {
49 if ((fp->_flags != 0) && ((fp->_flags & __SIGN) == 0))
50 ret |= (*function)(fp);
fdopen.c 44 FILE *fp; local
59 if ((fp = __sfp()) == NULL)
61 fp->_flags = flags;
68 fp->_flags |= __SAPP;
69 fp->_file = fd;
70 fp->_cookie = fp;
71 fp->_read = __sread;
72 fp->_write = __swrite;
73 fp->_seek = __sseek
    [all...]
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...]
  /external/clang/test/CodeGen/
2009-06-01-addrofknr.c 17 struct funcptr fp; local
19 fp.func = &func;
20 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 {{reinterpret_cast between pointer-to-function and pointer-to-object is an extension}}
incomplete-call.cpp 21 Func fp; local
22 fp(); // expected-error {{calling function with incomplete return type 'A'}}
  /external/valgrind/main/exp-ptrcheck/tests/
fp.c 7 float* fp = malloc(sizeof(float)); local
10 *fp += 30.0; // ok
12 free(fp);
14 *fp += 30.0; // bad, been freed
  /external/dhcpcd/
platform-linux.c 76 FILE *fp; local
84 fp = fopen("/proc/cpuinfo", "r");
85 if (fp == NULL)
89 while ((buf = get_line(fp))) {
99 fclose(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);
op_lockfile.c 24 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, "%d", getpid())
    [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
  /external/bison/lib/
fopen-safer.c 39 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/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}}
  /external/iproute2/tc/
tc_monitor.c 40 FILE *fp = (FILE*)arg; local
61 fprintf(fp, "Unknown message: length %08d type %08x flags %08x\n",
89 FILE *fp; local
90 fp = fopen(file, "r");
91 if (fp == NULL) {
95 return rtnl_from_file(fp, accept_tcmsg, (void*)stdout);
  /external/valgrind/main/memcheck/tests/
fprw.c 12 float* fp = malloc(sizeof(float)); local
17 *fp += ( f > 0.1 ? 20.0 : 21.0 );
19 free(fp);
21 *fp += 30.0;
  /sdk/monkeyrunner/scripts/
help.py 44 fp = open(saveto_path, 'w') variable
45 fp.write(output)
46 fp.close()

Completed in 436 milliseconds

1 2 3 4 5 6 7 8 91011>>