Home
last modified time | relevance | path

Searched refs:SizeWidth (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h1918 unsigned SizeWidth : 5;
3597 ConstantArrayTypeBits.SizeWidth = Width / 8;
3608 ConstantArrayTypeBits.SizeWidth = 0;
3626 ConstantArrayTypeBits.SizeWidth = ATy->ConstantArrayTypeBits.SizeWidth;
3637 : llvm::APInt(ConstantArrayTypeBits.SizeWidth * 8, Size);
3644 : static_cast<unsigned>(ConstantArrayTypeBits.SizeWidth * 8);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp2731 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32; in fastLowerIntrinsicCall() local
2732 if (!MCI->getLength()->getType()->isIntegerTy(SizeWidth)) in fastLowerIntrinsicCall()
2746 unsigned SizeWidth = Subtarget->is64Bit() ? 64 : 32; in fastLowerIntrinsicCall() local
2747 if (!MSI->getLength()->getType()->isIntegerTy(SizeWidth)) in fastLowerIntrinsicCall()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4727 unsigned SizeWidth = ELFT::Is64Bits ? 8 : 7; in printProgramHeaders() local
4741 Fields[4].Str = to_string(format_hex(Phdr.p_filesz, SizeWidth)); in printProgramHeaders()
4742 Fields[5].Str = to_string(format_hex(Phdr.p_memsz, SizeWidth)); in printProgramHeaders()