Searched defs:fp (Results 201 - 225 of 659) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dexprs.c57 void f0(void (*fp)(void), void (*fp2)(void)) { argument
58 int x = fp - fp2;
73 void (*fp)(void) = f2;
75 ++fp;
76 fp++;
77 --fp;
78 fp--;
79 return (unsigned) fp;
143 // Make sure negate of fp uses -0.0 for proper -0 handling.
/external/clang/test/Sema/
H A Dformat-strings-scanf.c96 void test_alloc_extension(char **sp, wchar_t **lsp, float *fp) { argument
114 scanf("%ms", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
115 scanf("%mS", fp); // expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}}
116 scanf("%mc", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
117 scanf("%mC", fp); // expected-warning-re{{format specifies type 'wchar_t **' (aka '{{[^']+}}') but the argument has type 'float *'}}
118 scanf("%m[abc]", fp); // expected-warning{{format specifies type 'char **' but the argument has type 'float *'}}
H A Doverloadable.c14 float *fp = f(fv); local
25 float *fp = accept_funcptr(f1); local
36 float *fp = accept_struct(y); local
/external/clang/test/SemaCXX/
H A Dconst-cast.cpp38 f fp = 0; local
40 f *fpp = const_cast<f*>(&fp);
H A Dformat-strings.cpp11 void f(char **sp, float *fp) { argument
16 scanf("%afoobar", fp);
/external/clang/test/SemaTemplate/
H A Ddependent-base-classes.cpp78 type *foo(float *fp) { return fp; } argument
/external/curl/lib/
H A Dformdata.h46 FILE *fp; /* file to read from */ member in struct:Form
/external/curl/src/
H A Dtool_parsecfg.c44 static char *my_get_line(FILE *fp);
332 static char *my_get_line(FILE *fp) argument
339 if(NULL == fgets(buf, sizeof(buf), fp))
/external/dbus/dbus/
H A Ddbus-nonce.c103 FILE *fp; local
114 fp = fopen (_dbus_string_get_const_data (fname), "rb");
115 if (!fp)
117 nread = fread (buffer, 1, sizeof buffer - 1, fp);
118 fclose (fp);
/external/e2fsprogs/intl/
H A Dlocalcharset.c118 FILE *fp; local
138 if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL)
153 c = getc (fp);
162 c = getc (fp);
168 ungetc (c, fp);
169 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
192 fclose (fp);
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dlmpar.h21 Scalar fp; local
64 fp = dxnorm - delta;
65 if (fp <= Scalar(0.1) * delta) {
88 parl = fp / delta / temp / temp;
121 temp = fp;
122 fp = dxnorm - delta;
127 if (abs(fp) <= Scalar(0.1) * delta || (parl == 0. && fp <= temp && temp < 0.) || iter == 10)
142 parc = fp / delta / temp / temp;
145 if (fp >
179 Scalar fp; local
[all...]
/external/elfutils/libelf/
H A Delf_getdata.c164 xfct_t fp; local
194 fp = __elf_xfctstom[version - 1][__libelf_version - 1][eclass - 1][type];
196 fp = __elf_xfctstom[0][0][eclass - 1][type];
199 fp (scn->data_base, rawdata_source, size, 0);
/external/fio/engines/
H A Dlibhdfs.c32 hdfsFile fp; member in struct:hdfsio_data
44 hd->fp = hdfsOpenFile(hd->fs, ".fcount", O_RDONLY, 0, 0, 0);
45 if (hd->fp) {
46 hdfsRead(hd->fs, hd->fp, &(hd->fscount), sizeof(hd->fscount));
47 hdfsCloseFile(hd->fs, hd->fp);
49 hd->fp = hdfsOpenFile(hd->fs, ".fbs", O_RDONLY, 0, 0, 0);
50 if (hd->fp) {
51 hdfsRead(hd->fs, hd->fp, &(hd->fsbs), sizeof(hd->fsbs));
52 hdfsCloseFile(hd->fs, hd->fp);
82 hdfsCloseFile(hd->fs, hd->fp);
[all...]
/external/google-breakpad/src/tools/linux/symupload/
H A Dsym_upload.cc86 FILE* fp = fopen(file.c_str(), "r"); local
87 if (fp) {
89 if (fgets(buffer, sizeof(buffer), fp)) {
94 fclose(fp);
103 fclose(fp);
/external/gtest/test/
H A Dgtest-filepath_test.cc596 FilePath fp; local
597 EXPECT_EQ("", fp.string());
601 const FilePath fp("spicy");
602 EXPECT_EQ("spicy", fp.string());
604 const FilePath fp_copy(fp);
609 const FilePath fp(std::string("cider"));
610 EXPECT_EQ("cider", fp.string());
/external/icu/icu4c/source/extra/uconv/
H A Duwmsg.c118 /* Format a message and print it's output to fp */
119 U_CFUNC int u_wmsg(FILE *fp, const char *tag, ... ) argument
151 uprint(result, resultLength, fp, &err);
153 uprint(msg,msgLen, fp, &err);
171 uprint(msg,msgLen, fp, &err);
175 uprint(result, resultLength, fp, &err);
/external/icu/icu4c/source/i18n/
H A Dscientificnumberformatter.cpp136 FieldPosition fp; local
138 while (fpi.next(fp)) {
139 switch (fp.getField()) {
144 fp.getBeginIndex() - copyFromOffset);
145 copyFromOffset = fp.getEndIndex();
150 int32_t beginIndex = fp.getBeginIndex();
151 int32_t endIndex = fp.getEndIndex();
176 fp.getBeginIndex() - copyFromOffset);
179 fp.getBeginIndex(),
180 fp
210 FieldPosition fp; local
[all...]
/external/iproute2/bridge/
H A Dmdb.c88 FILE *fp = arg; local
115 br_print_mdb_entry(fp, r->ifindex, i, n);
121 fprintf(fp, "router ports on %s: ",
123 br_print_router_ports(fp, tb[MDBA_ROUTER]);
131 fprintf(fp, "Deleted ");
132 fprintf(fp, "router port dev %s master %s\n",
138 fflush(fp);
H A Dvlan.c144 FILE *fp = arg; local
171 fprintf(fp, "%s\tNone\n", ll_index_to_name(ifm->ifi_index));
177 fprintf(fp, "%s", ll_index_to_name(ifm->ifi_index));
186 fprintf(fp, "-%hu", vinfo->vid);
188 fprintf(fp, "\t %hu", vinfo->vid);
192 fprintf(fp, " PVID");
194 fprintf(fp, " Egress Untagged");
195 fprintf(fp, "\n");
198 fprintf(fp, "\n");
199 fflush(fp);
[all...]
/external/iproute2/ip/
H A Dip6tunnel.c328 FILE *fp = fopen("/proc/net/dev", "r"); local
329 if (fp == NULL) {
335 if (!fgets(buf, sizeof(buf), fp) ||
336 !fgets(buf, sizeof(buf), fp)) {
341 while (fgets(buf, sizeof(buf), fp) != NULL) {
384 fclose(fp);
H A Dipaddrlabel.c58 FILE *fp = (FILE*)arg; local
74 fprintf(fp, "Deleted ");
77 fprintf(fp, "prefix %s/%u ",
86 fprintf(fp, "dev %s ", ll_index_to_name(ifal->ifal_index));
91 fprintf(fp, "label %u ", label);
94 fprintf(fp, "\n");
95 fflush(fp);
H A Diplink_vlan.c181 static void vlan_print_flags(FILE *fp, __u32 flags) argument
183 fprintf(fp, "<");
186 fprintf(fp, #f "%s", flags ? "," : ""); \
194 fprintf(fp, "%x", flags);
195 fprintf(fp, "> ");
H A Dipmonitor.c41 static void print_headers(FILE *fp, char *label, struct rtnl_ctrl_data *ctrl) argument
44 print_timestamp(fp);
48 fprintf(fp, "[nsid current]");
50 fprintf(fp, "[nsid %d]", ctrl->nsid);
54 fprintf(fp, "%s", label);
61 FILE *fp = (FILE*)arg; local
77 print_headers(fp, "[MROUTE]", ctrl);
81 print_headers(fp, "[ROUTE]", ctrl);
89 print_headers(fp, "[LINK]", ctrl);
94 print_headers(fp, "[ADD
286 FILE *fp; local
[all...]
H A Dipmroute.c58 FILE *fp = (FILE*)arg; local
123 fprintf(fp, "Deleted ");
142 fprintf(fp, "%-32s Iif: ", obuf);
144 fprintf(fp, "%-10s ", ll_index_to_name(iif));
146 fprintf(fp, "unresolved ");
161 fprintf(fp, "Oifs: ");
164 fprintf(fp, "%s", ll_index_to_name(nh->rtnh_ifindex));
166 fprintf(fp, "(ttl %d) ", nh->rtnh_hops);
168 fprintf(fp, " ");
176 fprintf(fp, "
[all...]
H A Diproute_lwtunnel.c58 static void print_encap_mpls(FILE *fp, struct rtattr *encap) argument
66 fprintf(fp, " %s ", format_host(AF_MPLS,
72 static void print_encap_ip(FILE *fp, struct rtattr *encap) argument
80 fprintf(fp, "id %llu ", ntohll(rta_getattr_u64(tb[LWTUNNEL_IP_ID])));
83 fprintf(fp, "src %s ",
90 fprintf(fp, "dst %s ",
97 fprintf(fp, "ttl %d ", rta_getattr_u8(tb[LWTUNNEL_IP_TTL]));
100 fprintf(fp, "tos %d ", rta_getattr_u8(tb[LWTUNNEL_IP_TOS]));
103 static void print_encap_ila(FILE *fp, struct rtattr *encap) argument
114 fprintf(fp, "
118 print_encap_ip6(FILE *fp, struct rtattr *encap) argument
149 lwt_print_encap(FILE *fp, struct rtattr *encap_type, struct rtattr *encap) argument
[all...]

Completed in 622 milliseconds

1234567891011>>