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

  /external/swiftshader/third_party/subzero/src/
IceAssembler.h 206 /// The limit is set to kMinimumGap bytes before the end of the data area.
209 static constexpr intptr_t kMinimumGap = 32;
226 return (Limit - Contents) + kMinimumGap;
230 /// of kMinimumGap for the reasoning behind the value.
232 return Data + Capacity - kMinimumGap;
  /art/compiler/utils/
assembler.h 184 buffer->ExtendCapacity(buffer->Size() + kMinimumGap);
194 CHECK_GE(gap_, kMinimumGap);
206 CHECK_LE(delta, kMinimumGap);
225 buffer->ExtendCapacity(buffer->Size() + kMinimumGap);
242 return (limit_ - contents_) + kMinimumGap;
250 // The limit is set to kMinimumGap bytes before the end of the data area.
253 static const int kMinimumGap = 32;
275 // description of kMinimumGap for the reasoning behind the value.
277 return data + capacity - kMinimumGap;

Completed in 6490 milliseconds