Searched refs:fp (Results 251 - 275 of 1268) sorted by relevance

<<11121314151617181920>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsymbol-minimal.c83 FILE *fp; local
91 fp = fopen(filename, "r");
92 if (fp == NULL)
95 if (fread(e_ident, sizeof(e_ident), 1, fp) != 1)
105 fseek(fp, 0, SEEK_SET);
111 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1)
125 fseek(fp, ehdr.e_phoff, SEEK_SET);
126 if (fread(buf, buf_size, 1, fp) != 1)
147 fseek(fp, phdr->p_offset, SEEK_SET);
148 if (fread(buf, buf_size, 1, fp) !
[all...]
H A Dvalues.h24 void perf_read_values_display(FILE *fp, struct perf_read_values *values,
H A Dmap.c235 size_t map__fprintf(struct map *map, FILE *fp) argument
237 return fprintf(fp, " %" PRIx64 "-%" PRIx64 " %" PRIx64 " %s\n",
241 size_t map__fprintf_dsoname(struct map *map, FILE *fp) argument
252 return fprintf(fp, "%s", dsoname);
375 enum map_type type, int verbose, FILE *fp)
377 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
382 printed += fprintf(fp, "Map:");
383 printed += map__fprintf(pos, fp);
385 printed += dso__fprintf(pos->dso, type, fp);
386 printed += fprintf(fp, "
374 __map_groups__fprintf_maps(struct map_groups *mg, enum map_type type, int verbose, FILE *fp) argument
393 map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp) argument
401 __map_groups__fprintf_removed_maps(struct map_groups *mg, enum map_type type, int verbose, FILE *fp) argument
419 map_groups__fprintf_removed_maps(struct map_groups *mg, int verbose, FILE *fp) argument
428 map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp) argument
435 map_groups__fixup_overlappings(struct map_groups *mg, struct map *map, int verbose, FILE *fp) argument
[all...]
H A Dcgroup.c13 FILE *fp; local
18 fp = fopen("/proc/mounts", "r");
19 if (!fp)
27 while (fscanf(fp, "%*s %"STR(PATH_MAX)"s %"STR(PATH_MAX)"s %"
46 fclose(fp);
H A Dsession.h98 size_t perf_session__fprintf(struct perf_session *self, FILE *fp);
100 size_t perf_session__fprintf_dsos(struct perf_session *self, FILE *fp);
102 size_t perf_session__fprintf_dsos_buildid(struct perf_session *session, FILE *fp,
105 size_t perf_session__fprintf_nr_events(struct perf_session *session, FILE *fp);
117 void perf_session__fprintf_info(struct perf_session *s, FILE *fp, bool full);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c47 dump_type(FILE *fp, argument
50 fprintf(fp, "%s%s%u%sx%u",
284 dump_vec(FILE *fp, struct lp_type type, const void *src) argument
289 fprintf(fp, " ");
303 fprintf(fp, "%f", value);
331 fprintf(fp, format, value);
358 fprintf(fp, format, value);
368 FILE *fp = NULL; local
380 fp = fopen(argv[++i], "wt");
396 if(fp) {
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticGraphImpl.c88 ESR_ReturnCode sr_semanticgraph_loadV2(SR_SemanticGraphImpl* impl, wordmap* ilabels, PFile* fp);
95 PFile* fp = NULL; local
114 fp = pfopen ( g2g, L("rb"));
115 /* CHKLOG(rc, PFileSystemCreatePFile(g2g, isLittleEndian, &fp));
116 CHKLOG(rc, PFileOpen(fp, L("rb")));*/
118 if ( fp == NULL )
122 if (pfread(&header, 4, 2, fp) != 2)
129 if (pfseek(fp, header.rec_context_image_size, SEEK_SET))
138 rc = sr_semanticgraph_loadV2(impl, ilabels, fp);
148 if (fp)
167 sr_semanticgraph_loadV2(SR_SemanticGraphImpl* impl, wordmap* ilabels, PFile* fp) argument
682 PFile* fp; local
1225 serializeArcTokenInfoV2(SR_SemanticGraphImpl *impl, PFile* fp) argument
1273 deserializeArcTokenInfoV2(SR_SemanticGraphImpl *impl, PFile* fp) argument
[all...]
/external/blktrace/btt/
H A Ddevmap.c67 FILE *fp = my_fopen(fname, "r"); local
69 if (!fp) {
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
/external/chromium_org/third_party/boringssl/src/crypto/pem/
H A Dpem_pk8.c184 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, argument
188 return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u);
191 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid, argument
195 return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u);
198 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid, argument
202 return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u);
205 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, argument
208 return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u);
211 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, argument
217 if(!(bp = BIO_new_fp(fp, BIO_NOCLOS
226 d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_debug.c97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st->fp->Base.Base.Parameters);
/external/chromium_org/v8/src/arm64/
H A Dframes-arm64.h44 static const int kCallerFPOffset = 0 * kPointerSize; // <- fp
58 // There are two words on the stack (saved fp and saved lr) between fp and
98 return Memory::Object_at(fp() + offset);
102 inline void StackHandler::SetFp(Address slot, Address fp) { argument
103 Memory::Address_at(slot) = fp;
/external/chromium_org/v8/src/ia32/
H A Dframes-ia32.h114 return Memory::Object_at(fp() + offset);
118 inline void StackHandler::SetFp(Address slot, Address fp) { argument
119 Memory::Address_at(slot) = fp;
/external/chromium_org/v8/src/x87/
H A Dframes-x87.h114 return Memory::Object_at(fp() + offset);
118 inline void StackHandler::SetFp(Address slot, Address fp) { argument
119 Memory::Address_at(slot) = fp;
/external/clang/test/Analysis/
H A Dstream.c10 extern int fclose(FILE *fp);
77 void pr7831(FILE *fp) { argument
78 fclose(fp); // no-warning
/external/clang/test/Sema/
H A Dtransparent-union.c4 float *fp; member in union:__anon19162
11 void g(int *ip, float *fp, char *cp) { argument
13 f(fp);
/external/clang/test/SemaTemplate/
H A Dvirtual-member-functions.cpp48 virtual T *f(float *fp);
52 T *HasOutOfLineKey<T>::f(float *fp) { argument
53 return fp; // expected-error{{cannot initialize return object of type 'int *' with an lvalue of type 'float *'}}
/external/libedit/src/
H A Dfgetln.c48 fgetln(FILE *fp, size_t *len) argument
61 if (fgets(buf, bufsiz, fp) == NULL)
78 if (fgets(&buf[bufsiz], BUFSIZ, fp) == NULL) {
/external/libvpx/libvpx/third_party/nestegg/test/
H A Dtest.c21 FILE * fp = file; local
23 r = fread(p, length, 1, fp);
24 if (r == 0 && feof(fp))
32 FILE * fp = file; local
33 return fseek(fp, offset, whence);
37 stdio_tell(void * fp) argument
39 return ftell(fp);
79 FILE * fp; local
100 fp = fopen(argv[1], "rb");
101 if (!fp)
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_debug.c97 tgsi_dump( st->fp->variants[0].tgsi.tokens, 0 );
98 if (st->fp->Base.Base.Parameters)
99 _mesa_print_parameter_list(st->fp->Base.Base.Parameters);
/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_all.c186 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, argument
190 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
221 int PEM_write_RSAPrivateKey(FILE *fp, RSA *x, const EVP_CIPHER *enc, argument
235 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u);
241 PEM_STRING_RSA,fp,x,enc,kstr,klen,cb,u);
305 int PEM_write_DSAPrivateKey(FILE *fp, DSA *x, const EVP_CIPHER *enc, argument
317 ret = PEM_write_PrivateKey(fp, k, enc, kstr, klen, cb, u);
323 PEM_STRING_DSA,fp,x,enc,kstr,klen,cb,u);
337 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb,
341 pktmp = PEM_read_PrivateKey(fp, NUL
406 PEM_write_ECPrivateKey(FILE *fp, EC_KEY *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cb, void *u) argument
[all...]
/external/openssl/crypto/bn/asm/
H A Dmips3-mont.pl44 $fp="t8";
64 move $fp,sp
65 .frame $fp,64,ra
71 PTR_ADD sp,$fp,64
85 sd s0,0($fp)
86 sd s1,8($fp)
87 sd s2,16($fp)
88 sd s3,24($fp)
89 sd s4,32($fp)
90 sd s5,40($fp)
[all...]
/external/iproute2/tc/
H A Dtc_class.c154 FILE *fp = (FILE*)arg; local
185 fprintf(fp, "deleted ");
194 fprintf(fp, "class %s %s ", rta_getattr_str(tb[TCA_KIND]), abuf);
197 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
200 fprintf(fp, "root ");
206 fprintf(fp, "parent %s ", abuf);
209 fprintf(fp, "leaf %x: ", t->tcm_info>>16);
213 q->print_copt(q, fp, tb[TCA_OPTIONS]);
215 fprintf(fp, "[cannot parse class parameters]");
217 fprintf(fp, "\
[all...]
H A Dtc_filter.c188 FILE *fp = (FILE*)arg; local
214 fprintf(fp, "deleted ");
216 fprintf(fp, "filter ");
218 fprintf(fp, "dev %s ", ll_index_to_name(t->tcm_ifindex));
222 fprintf(fp, "root ");
225 fprintf(fp, "parent %s ", abuf);
234 fprintf(fp, "protocol %s ",
240 fprintf(fp, "pref %u ", prio);
243 fprintf(fp, "%s ", rta_getattr_str(tb[TCA_KIND]));
247 q->print_fopt(q, fp, t
[all...]
/external/libpng/contrib/examples/
H A Diccfrompng.c33 extract(FILE *fp, png_uint_32 *proflen) argument
54 png_init_io(png_ptr, fp);
90 FILE *fp = fopen(filename, "rb"); local
92 if (fp != NULL)
95 png_bytep profile = extract(fp, &proflen);

Completed in 818 milliseconds

<<11121314151617181920>>