Searched refs:RemainingSize (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 627 size_t RemainingSize = 0u; 645 RemainingSize -= NoteSize; 646 if (RemainingSize == 0u) 648 else if (sizeof(*Nhdr) > RemainingSize) 652 if (Nhdr->getSize() > RemainingSize) 660 : RemainingSize(Size), Err(&Err) {
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1840 uint32_t RemainingSize = Flags.getByValSize(); in WriteByValArg() local 1846 for (; RemainingSize >= 4 && LocMemOffset < 4 * 4; in WriteByValArg() 1847 Offset += 4, RemainingSize -= 4, LocMemOffset += 4) { in WriteByValArg() 1859 if (RemainingSize == 0) in WriteByValArg() 1865 assert(RemainingSize <= 3 && RemainingSize >= 1 && in WriteByValArg() 1867 unsigned LoadSize = (RemainingSize == 3 ? 2 : RemainingSize); in WriteByValArg() 1884 RemainingSize -= LoadSize; in WriteByValArg() 1887 if (RemainingSize != 0) { in WriteByValArg() 1888 assert(RemainingSize == 1 && "There must be one byte remaining."); in WriteByValArg() 1913 LastFI = MFI->CreateFixedObject(RemainingSize, LocMemOffset, true); in WriteByValArg() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 933 auto *RemainingSize = AllocSizeWithoutCookie; in EmitNewArrayInitializer() local 937 RemainingSize->getType(), in EmitNewArrayInitializer() 940 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); in EmitNewArrayInitializer() 944 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); in EmitNewArrayInitializer()
|