OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:captured_
(Results
1 - 8
of
8
) sorted by null
/art/runtime/lambda/
closure_builder.cc
78
size_ += sizeof(Closure::
captured_
[0].dynamic_.size_);
113
static_assert(offsetof(Closure,
captured_
) == kInitialSize, "wrong initial size");
118
closure->
captured_
[0].dynamic_.size_ = GetSize();
119
size_t header_size = offsetof(Closure,
captured_
[0].dynamic_.variables_);
124
closure->
captured_
[0].dynamic_.variables_,
130
size_t header_size = offsetof(Closure,
captured_
[0].static_variables_);
135
closure->
captured_
[0].static_variables_,
closure.cc
33
return reinterpret_cast<const uint8_t*>(
captured_
) + offset;
99
const size_t captured_variable_offset = offsetof(Closure,
captured_
);
110
DCHECK_GE(static_closure_size, sizeof(
captured_
[0].dynamic_.size_));
111
const size_t dynamic_closure_size =
captured_
[0].dynamic_.size_;
316
auto* captured_ptr = reinterpret_cast<const uint8_t*>(&
captured_
);
326
auto* captured_ptr = reinterpret_cast<const uint8_t*>(&
captured_
);
395
closure + offsetof(Closure,
captured_
[0].dynamic_.size_),
397
static_assert(sizeof(dynamic_size) == sizeof(
captured_
[0].dynamic_.size_),
405
static constexpr const size_t captured_offset = offsetof(Closure,
captured_
);
407
return offsetof(Closure,
captured_
[0].static_variables_) - captured_offset
[
all
...]
closure.h
136
// All offsets are relative to '
captured_
'.
142
// Cast the data at '(char*)
captured_
[offset]' into T, returning its address.
173
}
captured_
[0];
variable in typeref:union:art::lambda::__anon118
174
//
captured_
will always consist of one array element at runtime.
closure_test.cc
105
CopyArgs(closure_ptr->
captured_
[0].static_variables_, args ...);
/external/v8/src/crankshaft/
hydrogen-escape-analysis.h
19
captured_
(0, zone()),
53
ZoneList<HInstruction*>
captured_
;
member in class:v8::internal::HEscapeAnalysisPhase
hydrogen-escape-analysis.cc
56
captured_
.Add(instr, zone());
296
for (int i = 0; i <
captured_
.length(); i++) {
297
HAllocate* allocate = HAllocate::cast(
captured_
.at(i));
322
if (
captured_
.is_empty()) break;
324
captured_
.length());
326
captured_
.Rewind(0);
hydrogen.cc
780
captured_
= false;
868
DCHECK(!
captured_
);
876
captured_
= true;
885
DCHECK(!
captured_
);
898
captured_
= true;
904
DCHECK(!
captured_
);
926
DCHECK(!
captured_
);
1001
if (
captured_
) return;
1008
if (
captured_
) return;
[
all
...]
hydrogen.h
[
all
...]
Completed in 535 milliseconds