Searched defs:fp_ (Results 1 - 4 of 4) sorted by relevance

/external/openfst/src/include/fst/
H A Dbi-table.h190 explicit VectorBiTable(FP *fp = 0) : fp_(fp ? fp : new FP()) {}
192 ~VectorBiTable() { delete fp_; }
195 ssize_t fp = (*fp_)(entry);
210 const FP &Fingerprint() const { return *fp_; }
213 FP *fp_; member in class:fst::VectorBiTable
237 fp_(fp),
250 delete fp_;
256 uint64 fp = (*fp_)(entry);
286 const FP &Fingerprint() const { return *fp_; }
327 FP *fp_; // Fingerprin member in class:fst::VectorHashBiTable
[all...]
/external/v8/src/
H A Dmksnapshot.cc135 fp_ = i::OS::FOpen(snapshot_file, "wb");
136 if (fp_ == NULL) {
140 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
141 fprintf(fp_, "#include \"v8.h\"\n");
142 fprintf(fp_, "#include \"platform.h\"\n\n");
143 fprintf(fp_, "#include \"snapshot.h\"\n\n");
144 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
145 fprintf(fp_, "const byte Snapshot::data_[] = {");
149 fprintf(fp_, "const int Snapshot::size_ = %d;\n", Position());
151 fprintf(fp_, "cons
223 FILE* fp_; member in class:CppByteSink
[all...]
H A Dic.h138 Address fp() const { return fp_; }
172 Address fp_; member in class:v8::internal::IC
/external/v8/test/cctest/
H A Dtest-serialize.cc173 fp_ = OS::FOpen(snapshot_file, "wb");
175 if (fp_ == NULL) {
181 if (fp_ != NULL) {
182 fclose(fp_);
186 if (fp_ != NULL) {
187 fputc(byte, fp_);
191 return ftell(fp_);
203 FILE* fp_; member in class:FileByteSink

Completed in 889 milliseconds