Searched refs:fp (Results 26 - 50 of 1268) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c37 struct nv30_fragprog *fp = nv30->fragprog.program; local
43 if (unlikely(!fp->buffer)) {
44 fp->buffer = pipe_buffer_create(pipe->screen, 0, 0, fp->insn_len * 4);
47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer);
49 memcpy(map, fp->insn, fp->insn_len * 4);
51 for (i = 0; i < fp->insn_len; i++)
52 *map++ = (fp->insn[i] >> 16) | (fp
65 struct nv30_fragprog *fp = nv30->fragprog.program; local
134 struct nv30_fragprog *fp = CALLOC_STRUCT(nv30_fragprog); local
146 struct nv30_fragprog *fp = hwcso; local
[all...]
/external/oprofile/libutil/
H A Dop_fileio.h55 * @param fp file pointer
61 void op_close_file(FILE * fp);
65 * @param fp file pointer
72 void op_write_file(FILE * fp, void const * buf, size_t size);
76 * @param fp file pointer
84 void op_write_u32(FILE * fp, u32 val);
88 * @param fp file pointer
96 void op_write_u64(FILE * fp, u64 val);
100 * @param fp file pointer
106 void op_write_u8(FILE * fp, u
[all...]
/external/ppp/pppd/plugins/rp-pppoe/
H A Ddebug.c28 * fp -- file to dump to
34 * Dumps buffer to fp in an easy-to-read format
37 dumpHex(FILE *fp, unsigned char const *buf, int len) argument
42 if (!fp) return;
46 fprintf(fp, "(PAP Authentication Frame -- Contents not dumped)\n");
53 fprintf(fp, "%02x ", (unsigned) buf[i]);
55 fprintf(fp, " ");
58 fprintf(fp, " ");
62 fprintf(fp, "%c", buf[i]);
64 fprintf(fp, "
86 dumpPacket(FILE *fp, PPPoEPacket *packet, char const *dir) argument
[all...]
/external/blktrace/btt/
H A Dq2d.c69 void q2d_display_header(FILE *fp) argument
71 fprintf(fp, "%5s ", "<.005");
72 fprintf(fp, "%5s ", "<.010");
73 fprintf(fp, "%5s ", "<.025");
74 fprintf(fp, "%5s ", "<.050");
75 fprintf(fp, "%5s ", "<.075");
76 fprintf(fp, "%5s ", "<.100");
77 fprintf(fp, "%5s ", "<.250");
78 fprintf(fp, "%5s ", "<.500");
79 fprintf(fp, "
83 q2d_display_dashes(FILE *fp) argument
92 q2d_display(FILE *fp, void *priv) argument
[all...]
H A Dbno_dump.c29 FILE *fp; local
38 if ((fp = my_fopen(oname, "w")) == NULL)
41 add_file(fp, oname);
42 return fp;
45 static inline void bno_dump_write(FILE *fp, struct io *iop) argument
47 fprintf(fp, "%15.9lf %lld %lld\n", BIT_TIME(iop->t.time),
75 FILE *fp = IOP_READ(iop) ? bdp->rfp : bdp->wfp; local
77 if (fp)
78 bno_dump_write(fp, iop);
/external/clang/test/CodeGen/
H A Dc11atomics.c139 void testFloat(_Atomic(float) *fp) {
149 __c11_atomic_init(fp, 1.0f);
160 float f = *fp;
168 *fp = f;
174 void testComplexFloat(_Atomic(_Complex float) *fp) {
187 __c11_atomic_init(fp, 1.0f);
207 _Complex float f = *fp;
221 *fp = f;
228 void testStruct(_Atomic(S) *fp) {
244 __c11_atomic_init(fp, (
[all...]
/external/bison/lib/
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...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DNETEQTEST_DummyRTPpacket.h18 virtual int readFromFile(FILE* fp) OVERRIDE;
19 virtual int writeToFile(FILE* fp) OVERRIDE;
/external/clang/test/CodeGenCXX/
H A Dattr-cleanup.cpp9 void *fp __attribute__((cleanup(N::free))); local
/external/compiler-rt/test/msan/
H A Dwrap_indirect_calls2.cc36 volatile Fn fp; local
37 fp = &f;
38 fp();
40 fp();
H A Dgetline.cc19 FILE *fp = fopen(argv[1], "r"); local
20 assert(fp);
24 int n = getline(&line, &len, fp);
28 n = getline(&line, &len, fp);
33 fclose(fp);
/external/libsepol/tests/
H A Ddebug.h26 extern void print_ebitmap(ebitmap_t * bitmap, FILE * fp);
27 extern void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp);
/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'}}
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp19.cpp20 void test(X<int> xi, X<long> xl, float *fp) { argument
22 xii.member = fp;
25 xi.f(17, fp); // expected-note{{instantiation}}
28 xli.member = fp; // expected-error{{no member}}
29 xl.f(17, fp); // okay
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsysfs.c31 FILE *fp; local
47 fp = fopen("/proc/mounts", "r");
48 if (fp == NULL)
52 fscanf(fp, "%*s %" STR(PATH_MAX) "s %99s %*s %*d %*d\n",
59 fclose(fp);
/external/chromium_org/third_party/opus/src/silk/
H A Ddebug.c85 FILE *fp; local
106 fp = fopen(file_name, "w");
107 fprintf(fp, " min avg %% max count\n");
110 fprintf(fp, "%-28s", silk_Timer_tags[k]);
112 fprintf(fp, " %-27s", silk_Timer_tags[k]);
114 fprintf(fp, " %-26s", silk_Timer_tags[k]);
116 fprintf(fp, " %-25s", silk_Timer_tags[k]);
118 fprintf(fp, " %-24s", silk_Timer_tags[k]);
121 fprintf(fp, "%8.2f", (1e6 * (silk_max_64(silk_Timer_min[k] - del, 0))) / lpFrequency.QuadPart);
122 fprintf(fp, "
136 FILE *fp; local
[all...]
/external/e2fsprogs/lib/e2p/
H A Dpf.c58 struct flags_name *fp; local
61 for (fp = flags_array; fp->flag != 0; fp++) {
62 if (flags & fp->flag) {
68 fputs(fp->long_name, f);
70 fputs(fp->short_name, f);
/external/libopus/silk/
H A Ddebug.c85 FILE *fp; local
106 fp = fopen(file_name, "w");
107 fprintf(fp, " min avg %% max count\n");
110 fprintf(fp, "%-28s", silk_Timer_tags[k]);
112 fprintf(fp, " %-27s", silk_Timer_tags[k]);
114 fprintf(fp, " %-26s", silk_Timer_tags[k]);
116 fprintf(fp, " %-25s", silk_Timer_tags[k]);
118 fprintf(fp, " %-24s", silk_Timer_tags[k]);
121 fprintf(fp, "%8.2f", (1e6 * (silk_max_64(silk_Timer_min[k] - del, 0))) / lpFrequency.QuadPart);
122 fprintf(fp, "
136 FILE *fp; local
[all...]
/external/iproute2/ip/
H A Dxfrm_monitor.c48 FILE *fp = (FILE*)arg; local
68 fprintf(fp, "acquire ");
70 fprintf(fp, "proto %s ", strxf_xfrmproto(xacq->id.proto));
73 fprintf(fp, "spi 0x%08x", spi);
75 fprintf(fp, "(%u)", spi);
76 fprintf(fp, " ");
78 fprintf(fp, "%s", _SL_);
80 xfrm_selector_print(&xacq->sel, family, fp, " sel ");
82 xfrm_policy_info_print(&xacq->policy, tb, fp, " ", " policy ");
85 fprintf(fp, " se
109 FILE *fp = (FILE*)arg; local
140 FILE *fp = (FILE*)arg; local
177 FILE *fp = (FILE*)arg; local
212 FILE *fp = (FILE*)arg; local
225 xfrm_usersa_print(const struct xfrm_usersa_id *sa_id, __u32 reqid, FILE *fp) argument
242 FILE *fp = (FILE*)arg; local
262 xfrm_print_addr(FILE *fp, int family, xfrm_address_t *a, size_t s) argument
273 FILE *fp = (FILE*)arg; local
295 FILE *fp = (FILE*)arg; local
403 FILE *fp; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/stdio/
H A Dhist.c9 static size_t callchain__fprintf_left_margin(FILE *fp, int left_margin) argument
12 int ret = fprintf(fp, " ");
15 ret += fprintf(fp, " ");
20 static size_t ipchain__fprintf_graph_line(FILE *fp, int depth, int depth_mask, argument
24 size_t ret = callchain__fprintf_left_margin(fp, left_margin);
28 ret += fprintf(fp, "| ");
30 ret += fprintf(fp, " ");
32 ret += fprintf(fp, "\n");
37 static size_t ipchain__fprintf_graph(FILE *fp, struct callchain_list *chain, argument
45 ret += callchain__fprintf_left_margin(fp, left_margi
82 __callchain__fprintf_graph(FILE *fp, struct rb_root *root, u64 total_samples, int depth, int depth_mask, int left_margin) argument
161 callchain__fprintf_graph(FILE *fp, struct rb_root *root, u64 total_samples, int left_margin) argument
216 __callchain__fprintf_flat(FILE *fp, struct callchain_node *self, u64 total_samples) argument
242 callchain__fprintf_flat(FILE *fp, struct rb_root *self, u64 total_samples) argument
269 hist_entry_callchain__fprintf(struct hist_entry *he, u64 total_samples, int left_margin, FILE *fp) argument
294 hist_entry__callchain_fprintf(struct hist_entry *he, struct hists *hists, FILE *fp) argument
351 hist_entry__fprintf(struct hist_entry *he, size_t size, struct hists *hists, char *bf, size_t bfsz, FILE *fp) argument
375 hists__fprintf(struct hists *hists, bool show_header, int max_rows, int max_cols, float min_pcnt, FILE *fp) argument
520 events_stats__fprintf(struct events_stats *stats, FILE *fp) argument
[all...]
/external/iproute2/misc/
H A Difstat.c149 void load_raw_table(FILE *fp) argument
155 while (fgets(buf, sizeof(buf), fp) != NULL) {
212 void dump_raw_db(FILE *fp, int to_hist) argument
216 fprintf(fp, "#%s\n", info_source);
235 fprintf(fp, "%d %s ", n->ifindex, n->name);
237 fprintf(fp, "%llu %u ", vals[i], (unsigned)rates[i]);
238 fprintf(fp, "\n");
247 void format_rate(FILE *fp, unsigned long long *vals, double *rates, int i) argument
251 fprintf(fp, "%7lluM ", vals[i]/mega);
253 fprintf(fp, "
267 format_pair(FILE *fp, unsigned long long *vals, int i, int k) argument
287 print_head(FILE *fp) argument
330 print_one_if(FILE *fp, struct ifstat_ent *n, unsigned long long *vals) argument
377 dump_kern_db(FILE *fp) argument
391 dump_incr_db(FILE *fp) argument
522 FILE *fp = fdopen(clnt, "w"); local
[all...]
/external/llvm/test/MC/Mips/
H A Dmips-abi-bad.s4 .module fp=3
6 # CHECK-NEXT : .module fp=3
9 .set fp=xx,6
11 # CHECK-NEXT : .set fp=xx,6
16 .module fp=32
19 # CHECK-NEXT : .module fp=32
/external/chromium_org/mojo/system/
H A Dplatform_handle_dispatcher_unittest.cc28 base::ScopedFILE fp(
30 ASSERT_TRUE(fp);
32 fwrite(kHelloWorld, 1, sizeof(kHelloWorld), fp.get()));
35 mojo::test::PlatformHandleFromFILE(fp.Pass()));
36 EXPECT_FALSE(fp);
47 fp = mojo::test::FILEFromPlatformHandle(h.Pass(), "rb").Pass();
49 EXPECT_TRUE(fp);
51 rewind(fp.get());
54 fread(read_buffer, 1, sizeof(read_buffer), fp.get()));
71 base::ScopedFILE fp(
[all...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp3.cpp15 void mem8(int (*fp)(int) = (int (*)(int = 17))0); // expected-error{{default arguments can only be specified for parameters in a function declaration}}
/external/iproute2/netem/
H A Dstats.c18 stats(FILE *fp) argument
27 fstat(fileno(fp), &info);
36 fscanf(fp, "%lf", &x[i]);
37 if (feof(fp))
64 FILE *fp; local
67 fp = fopen(argv[1], "r");
68 if (!fp) {
73 fp = stdin;
75 stats(fp);

Completed in 3022 milliseconds

1234567891011>>