Searched defs:fp (Results 151 - 175 of 675) sorted by relevance

1234567891011>>

/external/jpeg/
H A Drdswitch.c85 FILE * fp; local
90 if ((fp = fopen(filename, "r")) == NULL) {
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
99 fclose(fp);
104 if (! read_text_integer(fp, &val, &termchar)) {
106 fclose(fp);
117 fclose(fp);
121 fclose(fp);
175 FILE * fp; local
182 if ((fp
[all...]
/external/linux-tools-perf/util/
H A Dthread.c58 static size_t thread__fprintf(struct thread *self, FILE *fp) argument
60 return fprintf(fp, "Thread %d %s\n", self->pid, self->comm) +
61 map_groups__fprintf(&self->mg, verbose, fp);
128 size_t perf_session__fprintf(struct perf_session *self, FILE *fp) argument
136 ret += thread__fprintf(pos, fp);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_printf.c46 write_tsv_header(FILE *fp) argument
48 fprintf(fp,
52 fflush(fp);
89 test_printf(unsigned verbose, FILE *fp, argument
116 test_all(unsigned verbose, FILE *fp) argument
120 test_printf(verbose, fp, NULL);
127 test_some(unsigned verbose, FILE *fp, argument
130 return test_all(verbose, fp);
135 test_single(unsigned verbose, FILE *fp) argument
/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...]
H A Dnv30_vertprog.c58 struct nv30_fragprog *fp = nv30->fragprog.program; local
64 if (memcmp(vp->texcoord, fp->texcoord, sizeof(vp->texcoord))) {
67 memcpy(vp->texcoord, fp->texcoord, sizeof(vp->texcoord));
212 PUSH_DATA (push, vp->or | fp->vp_or);
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_shader_state.c108 struct nvc0_program *fp = nvc0->fragprog; local
110 if (!nvc0_program_validate(nvc0, fp))
112 nvc0_program_update_context_state(nvc0, fp, 4);
114 if (fp->fp.early_z != nvc0->state.early_z_forced) {
115 nvc0->state.early_z_forced = fp->fp.early_z;
116 IMMED_NVC0(push, NVC0_3D(FORCE_EARLY_FRAGMENT_TESTS), fp->fp.early_z);
121 PUSH_DATA (push, fp
[all...]
/external/openssh/
H A Dauth2-hostbased.c147 char *fp; local
199 fp = key_fingerprint(key->cert->signature_key,
203 key_type(key->cert->signature_key), fp,
206 fp = key_fingerprint(key, SSH_FP_MD5, SSH_FP_HEX);
208 key_type(key), fp, cuser, lookup);
210 xfree(fp);
/external/openssl/crypto/asn1/
H A Dt_req.c74 int X509_REQ_print_fp(FILE *fp, X509_REQ *x) argument
84 BIO_set_fp(b,fp,BIO_NOCLOSE);
/external/openssl/crypto/bio/
H A Db_dump.c161 static int write_fp(const void *data, size_t len, void *fp) argument
163 return UP_fwrite(data, len, 1, fp);
165 int BIO_dump_fp(FILE *fp, const char *s, int len) argument
167 return BIO_dump_cb(write_fp, fp, s, len);
169 int BIO_dump_indent_fp(FILE *fp, const char *s, int len, int indent) argument
171 return BIO_dump_indent_cb(write_fp, fp, s, len, indent);
H A Dbf_null.c74 static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp);
156 static long nullf_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp) argument
164 ret=BIO_callback_ctrl(b->next_bio,cmd,fp);
/external/openssl/crypto/pem/
H A Dpem_pk8.c183 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, argument
187 return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u);
190 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, argument
194 return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u);
197 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, argument
201 return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u);
204 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, argument
207 return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u);
210 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, argument
216 if(!(bp = BIO_new_fp(fp, BIO_NOCLOS
225 d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u) argument
[all...]
H A Dpem_pkey.c209 EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u) argument
219 BIO_set_fp(b,fp,BIO_NOCLOSE);
225 int PEM_write_PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, argument
232 if ((b=BIO_new_fp(fp, BIO_NOCLOSE)) == NULL)
/external/openssl/crypto/pkcs12/
H A Dp12_utl.c104 int i2d_PKCS12_fp(FILE *fp, PKCS12 *p12) argument
106 return ASN1_item_i2d_fp(ASN1_ITEM_rptr(PKCS12), fp, p12);
115 PKCS12 *d2i_PKCS12_fp(FILE *fp, PKCS12 **p12) argument
117 return ASN1_item_d2i_fp(ASN1_ITEM_rptr(PKCS12), fp, p12);
/external/oprofile/daemon/liblegacy/
H A Dopd_parse_proc.c94 FILE * fp; local
107 fp = op_try_open_file(mapsfile, "r");
108 if (!fp)
120 line = op_get_line(fp);
161 op_close_file(fp);
169 FILE * fp; local
176 fp = op_try_open_file(status_file, "r");
177 if (!fp)
181 line = op_get_line(fp);
187 op_close_file(fp);
[all...]
/external/oprofile/daemon/
H A Dopd_kernel.c141 FILE * fp; local
159 fp = op_try_open_file("/proc/modules", "r");
161 if (!fp) {
168 line = op_get_line(fp);
196 op_close_file(fp);
/external/oprofile/libutil/
H A Dop_fileio.c24 FILE * fp; local
26 fp = fopen(name, mode);
28 if (!fp) {
36 return fp;
52 void op_close_file(FILE * fp) argument
54 if (fclose(fp))
59 void op_write_file(FILE * fp, void const * buf, size_t size) argument
66 written = fwrite(buf, size, 1, fp);
77 void op_write_u8(FILE * fp, u8 val) argument
79 op_write_file(fp,
83 op_write_u32(FILE * fp, u32 val) argument
89 op_write_u64(FILE * fp, u64 val) argument
97 FILE * fp; local
126 op_get_line(FILE * fp) argument
[all...]
/external/oprofile/libutil++/
H A Dbfd_spu_support.cpp93 FILE * fp = fdopen(fd, "r"); local
94 spu_elf_stream->stream = fp;
/external/qemu/distrib/jpeg-6b/
H A Drdswitch.c85 FILE * fp; local
90 if ((fp = fopen(filename, "r")) == NULL) {
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
99 fclose(fp);
104 if (! read_text_integer(fp, &val, &termchar)) {
106 fclose(fp);
117 fclose(fp);
121 fclose(fp);
175 FILE * fp; local
182 if ((fp
[all...]
/external/srec/srec/crec/
H A Dcomp_stats.c68 void dump_comp_stats(COMP_STATS *cs, PFile* fp) argument
75 pfprintf(fp, "***WARNING: clock overrun!\n");
81 pfprintf(fp, "Total Time %5.2f Seconds\n", cs->total_time);
83 print_cs_clock(&cs->front_end, cs->total_time, fp, "Front end", "Frames");
84 print_cs_clock(&cs->overall_search, cs->total_time, fp, "Total Search", "Frames");
85 print_cs_clock(&cs->models, cs->total_time, fp, " Models", "Models");
86 print_cs_clock(&cs->internal_hmm, cs->total_time, fp, " Internal HMM", "HMMs");
87 print_cs_clock(&cs->fsm_to_hmm, cs->total_time, fp, " FSM to HMM", "FSM_Nodes");
88 print_cs_clock(&cs->prune, cs->total_time, fp, " Prune", "HMM States");
89 print_cs_clock(&cs->hmm_to_fsm, cs->total_time, fp, " HM
98 print_cs_clock(CS_CLOCK *c, float num_seconds, PFile* fp, char *prompt, char *item_name) argument
[all...]
/external/aac/libSYS/include/
H A Dwav_file.h158 FDKFILE *fp; member in struct:WAV
/external/bison/lib/
H A Dlocalcharset.c172 FILE *fp; local
174 fp = fdopen (fd, "r");
175 if (fp == NULL)
195 c = getc (fp);
204 c = getc (fp);
210 ungetc (c, fp);
211 if (fscanf (fp, "%50s %50s", buf1, buf2) < 2)
236 fclose (fp);
/external/blktrace/btt/
H A Dmisc.c118 void add_file(FILE *fp, char *oname) argument
122 fip->ofp = fp;
157 FILE *fp; local
160 fp = fopen(path, mode);
161 } while (fp == NULL && handle_open_failure());
163 return fp;
/external/blktrace/
H A Dstats.h88 static inline int minmax_print(FILE *fp, const char *s, struct minmax *mm) argument
90 return fprintf(fp, "%s: num %Ld, min %Ld, max %Ld, sum %Ld, squ %Ld, "
139 static inline void histlog2_print(FILE *fp, const char *s, __u32 a[], argument
144 fprintf(fp, "%s:\n", s);
146 fprintf(fp, " %10ld:%6d",
149 fprintf(fp, "\n");
151 fprintf(fp, " >%8ld:%6d\n",
/external/checkpolicy/
H A Dcheckmodule.c55 struct policy_file f, *fp; local
80 fp = &f;
87 if (policydb_read(p, fp, 1)) {
132 pf.fp = outfp;
/external/chromium_org/content/common/
H A Dpage_state_serialization_unittest.cc382 FILE* fp = base::OpenFile(path, "wb"); local
383 ASSERT_TRUE(fp);
390 ASSERT_EQ(1U, fwrite(segment.data(), segment.size(), 1, fp));
393 fclose(fp);

Completed in 460 milliseconds

1234567891011>>