/external/vboot_reference/cgpt/ |
H A D | cgpt.c | 28 int (*fp)(int argc, char *argv[]); member in struct:__anon20339 91 return cmds[match_index].fp(argc, argv);
|
/external/vboot_reference/host/lib21/ |
H A D | host_fw_preamble.c | 27 struct vb2_fw_preamble fp = { local 31 .c.fixed_size = sizeof(fp), 46 hash_next = fp.hash_offset = fp.c.fixed_size + fp.c.desc_size; 51 fp.sig_offset = hash_next; 56 fp.c.total_size = fp.sig_offset + sig_size; 59 buf = calloc(fp.c.total_size, 1); 63 memcpy(buf, &fp, sizeo [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/tools/ |
H A D | audio_codec_speed_test.cc | 46 FILE* fp = fopen(in_filename_.c_str(), "rb"); local 47 assert(fp != NULL); 50 fseek(fp, 0, SEEK_END); 51 loop_length_samples_ = ftell(fp) / sizeof(int16_t); 52 rewind(fp); 61 ASSERT_EQ(fread(&in_data_[0], sizeof(int16_t), loop_length_samples_, fp), 63 fclose(fp);
|
/external/clang/test/SemaCXX/ |
H A D | enable_if.cpp | 3 typedef int (*fp)(int); typedef 31 operator fp() __attribute__((enable_if(false, "never enabled"))) { return surrogate; } // expected-note{{conversion candidate of type 'int (*)(int)'}} // FIXME: the message is not displayed
|
/external/autotest/client/deps/glbench/src/ |
H A D | png_helper.cc | 50 FILE *fp = fopen(file_name, "wb"); local 51 if (!fp) 63 png_init_io(png_ptr, fp); 88 fclose(fp);
|
/external/blktrace/btt/ |
H A D | args.c | 269 FILE *fp; local 273 fp = my_fopen(fname, "w"); 274 if (fp == NULL) { 281 return fp;
|
H A D | bno_dump.c | 29 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);
|
H A D | latency.c | 31 FILE *fp = NULL; local 41 if ((fp = my_fopen(oname, "w")) == NULL) 44 add_file(fp, strdup(oname)); 47 return fp;
|
H A D | plat.c | 26 FILE *fp; member in struct:plat_info 43 if ((pp->fp = my_fopen(oname, "w")) == NULL) { 47 add_file(pp->fp, oname); 61 fprintf(pp->fp, "%lf %lf\n", 82 fprintf(pp->fp, "%lf %lf\n",
|
/external/boringssl/src/crypto/pem/ |
H A D | pem_all.c | 166 RSA *PEM_read_RSAPrivateKey(FILE *fp, RSA **rsa, pem_password_cb *cb, argument 170 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); 212 DSA *PEM_read_DSAPrivateKey(FILE *fp, DSA **dsa, pem_password_cb *cb, 216 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u); 257 EC_KEY *PEM_read_ECPrivateKey(FILE *fp, EC_KEY **eckey, pem_password_cb *cb, 261 pktmp = PEM_read_PrivateKey(fp, NULL, cb, u);
|
/external/c-ares/ |
H A D | ares__get_hostent.c | 36 int ares__get_hostent(FILE *fp, int family, struct hostent **host) argument 57 while ((status = ares__read_line(fp, &line, &linesize)) == ARES_SUCCESS)
|
/external/clang/test/Modules/ |
H A D | macros2.c | 31 TOP_RIGHT_REDEF *fp = &f; // ok, right's definition overrides top's definition local
|
/external/clang/test/Sema/ |
H A D | static-array.c | 26 typedef void(*fp)(int[static 42]); // no-warning typedef
|
/external/clang/test/SemaObjCXX/Inputs/ |
H A D | nullability-pragmas-1.h | 49 void g4(int (*fp)(int, int)); 50 void g5(int (**fp)(int, int)); // expected-warning 2{{pointer is missing a nullability type specifier}} 74 float *fp = global_int_ptr; // expected-error{{cannot initialize a variable of type 'float *' with an lvalue of type 'int * _Nonnull'}} local
|
/external/dhcpcd-6.8.2/ |
H A D | duid.c | 86 FILE *fp; local 94 if ((fp = fopen(DUID, "r"))) { 95 while (fgets(line, DUID_STRLEN, fp)) { 108 fclose(fp); 137 if (!(fp = fopen(DUID, "w"))) { 142 x = fprintf(fp, "%s\n", hwaddr_ntoa(d, len, line, sizeof(line))); 143 fclose(fp);
|
/external/gptfdisk/ |
H A D | android_popt.cc | 84 void poptPrintUsage(poptContext con, FILE *fp, int flags) { argument 85 fprintf(fp, "USAGE: %s %s\n", con->argv[0], con->otherHelp); 88 fprintf(fp, "\t--%s\t%s\n", con->options[i].longName, 91 fprintf(fp, "\n");
|
/external/icu/icu4c/source/i18n/ |
H A D | udateintervalformat.cpp | 87 FieldPosition fp; local 89 fp.setField(position->field); 93 ((const DateIntervalFormat*)formatter)->format( &interval, res, fp, *status ); 98 position->beginIndex = fp.getBeginIndex(); 99 position->endIndex = fp.getEndIndex();
|
/external/iproute2/bridge/ |
H A D | monitor.c | 42 FILE *fp = arg; local 45 print_timestamp(fp); 51 fprintf(fp, "[LINK]"); 58 fprintf(fp, "[NEIGH]"); 64 fprintf(fp, "[MDB]"); 68 print_nlmsg_timestamp(fp, n); 123 FILE *fp; local 125 fp = fopen(file, "r"); 126 if (fp == NULL) { 130 err = rtnl_from_file(fp, accept_ms [all...] |
/external/iproute2/lib/ |
H A D | color.c | 45 int color_fprintf(FILE *fp, enum color_attr attr, const char *fmt, ...) argument 53 ret = vfprintf(fp, fmt, args); 57 ret += fprintf(fp, "%s", color_codes[attr_colors[attr]]); 58 ret += vfprintf(fp, fmt, args); 59 ret += fprintf(fp, "%s", color_codes[C_CLEAR]);
|
/external/iproute2/netem/ |
H A D | stats.c | 18 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);
|
/external/ipsec-tools/src/racoon/ |
H A D | logger.c | 126 FILE *fp; local 130 fp = fopen(p->fname, "a"); 131 if (fp == NULL) 133 fprintf(fp, "%s", str); 134 fclose(fp); 144 FILE *fp; local 148 fp = fopen(p->fname, "a"); 149 if (fp == NULL) 152 vfprintf(fp, fmt, ap); 155 fclose(fp); 163 FILE *fp; local 183 FILE *fp; local [all...] |
/external/libavc/test/encoder/ |
H A D | recon.c | 53 IV_STATUS_T write_recon(FILE *fp, iv_raw_buf_t *ps_raw_buf) argument 73 bytes = fwrite(pu1_buf, sizeof(UWORD8), wd, fp); 82 fflush(fp);
|
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/ |
H A D | constexpr_types.pass.cpp | 62 constexpr auto fp = &f_int_0; local 63 static_assert(1 == ex::apply(fp, t), ""); 84 constexpr int (*fp)(int) = f_int_1; 85 static_assert(2 == ex::apply(fp, t), ""); 106 constexpr auto fp = &f_int_2; local 107 static_assert(5 == ex::apply(fp, t), "");
|
/external/libvpx/libvpx/third_party/libwebm/ |
H A D | mkvreader.cpp | 17 MkvReader::MkvReader(FILE* fp) : m_file(fp), reader_owns_file_(false) { argument
|
H A D | mkvwriter.cpp | 21 MkvWriter::MkvWriter(FILE* fp) : file_(fp), writer_owns_file_(false) {} argument
|