HomeSort by: relevance | last modified time | path
    Searched defs:ArgSize (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Option/
Option.cpp 111 size_t ArgSize = Spelling.size();
114 if (ArgSize != strlen(Args.getArgString(Index)))
119 const char *Value = Args.getArgString(Index) + ArgSize;
124 const char *Str = Args.getArgString(Index) + ArgSize;
153 if (ArgSize != strlen(Args.getArgString(Index)))
165 if (ArgSize != strlen(Args.getArgString(Index)))
181 if (ArgSize != strlen(Args.getArgString(Index))) {
182 const char *Value = Args.getArgString(Index) + ArgSize;
202 Args.getArgString(Index - 2) + ArgSize,
207 if (ArgSize != strlen(Args.getArgString(Index))
    [all...]
OptTable.cpp 358 unsigned ArgSize = matchOption(Start, Str, IgnoreCase);
359 if (!ArgSize)
363 if (Arg *A = Opt.accept(Args, StringRef(Args.getArgString(Index), ArgSize),
370 if (ArgSize == 2 && Opt.getKind() == Option::FlagClass)
418 unsigned ArgSize = 0;
421 if ((ArgSize = matchOption(Start, Str, IgnoreCase)))
434 if (Arg *A = Opt.accept(Args, StringRef(Args.getArgString(Index), ArgSize),
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Function.h 66 unsigned getArgSize() const { return ArgSize; }
113 Function(Program &P, const FunctionDecl *F, unsigned ArgSize,
140 unsigned ArgSize;
InterpFrame.h 116 return *reinterpret_cast<const T *>(Args - ArgSize + Offset);
139 const unsigned ArgSize;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMutate.cpp 196 size_t ArgSize, const uint8_t *Data,
206 W.Set(reinterpret_cast<const uint8_t*>(DesiredBytes), ArgSize);
213 (const uint8_t *)SearchMemory(Cur, End - Cur, ExistingBytes, ArgSize);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUPrintfRuntimeBinding.cpp 211 unsigned ArgSize = TD->getTypeAllocSizeInBits(ArgType);
212 ArgSize = ArgSize / 8;
214 // ArgSize by design should be a multiple of DWORD_ALIGN,
217 if (ArgSize % DWORD_ALIGN != 0) {
233 ArgSize = TD->getTypeAllocSizeInBits(ArgType);
234 ArgSize = ArgSize / 8;
240 ArgSize = 4;
245 ArgSize = 4
    [all...]
SIISelLowering.cpp 1726 unsigned ArgSize = VA.getValVT().getStoreSize();
1728 int FI = MFI.CreateFixedObject(ArgSize, ArgOffset, true);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFastISel.cpp 1252 unsigned ArgSize = alignTo(ArgVT.getSizeInBits(), 4);
1255 if (ArgSize < 8 && !Subtarget->isLittle())
1256 BEAlign = 8 - ArgSize;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 3058 unsigned ArgSize = (ArgVT.getSizeInBits() + 7) / 8;
3061 if (ArgSize < 8 && !Subtarget->isLittleEndian())
3062 BEAlign = 8 - ArgSize;
AArch64ISelLowering.cpp 4939 unsigned ArgSize = (VA.getLocInfo() == CCValAssign::Indirect
4944 if (!Subtarget->isLittleEndian() && ArgSize < 8 &&
4946 BEAlign = 8 - ArgSize;
4948 int FI = MFI.CreateFixedObject(ArgSize, ArgOffset + BEAlign, true);
7466 unsigned ArgSize = DAG.getDataLayout().getTypeAllocSize(ArgTy);
7473 ArgSize = std::max(ArgSize, MinSlotSize);
7476 ArgSize = 8;
7482 DAG.getConstant(ArgSize, DL, PtrVT));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 6550 CharUnits ArgSize = Context.getTypeSizeInChars(Arg.get()->getType());
6551 if (ArgSize.getQuantity() >= 0x100) {
6553 << i << (int)ArgSize.getQuantity() << 0xff
9414 uint64_t ArgSize = Context.getTypeSize(ArgType);
9418 if (Context.getTypeSize(ParamType) >= ArgSize) {
SemaExpr.cpp 6058 Optional<CharUnits> ArgSize =
6061 if (ArgSize && ParmSize && *ArgSize < *ParmSize) {
6063 << ArgExpr->getSourceRange() << (unsigned)ArgSize->getQuantity()
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 3816 unsigned ArgSize = ArgVT.getStoreSize();
3818 ArgSize = Flags.getByValSize();
3823 ArgSize = ((ArgSize + PtrByteSize - 1)/PtrByteSize) * PtrByteSize;
3825 return ArgSize;
4071 unsigned ArgSize = VA.getLocVT().getStoreSize();
4076 ArgOffset += ArgSize - ObjSize;
4077 int FI = MFI.CreateFixedObject(ArgSize, ArgOffset, isImmutable);
4277 unsigned ArgSize = ObjSize;
4312 // ObjSize is the true size, ArgSize rounded up to multiple of registers
    [all...]

Completed in 97 milliseconds