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 185 buffer->ExtendCapacity(buffer->Size() + kMinimumGap);
195 CHECK_GE(gap_, kMinimumGap);
207 CHECK_LE(delta, kMinimumGap);
226 buffer->ExtendCapacity(buffer->Size() + kMinimumGap);
243 return (limit_ - contents_) + kMinimumGap;
251 // The limit is set to kMinimumGap bytes before the end of the data area.
254 static const int kMinimumGap = 32;
276 // description of kMinimumGap for the reasoning behind the value.
278 return data + capacity - kMinimumGap;

Completed in 201 milliseconds