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

  /external/llvm/lib/CodeGen/
StackProtector.cpp 116 /// \param [out] IsLarge is set to true if a protectable array is found and
119 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
137 IsLarge = true;
154 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
158 if (IsLarge)
263 bool IsLarge = false;
264 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
265 Layout.insert(std::make_pair(AI, IsLarge ? SSPLK_LargeArray
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
StackProtector.cpp 110 /// \param [out] IsLarge is set to true if a protectable array is found and
113 bool StackProtector::ContainsProtectableArray(Type *Ty, bool &IsLarge,
131 IsLarge = true;
148 if (ContainsProtectableArray(*I, IsLarge, Strong, true)) {
152 if (IsLarge)
287 bool IsLarge = false;
288 if (ContainsProtectableArray(AI->getAllocatedType(), IsLarge, Strong)) {
289 Layout.insert(std::make_pair(AI, IsLarge
  /art/runtime/gc/space/
region_space.h 264 return r->IsLarge();
458 bool IsLarge() const {
549 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes;

Completed in 2681 milliseconds