Searched defs:Size (Results 126 - 150 of 555) sorted by relevance

1234567891011>>

/external/clang/include/clang/AST/
H A DRecordLayout.h60 /// Size - Size of record in characters.
61 CharUnits Size; member in class:clang::ASTRecordLayout
63 /// DataSize - Size of record in characters without tail padding.
174 CharUnits getSize() const { return Size; }
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h33 uint64_t Size; member in struct:clang::FileData
41 : Size(0), ModTime(0), IsDirectory(false), IsNamedPipe(false),
/external/clang/lib/CodeGen/
H A DCGRecordLayout.h72 unsigned Size : 15; member in struct:clang::CodeGen::CGBitFieldInfo
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, argument
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
100 uint64_t Offset, uint64_t Size,
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersChecker.cpp46 void addSizeInfo(const Expr *Array, const Expr *Size,
61 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size, argument
64 SVal SizeV = State->getSVal(Size, C.getLocationContext());
119 const DefinedSVal *Size = State->get<ArraySizeMap>(ArraySym); local
121 if (!Size)
131 // Now, check if 'Idx in [0, Size-1]'.
133 ProgramStateRef StInBound = State->assumeInBound(Idx, *Size, true, T);
134 ProgramStateRef StOutBound = State->assumeInBound(Idx, *Size, false, T);
/external/eigen/unsupported/test/
H A Djacobisvd.cpp94 enum { Size = MatrixType::RowsAtCompileTime }; enumerator in enum:__anon21127
96 typedef Matrix<RealScalar, Size, 1> RealVecType;
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h147 size_t Size() const { return m_breakpoints.size(); } function in class:DNBBreakpointList
/external/llvm/include/llvm/MC/
H A DMCFixup.h98 static MCFixupKind getKindForSize(unsigned Size, bool isPCRel) { argument
99 switch (Size) {
H A DMCWin64EH.h40 MCWin64EHInstruction(MCSymbol *L, unsigned Size) argument
41 : Operation(Size>128 ? Win64EH::UOP_AllocLarge : Win64EH::UOP_AllocSmall),
42 Label(L), Offset(Size) { }
/external/llvm/include/llvm/Support/
H A DOutputBuffer.h40 size_t Size = Output.size(); local
42 if (Size & (Boundary - 1)) {
44 size_t Pad = Boundary - (Size & (Boundary - 1));
45 Output.resize(Size + Pad);
/external/llvm/include/llvm/Target/
H A DTargetJITInfo.h55 size_t Size; member in struct:llvm::TargetJITInfo::StubLayout
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp150 << ", Size: " << Size << "\n"; local
157 O << "Size: " << Size << "\n"; local
206 unsigned Size = ~0U; local
215 case dwarf::DW_FORM_data1: Size = 1; break;
217 case dwarf::DW_FORM_data2: Size = 2; break;
220 case dwarf::DW_FORM_data4: Size = 4; break;
223 case dwarf::DW_FORM_data8: Size = 8; break;
229 Size
[all...]
/external/llvm/lib/CodeGen/
H A DCallingConvLower.cpp47 unsigned Size = ArgFlags.getByValSize(); local
48 if (MinSize > (int)Size)
49 Size = MinSize;
53 TM.getTargetLowering()->HandleByVal(this, Size, Align);
54 unsigned Offset = AllocateStack(Size, Align);
/external/llvm/lib/ExecutionEngine/OProfileJIT/
H A DOProfileJITEventListener.cpp181 uint64_t Size; local
184 if (I->getSize(Size)) continue;
186 if (Wrapper.op_write_native_code(Name.data(), Addr, (void*)Addr, Size)
190 << (void*)Addr << "-" << ((char*)Addr + Size) << "]\n");
H A DOProfileWrapper.cpp215 const unsigned int Size) {
220 return WriteNativeCodeFunc(Agent, Name, Addr, Code, Size);
212 op_write_native_code(const char* Name, uint64_t Addr, void const* Code, const unsigned int Size) argument
/external/llvm/lib/ExecutionEngine/
H A DRTDyldMemoryManager.cpp98 size_t Size) {
102 const char *End = P + Size;
110 size_t Size) {
112 const char *End = P + Size;
122 size_t Size) {
133 size_t Size) {
96 registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) argument
108 deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) argument
120 registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) argument
131 deregisterEHFrames(uint8_t *Addr, uint64_t LoadAddr, size_t Size) argument
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DGDBRegistrar.cpp137 size_t Size = Object.getBufferSize(); local
150 JITCodeEntry->symfile_size = Size;
152 ObjectBufferMap[Buffer] = std::make_pair(Size, JITCodeEntry);
/external/llvm/lib/IR/
H A DIRBuilder.cpp64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, argument
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
68 Type *Tys[] = { Ptr->getType(), Size->getType() };
82 CreateMemCpy(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
87 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
88 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
106 CreateMemMove(Value *Dst, Value *Src, Value *Size, unsigned Align, argument
111 Value *Ops[] = { Dst, Src, Size, getInt32(Align), getInt1(isVolatile) };
112 Type *Tys[] = { Dst->getType(), Src->getType(), Size->getType() };
125 CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantInt *Size) { argument
140 CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) argument
[all...]
/external/llvm/lib/Support/
H A DMD5.cpp79 unsigned long Size = Data.size(); local
172 } while (Size -= 64);
191 unsigned long Size = Data.size(); local
194 if ((lo = (saved_lo + Size) & 0x1fffffff) < saved_lo)
196 hi += Size >> 29;
203 if (Size < free) {
204 memcpy(&buffer[used], Ptr, Size);
210 Size -= free;
214 if (Size >= 64) {
215 Ptr = body(ArrayRef<uint8_t>(Ptr, Size
[all...]
/external/llvm/lib/Target/ARM/
H A DARMCallingConv.h237 unsigned Size = LocVT.getSizeInBits() / 8; local
238 unsigned Align = Size;
247 It.convertToMem(State.AllocateStack(Size, Align));
H A DARMSelectionDAGInfo.cpp31 SDValue Size, unsigned Align,
42 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
150 SDValue Src, SDValue Size,
171 Entry.Node = Size;
28 EmitTargetCodeForMemcpy(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const argument
148 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp195 unsigned Size = BundleMIs.size(); local
196 assert((Size+IgnoreCount) == MI->getBundleSize() && "Corrupt Bundle!");
197 for (unsigned Index = 0; Index < Size; Index++) {
200 MCI.setPacketEnd(Index == (Size-1));
H A DHexagonCallingConvLower.cpp45 unsigned Size = ArgFlags.getByValSize(); local
46 if (MinSize > (int)Size)
47 Size = MinSize;
50 unsigned Offset = AllocateStack(Size, Align);
H A DHexagonCallingConvLower.h163 unsigned AllocateStack(unsigned Size, unsigned Align) { argument
167 StackOffset += Size;
/external/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h74 void setFormalArgInfo(unsigned Size, bool HasByval) { argument
75 IncomingArgSize = Size;
127 /// Size of incoming argument area.
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMCCodeEmitter.cpp104 unsigned Size = Desc.getSize(); variable
105 switch (Size) {

Completed in 1665 milliseconds

1234567891011>>