/third_party/skia/gm/ |
H A D | bigrrectaaeffect.cpp | 46 fTestWidth = SkScalarCeilToInt(rrect.width()) + 2 * kGap; in BigRRectAAEffectGM() 47 fTestHeight = SkScalarCeilToInt(rrect.height()) + 2 * kGap; in BigRRectAAEffectGM() 93 rrect.offset(SkIntToScalar(x + kGap), SkIntToScalar(y + kGap)); 122 inline static constexpr int kGap = 3; member in skiagm::BigRRectAAEffectGM
|
H A D | compositor_quads.cpp | 452 static constexpr SkScalar kGap = 40.f; variable 465 canvas->translate(0.f, kGap); 476 canvas->translate(0.f, kGap + kRowCount * kTileHeight); 481 canvas->translate(kGap + kColCount * kTileWidth, 0.f); 487 canvas->translate(kOffset, kGap + 0.5f * kRowCount * kTileHeight); 492 canvas->translate(0.f, kGap + kRowCount * kTileHeight);
|
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | assembler-loong64-inl.h | 195 if (buffer_space() <= kGap) { in CheckBuffer()
|
H A D | assembler-loong64.h | 753 // Check if there is less than kGap bytes available in the buffer. 756 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } in overflow() 904 // The relocation writer's position is at least kGap bytes below the end of 908 static constexpr int kGap = 64; variable 909 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap);
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64-inl.h | 243 if (buffer_space() <= kGap) { in CheckBuffer()
|
H A D | assembler-mips64.h | 1474 // Check if there is less than kGap bytes available in the buffer. 1477 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } in overflow() 1660 // The relocation writer's position is at least kGap bytes below the end of 1664 static constexpr int kGap = 64; member in v8::internal::Assembler::OffsetAccessType 1665 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap);
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips-inl.h | 285 if (buffer_space() <= kGap) { in CheckBuffer()
|
H A D | assembler-mips.h | 1414 // Check if there is less than kGap bytes available in the buffer. 1417 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } in overflow() 1625 // The relocation writer's position is at least kGap bytes below the end of 1629 static constexpr int kGap = 32; member in v8::internal::Assembler::OffsetAccessType 1630 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap);
|
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | assembler-riscv64-inl.h | 286 if (buffer_space() <= kGap) { in CheckBuffer()
|
H A D | assembler-riscv64.h | 1240 // Check if there is less than kGap bytes available in the buffer. 1243 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } in overflow() 1501 // The relocation writer's position is at least kGap bytes below the end of 1505 static constexpr int kGap = 64; member in v8::internal::Assembler::OffsetAccessType 1506 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap);
|
H A D | assembler-riscv64.cc | 4047 int needed_space = worst_case_size + assm_->kGap; in Check()
|
/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm-inl.h | 205 if (V8_UNLIKELY(buffer_space() <= kGap)) { in CheckBuffer()
|
H A D | assembler-arm.h | 1257 // The relocation writer's position is at least kGap bytes below the end of 1261 static constexpr int kGap = 32; member in v8::internal::Assembler 1262 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 1302 // called in CheckBuffer, this means that kGap is an upper bound on this 1303 // check. Use 2 * kGap just to give it some slack around BlockConstPoolScopes. 1304 static constexpr int kCheckPoolDeadline = kMaxDistToIntPool - 2 * kGap;
|
H A D | assembler-arm.cc | 5385 int needed_space = size + kGap; in CheckConstPool() 5418 int needed_space = pending_32_bit_constants_.size() * kPointerSize + kGap; in CheckConstPool() 5478 address, instructions * kInstrSize + kGap)) { in PatchingAssembler() 5487 DCHECK_EQ(pc_, buffer_start_ + buffer_->size() - kGap); in ~PatchingAssembler() 5494 DCHECK_LE(pc_, buffer_start_ + buffer_->size() - kGap); in PadWithNops() 5495 while (pc_ < buffer_start_ + buffer_->size() - kGap) { in PadWithNops()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | assembler-arm64.h | 2657 // The relocation writer's position is at least kGap bytes below the end of 2662 static constexpr int kGap = 64; 2663 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 2761 // size of instructions to patch + kGap 2762 // Where kGap is the distance from which the Assembler tries to grow the 2771 ExternalAssemblerBuffer(start, count * kInstrSize + kGap)), 2776 DCHECK_EQ(pc_offset() + kGap, buffer_->size());
|
H A D | assembler-arm64-inl.h | 1070 if (V8_UNLIKELY(buffer_space() < kGap)) { in CheckBufferSpace()
|
H A D | assembler-arm64.cc | 3688 DCHECK_LE(RoundUp(len, kInstrSize), static_cast<size_t>(kGap)); in EmitStringData() 4461 int needed_space = worst_case_size + assm_->kGap; in Check()
|
/third_party/node/deps/v8/src/codegen/s390/ |
H A D | assembler-s390.h | 1364 // The relocation writer's position is at least kGap bytes below the end of 1368 static constexpr int kGap = 32; member in v8::internal::Assembler 1369 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 1402 if (buffer_space() <= kGap) { in CheckBuffer() 1457 // It is safe to store 8-bytes, as CheckBuffer() guarantees we have kGap in emit6bytes()
|
H A D | assembler-s390.cc | 707 if (buffer_space() <= (kGap + space_needed)) { in EnsureSpaceFor()
|
/third_party/node/deps/v8/src/codegen/ppc/ |
H A D | assembler-ppc.h | 1380 // The relocation writer's position is at least kGap bytes below the end of 1384 static constexpr int kGap = 32; member in v8::internal::Assembler 1385 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 1422 if (buffer_space() <= kGap) { in CheckBuffer()
|
H A D | assembler-ppc.cc | 1291 if (buffer_space() <= (kGap + space_needed)) { in EnsureSpaceFor() 1447 ExternalAssemblerBuffer(buffer_start_ + pc_offset, kInstrSize + kGap)); in patch_wasm_cpi_return_address() 2208 address, instructions * kInstrSize + kGap)) { in PatchingAssembler() 2214 DCHECK_EQ(pc_, buffer_start_ + buffer_->size() - kGap); in ~PatchingAssembler()
|
/third_party/node/deps/v8/src/codegen/ia32/ |
H A D | assembler-ia32.h | 367 // The relocation writer's position must be kGap bytes above the end of 374 static constexpr int kGap = 32; member in v8::internal::Assembler 375 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 1651 // Check if there is less than kGap bytes available in the buffer. 1655 return pc_ >= reloc_info_writer.pos() - kGap; in buffer_overflow() 1811 DCHECK(bytes_generated < assembler_->kGap); in ~EnsureSpace()
|
/third_party/node/deps/v8/src/codegen/x64/ |
H A D | assembler-x64.h | 392 // The relocation writer's position must be kGap bytes above the end of 399 static constexpr int kGap = 32; member in v8::internal::Assembler 400 STATIC_ASSERT(AssemblerBase::kMinimalBufferSize >= 2 * kGap); 2050 // Check if there is less than kGap bytes available in the buffer. 2054 return pc_ >= reloc_info_writer.pos() - kGap; in buffer_overflow() 2588 DCHECK(bytes_generated < assembler_->kGap); in ~EnsureSpace()
|
/third_party/node/deps/v8/src/wasm/baseline/ppc/ |
H A D | liftoff-assembler-ppc.h | 150 ExternalAssemblerBuffer(buffer_start_ + offset, kInstrSize + kGap)); in PatchPrepareStackFrame()
|
/third_party/node/deps/v8/src/wasm/baseline/s390/ |
H A D | liftoff-assembler-s390.h | 137 ExternalAssemblerBuffer(buffer_start_ + offset, LayInstrSize + kGap)); in PatchPrepareStackFrame()
|