Searched refs:fp_ (Results 1 - 9 of 9) sorted by relevance

/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 Dframes.cc96 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) {
104 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) {
111 fp_(NULL), sp_(NULL), advance_(&StackFrameIterator::AdvanceWithHandler) {
120 fp_(use_top ? NULL : fp), sp_(sp),
172 ASSERT(fp_ != NULL);
173 state.fp = fp_;
176 reinterpret_cast<Address*>(StandardFrame::ComputePCAddress(fp_)));
H A Ddeoptimizer.h424 intptr_t GetFp() const { return fp_; }
425 void SetFp(intptr_t fp) { fp_ = fp; }
490 intptr_t fp_;
H A Dic.h138 Address fp() const { return fp_; }
172 Address fp_; member in class:v8::internal::IC
H A Dframes.h688 Address fp_;
H A Ddeoptimizer.cc1219 fp_(kZapUint32),
H A Dic.cc136 fp_ = fp;
/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/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 486 milliseconds