Home | History | Annotate | Download | only in src

Lines Matching defs:fp_

103     fp_ = i::OS::FOpen(snapshot_file, "wb");
104 if (fp_ == NULL) {
108 fprintf(fp_, "// Autogenerated snapshot file. Do not edit.\n\n");
109 fprintf(fp_, "#include \"v8.h\"\n");
110 fprintf(fp_, "#include \"platform.h\"\n\n");
111 fprintf(fp_, "#include \"snapshot.h\"\n\n");
112 fprintf(fp_, "namespace v8 {\nnamespace internal {\n\n");
113 fprintf(fp_, "const byte Snapshot::data_[] = {");
117 fprintf(fp_, "const int Snapshot::size_ = %d;\n\n", bytes_written_);
118 fprintf(fp_, "} } // namespace v8::internal\n");
119 fclose(fp_);
130 fprintf(fp_, "};\n\n");
131 fprintf(fp_, "const int Snapshot::new_space_used_ = %d;\n", new_space_used);
132 fprintf(fp_,
135 fprintf(fp_,
138 fprintf(fp_,
141 fprintf(fp_, "const int Snapshot::map_space_used_ = %d;\n", map_space_used);
142 fprintf(fp_,
145 fprintf(fp_,
152 fprintf(fp_, "};\n\n");
153 fprintf(fp_, "const int Snapshot::context_size_ = %d;\n", length);
154 fprintf(fp_, "const byte Snapshot::context_data_[] = {\n");
157 fprintf(fp_, "\n");
161 fprintf(fp_, ",");
163 fprintf(fp_, "%d", byte);
169 fprintf(fp_, ",");
171 fprintf(fp_, "%d", byte);
174 fprintf(fp_, "\n");
201 FILE* fp_;