Home
last modified time | relevance | path

Searched refs:kSizeInBytes (Results 1 – 12 of 12) sorted by relevance

/third_party/node/deps/v8/src/codegen/
Dexternal-reference-table.h55 static constexpr uint32_t kSizeInBytes = kSize * kEntrySize + 2 * kUInt32Size; variable
74 DCHECK_LT(offset, kSizeInBytes); in NameFromOffset()
117 STATIC_ASSERT(ExternalReferenceTable::kSizeInBytes ==
/third_party/vixl/test/aarch64/
Dtest-utils-aarch64.h58 template <int kSizeInBytes>
64 VIXL_CHECK(kSizeInBytes >= ((lane + 1) * lane_size)); in GetLane()
73 VIXL_CHECK(kSizeInBytes >= ((lane + 1) * lane_size)); in SetLane()
77 bool Equals(const VectorValue<kSizeInBytes>& other) const { in Equals()
78 return memcmp(bytes, other.bytes, kSizeInBytes) == 0; in Equals()
81 uint8_t bytes[kSizeInBytes];
/third_party/node/deps/v8/src/execution/
Dthread-local-top.h37 static constexpr uint32_t kSizeInBytes = 26 * kSystemPointerSize;
39 static constexpr uint32_t kSizeInBytes = 25 * kSystemPointerSize;
Disolate-data.h28 V(kStackGuardOffset, StackGuard::kSizeInBytes, stack_guard) \
45 V(kExternalReferenceTableOffset, ExternalReferenceTable::kSizeInBytes, \
47 V(kThreadLocalTopOffset, ThreadLocalTop::kSizeInBytes, thread_local_top) \
Dstack-guard.h100 static constexpr int kSizeInBytes = 7 * kSystemPointerSize; variable
194 STATIC_ASSERT(StackGuard::kSizeInBytes == sizeof(StackGuard));
/third_party/node/deps/v8/src/codegen/arm/
Dregister-arm.h117 static constexpr int kSizeInBytes = 4;
152 static constexpr int kSizeInBytes = 8;
Dmacro-assembler-arm.cc54 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in RequiredStackSizeForCallerSaved()
72 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in PushCallerSaved()
84 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in PopCallerSaved()
/third_party/node/deps/v8/src/codegen/s390/
Dregister-s390.h142 static constexpr int kSizeInBytes = 8;
/third_party/node/deps/v8/src/execution/arm64/
Dsimulator-arm64.h319 template <int kSizeInBytes>
324 static_assert(sizeof(new_value) <= kSizeInBytes, in Set()
326 if (sizeof(new_value) < kSizeInBytes) { in Set()
328 memset(value_ + sizeof(new_value), 0, kSizeInBytes - sizeof(new_value)); in Set()
342 static_cast<unsigned>(kSizeInBytes)); in Insert()
352 static_cast<unsigned>(kSizeInBytes));
365 uint8_t value_[kSizeInBytes];
/third_party/node/deps/v8/src/codegen/ppc/
Dregister-ppc.h158 static constexpr int kSizeInBytes = 8;
/third_party/node/deps/v8/src/diagnostics/
Ddisassembler.cc130 const unsigned kExtRefsTableSize = ExternalReferenceTable::kSizeInBytes; in RootRelativeName()
/third_party/node/deps/v8/src/wasm/baseline/arm/
Dliftoff-assembler-arm.h230 DCHECK(RegisterType::kSizeInBytes == 4 || RegisterType::kSizeInBytes == 8); in EmitFloatMinOrMax()