Searched defs:Size (Results 451 - 475 of 555) sorted by relevance

<<11121314151617181920>>

/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp290 Value *loadShadow(Value *ShadowAddr, uint64_t Size, uint64_t Align,
292 void storeShadow(Value *Addr, uint64_t Size, uint64_t Align, Value *Shadow,
921 // Generates IR to load shadow corresponding to bytes [Addr, Addr+Size), where
923 Value *DFSanFunction::loadShadow(Value *Addr, uint64_t Size, uint64_t Align, argument
952 switch (Size) {
969 if (Size % (64 / DFS.ShadowWidth) == 0) {
976 DFS.DFSanUnionLoadFn, ShadowAddr, ConstantInt::get(DFS.IntptrTy, Size));
1000 for (uint64_t Ofs = 64 / DFS.ShadowWidth; Ofs != Size;
1021 DFS.DFSanUnionLoadFn, ShadowAddr, ConstantInt::get(DFS.IntptrTy, Size));
1027 uint64_t Size local
1048 storeShadow(Value *Addr, uint64_t Size, uint64_t Align, Value *Shadow, Instruction *Pos) argument
1100 uint64_t Size = local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp161 bool TypeHasComponent(Type *T, uint64_t Offset, uint64_t Size);
305 explicit ConvertToScalarInfo(unsigned Size, const DataLayout &DL, argument
307 : AllocaSize(Size), DL(DL), ScalarLoadThreshold(SLT), IsNotTrivial(false),
1826 /// specified offset and size. If Size is zero, do not check the size.
1827 bool SROA::TypeHasComponent(Type *T, uint64_t Offset, uint64_t Size) { argument
1851 if (Offset == 0 && (Size == 0 || EltSize == Size))
1854 if (Offset + Size > EltSize)
1856 return TypeHasComponent(EltTy, Offset, Size);
2108 uint64_t Size local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp38 Size = R->getValueAsInt("Size");
44 : TheDef(nullptr), Name(N), Namespace(Nspace), Size(-1), Offset(-1),
712 unsigned Size = R->getValueAsInt("Size"); local
715 SpillSize = Size ? Size : MVT(VTs[0]).getSizeInBits();
1104 unsigned Size = Parts.front()->Size; local
1106 unsigned LastSize = Parts.front()->Size;
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp157 size_t Size; member in class:CBenchmarkInStream
163 Size = size;
171 size_t remain = Size - Pos;
888 UInt32 Size; member in struct:CCrcInfo
902 p->Res = CrcBig(p->Data, p->Size, p->NumCycles, p->Crc);
998 info.Size = bufferSize;
/external/mesa3d/src/mesa/tnl/
H A Dt_context.h196 GLuint Size; /**< Max vertices per vertex buffer, constant */ member in struct:vertex_buffer
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsio0.c139 cmsUInt32Number Size; // Size of allocated memory member in struct:__anon28682
152 if (ResData -> Pointer + len > ResData -> Size){
154 len = (ResData -> Size - ResData -> Pointer);
173 if (offset > ResData ->Size) {
202 if (ResData->Pointer + size > ResData->Size) {
203 size = ResData ->Size - ResData->Pointer;
270 fm ->Size = size;
281 fm ->Size = size;
1804 // Get Size an
1820 cmsWriteRawTag(cmsHPROFILE hProfile, cmsTagSignature sig, const void* data, cmsUInt32Number Size) argument
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1726 be accessed via the CStr(), Str(), and Size() methods.
1777 size_t Size() { return buffer.size(); } function in class:TiXmlPrinter
/external/tinyxml2/
H A Dtinyxml2.h202 int Size() const { return size; } function in class:tinyxml2::DynArray
253 for( int i=0; i<blockPtrs.Size(); ++i ) {
291 name, maxAllocs, maxAllocs*SIZE/1024, currentAllocs, SIZE, nAllocs, blockPtrs.Size() );
1446 int CStrSize() const { return buffer.Size(); }
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h487 WebRtc_UWord32 Size() const {return _bufferSize;} function in class:webrtc::VideoFrame
/external/chromium_org/sandbox/win/src/
H A Dnt_internals.h246 LARGE_INTEGER Size; member in struct:_SECTION_BASIC_INFORMATION
416 IN SIZE_T Size);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp236 uint64 CuePoint::Size() const { function in class:mkvmuxer::CuePoint
303 uint64 Cues::Size() { function in class:mkvmuxer::Cues
306 size += GetCueByIndex(i)->Size();
322 size += cue->Size();
355 uint64 ContentEncAESSettings::Size() const { function in class:mkvmuxer::ContentEncAESSettings
419 uint64 ContentEncoding::Size() const { function in class:mkvmuxer::ContentEncoding
487 const uint64 aes_size = enc_aes_settings_.Size();
594 content_encodings_size += encoding->Size();
605 uint64 Track::Size() const { function in class:mkvmuxer::Track
702 content_encodings_size += encoding->Size();
1503 uint64 Cluster::Size() const { function in class:mkvmuxer::Cluster
[all...]
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h151 : Base(B), Size(Sz), Signed(S), VectSize(VS)
155 SizeType Size; member in namespace:clang::threadSafety::til
667 switch (ValType.Size) {
693 switch (ValType.Size) {
/external/clang/lib/AST/
H A DExprConstant.cpp1862 QualType Type, CharUnits &Size) {
1866 Size = CharUnits::One();
1877 Size = Info.Ctx.getTypeSizeInChars(Type);
2058 unsigned Size = Array.getArraySize(); local
2059 assert(Index < Size);
2064 NewElts = std::min(Size, std::max(NewElts, 8u));
2067 APValue NewValue(APValue::UninitArray(), NewElts, Size);
4778 unsigned Size = Info.Ctx.getTypeSize(E->getType());
4779 uint64_t N = Value.getInt().extOrTrunc(Size).getZExtValue();
5703 bool Success(CharUnits Size, cons
1861 HandleSizeof(EvalInfo &Info, SourceLocation Loc, QualType Type, CharUnits &Size) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGClass.cpp857 CharUnits Size, CharUnits Alignment) {
868 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, Size.getQuantity(),
856 emitMemcpyIR(llvm::Value *DestPtr, llvm::Value *SrcPtr, CharUnits Size, CharUnits Alignment) argument
H A DCodeGenFunction.h256 size_t Size : 29; member in struct:clang::CodeGen::CodeGenFunction::LifetimeExtendedCleanupHeader
260 size_t getSize() const { return Size; }
408 LifetimeExtendedCleanupStack.size() + sizeof(Header) + Header.Size);
/external/clang/lib/Frontend/
H A DASTUnit.cpp1265 ASTUnit::PreambleFileHash::createForFile(off_t Size, time_t ModTime) { argument
1267 Result.Size = Size;
1276 Result.Size = Buffer->getBufferSize();
1289 return LHS.Size == RHS.Size && LHS.ModTime == RHS.ModTime &&
1453 } else if (Status.getSize() != uint64_t(F->second.Size) ||
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp858 SVal Size, SVal Init,
879 // Set the region's extent equal to the Size parameter.
885 Size.getAs<DefinedOrUnknownSVal>()) {
856 MallocMemAux(CheckerContext &C, const CallExpr *CE, SVal Size, SVal Init, ProgramStateRef State, AllocationFamily Family) argument
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1211 SVal Size = cast<SubRegion>(R)->getExtent(svalBuilder); local
1212 const llvm::APSInt *SizeInt = svalBuilder.getKnownValue(state, Size);
1959 Optional<uint64_t> Size; local
1962 Size = CAT->getSize().getZExtValue();
1990 for (; Size.hasValue() ? i < Size.getValue() : true ; ++i, ++VI) {
2008 if (Size.hasValue() && i < Size.getValue())
/external/libnfc-nxp/inc/
H A DphNfcTypes.h247 uint32_t Size;/**< Size of the datablock*/ member in struct:phLibNfc_Message_t
902 * The Address Size is Valid only upto 255 Blocks limit
/external/libnfc-nxp/src/
H A DphFriNfc_NdefMap.h237 * \name Buffer Size Definitions
518 uint16_t NdefFileSize; /**< \internal Holds Desfire File Size */
650 * Size and PageCntrl details.
659 /** Specifies the Size of the lock area in terms of
661 uint16_t Size; member in struct:phFriNfc_LockCntrlTLVCont
688 * Size and PageCntrl details of the reserved byte area.
697 /** Specifies the Size of the lock area in terms of
699 uint16_t Size; member in struct:phFriNfc_ResMemCntrlTLVCont
761 /** Size to know the exact data filled in the ReadBuffer. Useful, when the
831 /**< \internal Size allocate
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp242 uint64 CuePoint::Size() const { function in class:mkvmuxer::CuePoint
310 uint64 Cues::Size() { function in class:mkvmuxer::Cues
313 size += GetCueByIndex(i)->Size();
329 size += cue->Size();
362 uint64 ContentEncAESSettings::Size() const { function in class:mkvmuxer::ContentEncAESSettings
429 uint64 ContentEncoding::Size() const { function in class:mkvmuxer::ContentEncoding
501 const uint64 aes_size = enc_aes_settings_.Size();
608 content_encodings_size += encoding->Size();
619 uint64 Track::Size() const { function in class:mkvmuxer::Track
711 content_encodings_size += encoding->Size();
1576 uint64 Cluster::Size() const { function in class:mkvmuxer::Cluster
[all...]
/external/llvm/include/llvm/IR/
H A DIRBuilder.h369 CallInst *CreateMemSet(Value *Ptr, Value *Val, uint64_t Size, unsigned Align, argument
371 return CreateMemSet(Ptr, Val, getInt64(Size), Align, isVolatile, TBAATag);
374 CallInst *CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align,
381 CallInst *CreateMemCpy(Value *Dst, Value *Src, uint64_t Size, unsigned Align, argument
384 return CreateMemCpy(Dst, Src, getInt64(Size), Align, isVolatile, TBAATag,
388 CallInst *CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align,
397 CallInst *CreateMemMove(Value *Dst, Value *Src, uint64_t Size, unsigned Align, argument
399 return CreateMemMove(Dst, Src, getInt64(Size), Align, isVolatile, TBAATag);
402 CallInst *CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align,
408 CallInst *CreateLifetimeStart(Value *Ptr, ConstantInt *Size
[all...]
H A DInstructions.h2283 void growOperands(unsigned Size);
2348 void reserveClauses(unsigned Size) { growOperands(Size); } argument
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp365 uint64_t Size = DL->getTypeAllocSize(GV->getType()->getElementType()); local
374 HI.Handler->setSymbolSize(GVSym, Size);
379 if (Size == 0) Size = 1; // .comm Foo, 0 is undefined, avoid it.
388 OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
397 OutStreamer.EmitZerofill(TheSection, GVSym, Size, Align);
409 OutStreamer.EmitLocalCommonSymbol(GVSym, Size, Align);
419 OutStreamer.EmitCommonSymbol(GVSym, Size, Align);
429 if (Size == 0) Size
1508 EmitLabelPlusOffset(const MCSymbol *Label, uint64_t Offset, unsigned Size, bool IsSectionRelative) const argument
1797 unsigned Size = DL.getTypeAllocSize(CDS->getType()); local
1825 unsigned Size = DL.getTypeAllocSize(CV->getType()); local
1835 unsigned Size = DL->getTypeAllocSize(CS->getType()); local
1955 uint64_t Size = AP.TM.getDataLayout()->getTypeAllocSize(CI->getType()); local
1966 uint64_t Size = DL->getTypeAllocSize(CV->getType()); local
2030 uint64_t Size = TM.getDataLayout()->getTypeAllocSize(CV->getType()); local
[all...]
H A DDwarfDebug.cpp1131 size_t Size = CurrentFnArguments.size();
1132 if (Size == 0)
1136 if (ArgNo > Size)
2035 unsigned char Size = Asm->getDataLayout().getPointerSize(); local
2046 Asm->EmitLabelDifference(Entry.getBeginSym(), Base, Size);
2047 Asm->EmitLabelDifference(Entry.getEndSym(), Base, Size);
2049 Asm->OutStreamer.EmitSymbolValue(Entry.getBeginSym(), Size);
2050 Asm->OutStreamer.EmitSymbolValue(Entry.getEndSym(), Size);
2055 Asm->OutStreamer.EmitIntValue(0, Size);
2056 Asm->OutStreamer.EmitIntValue(0, Size);
2214 uint64_t Size = SymSize[Span.Start]; local
2235 unsigned char Size = Asm->getDataLayout().getPointerSize(); local
[all...]

Completed in 1346 milliseconds

<<11121314151617181920>>