HomeSort by relevance Sort by last modified time
    Searched defs:static_size (Results 1 - 2 of 2) sorted by null

  /art/runtime/lambda/
art_lambda_method.cc 39 bool static_size = true; local
45 static_size &= shorty_field.IsStaticSize();
55 dynamic_size_ = !static_size;
closure_test.cc 96 const size_t static_size = GetArgsSize(args ...) + header_size; local
97 EXPECT_GE(static_size, sizeof(Closure));
100 char* closure_as_char_array = new char[static_size];
139 const size_t static_size = GetArgsSize(args ...) + header_size; local
140 EXPECT_GE(static_size, sizeof(Closure));
143 EXPECT_EQ(static_size, closure_builder.GetSize());
146 char* closure_as_char_array = new char[static_size];

Completed in 203 milliseconds