Searched refs:kSizeInBytes (Results 1 – 13 of 13) sorted by relevance
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtcp_utility_unittest.cc | 109 const size_t kSizeInBytes = (kBlockSize + 1) * 4; in TEST_F() local 111 EXPECT_FALSE(RtcpParseCommonHeader(buffer, kSizeInBytes - 1, &header)); in TEST_F() 112 EXPECT_TRUE(RtcpParseCommonHeader(buffer, kSizeInBytes, &header)); in TEST_F() 124 const size_t kSizeInBytes = (kBlockSize + 1) * 4; in TEST_F() local 126 kSizeInBytes - RtcpCommonHeader::kHeaderSizeBytes; in TEST_F() 129 buffer[kSizeInBytes - 1] = kPayloadSizeBytes + 1; in TEST_F() 130 EXPECT_FALSE(RtcpParseCommonHeader(buffer, kSizeInBytes, &header)); in TEST_F() 133 buffer[kSizeInBytes - 1] = kPayloadSizeBytes; in TEST_F() 134 EXPECT_TRUE(RtcpParseCommonHeader(buffer, kSizeInBytes, &header)); in TEST_F() 139 buffer[kSizeInBytes - 1] = kPayloadSizeBytes - 1; in TEST_F() [all …]
|
/external/v8/src/codegen/ |
D | external-reference-table.h | 52 static constexpr uint32_t kSizeInBytes = kSize * kEntrySize + 2 * kUInt32Size; variable 68 DCHECK_LT(offset, kSizeInBytes); in NameFromOffset() 106 STATIC_ASSERT(ExternalReferenceTable::kSizeInBytes ==
|
/external/v8/src/execution/ |
D | isolate-data.h | 133 V(kStackGuardOffset, StackGuard::kSizeInBytes) \ 135 V(kExternalReferenceTableOffset, ExternalReferenceTable::kSizeInBytes) \ 136 V(kThreadLocalTopOffset, ThreadLocalTop::kSizeInBytes) \
|
D | thread-local-top.h | 34 static constexpr uint32_t kSizeInBytes = 25 * kSystemPointerSize; 36 static constexpr uint32_t kSizeInBytes = 24 * kSystemPointerSize;
|
D | stack-guard.h | 89 static constexpr int kSizeInBytes = 7 * kSystemPointerSize; variable 181 STATIC_ASSERT(StackGuard::kSizeInBytes == sizeof(StackGuard));
|
/external/v8/src/codegen/arm/ |
D | register-arm.h | 147 static constexpr int kSizeInBytes = 4; 182 static constexpr int kSizeInBytes = 8;
|
D | macro-assembler-arm.cc | 60 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in RequiredStackSizeForCallerSaved() 87 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in PushCallerSaved() 98 bytes += DwVfpRegister::kNumRegisters * DwVfpRegister::kSizeInBytes; in PopCallerSaved()
|
/external/v8/src/codegen/s390/ |
D | register-s390.h | 188 static constexpr int kSizeInBytes = 8;
|
/external/v8/src/execution/arm64/ |
D | simulator-arm64.h | 317 template <int kSizeInBytes> 322 static_assert(sizeof(new_value) <= kSizeInBytes, in Set() 324 if (sizeof(new_value) < kSizeInBytes) { in Set() 326 memset(value_ + sizeof(new_value), 0, kSizeInBytes - sizeof(new_value)); in Set() 340 static_cast<unsigned>(kSizeInBytes)); in Insert() 350 static_cast<unsigned>(kSizeInBytes)); 363 uint8_t value_[kSizeInBytes];
|
/external/v8/src/codegen/ppc/ |
D | register-ppc.h | 230 static constexpr int kSizeInBytes = 8;
|
/external/vixl/src/aarch64/ |
D | simulator-aarch64.h | 91 template <int kSizeInBytes> 99 if (sizeof(new_value) < kSizeInBytes) { in Write() 101 memset(value_ + sizeof(new_value), 0, kSizeInBytes - sizeof(new_value)); in Write() 148 uint8_t value_[kSizeInBytes]; 159 VIXL_ASSERT((sizeof(*dst) + (lane * sizeof(*dst))) <= kSizeInBytes); in ReadLane() 166 VIXL_ASSERT((sizeof(src) + (lane * sizeof(src))) <= kSizeInBytes); in WriteLane()
|
/external/v8/src/diagnostics/ |
D | disassembler.cc | 124 const unsigned kExtRefsTableSize = ExternalReferenceTable::kSizeInBytes; in RootRelativeName()
|
/external/v8/src/wasm/baseline/arm/ |
D | liftoff-assembler-arm.h | 198 DCHECK(RegisterType::kSizeInBytes == 4 || RegisterType::kSizeInBytes == 8); in EmitFloatMinOrMax()
|