/external/compiler-rt/lib/profile/ |
H A D | InstrProfiling.c | 28 /* Return the number of bytes needed to add to SizeInBytes to make it 32 __llvm_profile_get_num_padding_bytes(uint64_t SizeInBytes) { argument 33 return 7 & (sizeof(uint64_t) - SizeInBytes % sizeof(uint64_t));
|
/external/llvm/lib/IR/ |
H A D | User.cpp | 94 intptr_t SizeInBytes; member in struct:llvm::DescriptorInfo 107 assert(DI->SizeInBytes != 0 && "Should not have had a descriptor otherwise!"); 110 reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes, DI->SizeInBytes); 140 DescInfo->SizeInBytes = DescBytes; 187 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes;
|
H A D | DIBuilder.cpp | 616 unsigned SizeInBytes) { 617 uint64_t Addr[] = {dwarf::DW_OP_bit_piece, OffsetInBytes, SizeInBytes}; 615 createBitPieceExpression(unsigned OffsetInBytes, unsigned SizeInBytes) argument
|
/external/llvm/include/llvm/ProfileData/ |
H A D | InstrProfReader.h | 222 inline uint8_t getNumPaddingBytes(uint64_t SizeInBytes) { argument 223 return 7 & (sizeof(uint64_t) - SizeInBytes % sizeof(uint64_t));
|
/external/webrtc/webrtc/modules/pacing/ |
H A D | paced_sender.cc | 136 uint64_t SizeInBytes() const { return bytes_; } function in class:webrtc::paced_sender::PacketQueue 320 return static_cast<int64_t>(packets_->SizeInBytes() * 8 / max_bitrate_kbps_); 364 size_t queue_size_bytes = packets_->SizeInBytes();
|
/external/llvm/lib/Transforms/Vectorize/ |
H A D | LoadStoreVectorizer.cpp | 422 unsigned SizeInBytes = ElemSizeInBytes * Chain.size(); local 423 unsigned NumRight = (SizeInBytes % 4) / ElemSizeInBytes;
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
H A D | MBlazeISelLowering.cpp | 668 unsigned SizeInBytes = ValVT.getSizeInBits() >> 3; local 669 State.AllocateStack(SizeInBytes, SizeInBytes);
|
/external/v8/src/arm64/ |
H A D | assembler-arm64-inl.h | 54 inline int CPURegister::SizeInBytes() const { function in class:v8::internal::CPURegister
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | CodeViewDebug.cpp | 1180 translatePtrToMemberRep(unsigned SizeInBytes, bool IsPMF, unsigned Flags) { argument 1181 // SizeInBytes being zero generally implies that the member pointer type was 1187 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown 1199 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown 1223 uint8_t SizeInBytes = Ty->getSizeInBits() / 8; local 1225 ClassTI, translatePtrToMemberRep(SizeInBytes, IsPMF, Ty->getFlags())); 1226 PointerRecord PR(PointeeTI, PK, PM, PO, SizeInBytes, MPI); 1562 uint64_t SizeInBytes = Ty->getSizeInBits() / 8; local 1566 TypeIndex(), VShapeTI, SizeInBytes, FullName, Ty->getIdentifier())); 1601 uint64_t SizeInBytes local [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
H A D | MipsISelLowering.cpp | 1803 unsigned SizeInBytes = ValVT.getSizeInBits() >> 3; local 1804 unsigned Offset = State.AllocateStack(SizeInBytes, OrigAlign);
|
/external/llvm/lib/Transforms/Instrumentation/ |
H A D | AddressSanitizer.cpp | 471 uint64_t SizeInBytes = local 473 return SizeInBytes * ArraySize; 1448 uint64_t SizeInBytes = DL.getTypeAllocSize(Ty); local 1451 // and trying to make RZ to be ~ 1/4 of SizeInBytes. 1453 MinRZ, std::min(kMaxGlobalRedzone, (SizeInBytes / MinRZ / 4) * MinRZ)); 1456 if (SizeInBytes % MinRZ) RightRedzoneSize += MinRZ - (SizeInBytes % MinRZ); 1457 assert(((RightRedzoneSize + SizeInBytes) % MinRZ) == 0); 1521 ConstantInt::get(IntptrTy, SizeInBytes), 1522 ConstantInt::get(IntptrTy, SizeInBytes [all...] |