HomeSort by relevance Sort by last modified time
    Searched refs:context_length (Results 1 - 5 of 5) sorted by null

  /external/v8/src/snapshot/
snapshot-common.cc 177 int context_length = context_data.length(); local
180 int length = context_offset + context_length;
188 memcpy(data + context_offset, context_data.begin(), context_length);
196 startup_length, context_length);
228 int context_length = data->raw_size - context_offset; local
229 return Vector<const byte>(context_data, context_length);
  /external/v8/src/full-codegen/
full-codegen.h 127 // *stack_depth the amount to drop the stack and in *context_length the
130 virtual NestedStatement* Exit(int* stack_depth, int* context_length) {
194 NestedStatement* Exit(int* stack_depth, int* context_length) override {
197 if (block_scope->ContextLocalCount() > 0) ++(*context_length);
210 NestedStatement* Exit(int* stack_depth, int* context_length) override {
229 NestedStatement* Exit(int* stack_depth, int* context_length) override;
246 NestedStatement* Exit(int* stack_depth, int* context_length) override {
265 NestedStatement* Exit(int* stack_depth, int* context_length) override {
283 NestedStatement* Exit(int* stack_depth, int* context_length) override {
284 ++(*context_length);
    [all...]
full-codegen.cc 852 int context_length = 0; local
859 current = current->Exit(&stack_depth, &context_length);
862 if (context_length > 0) {
863 while (context_length > 0) {
865 --context_length;
880 int context_length = 0; local
887 current = current->Exit(&stack_depth, &context_length);
890 if (context_length > 0) {
891 while (context_length > 0) {
893 --context_length;
906 int context_length = 0; local
    [all...]
  /external/v8/src/compiler/
js-typed-lowering.cc 1961 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; local
2049 int context_length = scope_info->ContextLength(); local
    [all...]
ast-graph-builder.cc 199 int context_length() const { return context_length_; } function in class:v8::internal::compiler::BASE_EMBEDDED
    [all...]

Completed in 421 milliseconds