Searched refs:Size (Results 226 - 250 of 1042) sorted by relevance

1234567891011>>

/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp150 void appendPaddingBytes(CharUnits Size) { argument
151 if (!Size.isZero())
152 FieldTypes.push_back(getByteArrayType(Size));
218 Info.Size = FD->getBitWidthValue(Context);
225 if (Info.Size > Info.StorageSize)
226 Info.Size = Info.StorageSize;
232 Info.Offset = Info.StorageSize - (Info.Offset + Info.Size);
239 // 2) Add a 1-byte capstone member at the Size of the structure.
256 CharUnits Size = NVBaseType ? Layout.getNonVirtualSize() : Layout.getSize(); local
265 return appendPaddingBytes(Size);
587 CharUnits Size = CharUnits::Zero(); local
630 MakeInfo(CodeGenTypes &Types, const FieldDecl *FD, uint64_t Offset, uint64_t Size, uint64_t StorageSize, uint64_t StorageAlignment) argument
[all...]
/external/libnfc-nxp/src/
H A DphOsalNfc.h60 // uint16_t Size;/**< Size of the datablock*/
176 * \param[in] Size Size, in uint8_t, to be allocated
182 extern void * phOsalNfc_GetMemory(uint32_t Size);
/external/lldb/source/Expression/
H A DIRExecutionUnit.cpp470 IRExecutionUnit::MemoryManager::allocateSpace(intptr_t Size, unsigned Alignment) argument
474 uint8_t *return_value = m_default_mm_ap->allocateSpace(Size, Alignment);
478 Size,
483 log->Printf("IRExecutionUnit::allocateSpace(Size=%" PRIu64 ", Alignment=%u) = %p",
484 (uint64_t)Size, Alignment, return_value);
491 IRExecutionUnit::MemoryManager::allocateCodeSection(uintptr_t Size, argument
497 uint8_t *return_value = m_default_mm_ap->allocateCodeSection(Size, Alignment, SectionID);
501 Size,
507 log->Printf("IRExecutionUnit::allocateCodeSection(Size=0x%" PRIx64 ", Alignment=%u, SectionID=%u) = %p",
508 (uint64_t)Size, Alignmen
515 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, bool IsReadOnly) argument
539 allocateGlobal(uintptr_t Size, unsigned Alignment) argument
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.cpp48 DWARFDIECollection::Size() const function in class:DWARFDIECollection
/external/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h87 virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
94 virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
121 size_t Size) = 0;
123 size_t Size) = 0;
/external/llvm/include/llvm/Support/
H A DFileOutputBuffer.h40 static std::error_code create(StringRef FilePath, size_t Size,
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/lib/Analysis/
H A DDelinearization.cpp127 int Size = Subscripts.size(); local
128 for (int i = 0; i < Size - 1; i++)
130 O << " with elements of " << *Sizes[Size - 1] << " bytes.\n";
133 for (int i = 0; i < Size; i++)
/external/llvm/lib/CodeGen/
H A DStackMaps.cpp96 unsigned Size = AP.TM.getDataLayout()->getPointerSizeInBits(); local
97 assert((Size % 8) == 0 && "Need pointer size in bytes.");
98 Size /= 8;
101 Locs.push_back(Location(StackMaps::Location::Direct, Size,
106 int64_t Size = (++MOI)->getImm(); local
107 assert(Size > 0 && "Need a valid size for indirect memory locations.");
110 Locs.push_back(Location(StackMaps::Location::Indirect, Size,
206 OS << " [encoding: .byte " << Loc.LocType << ", .byte " << Loc.Size
221 << LO.Size << "]\n";
231 unsigned Size local
[all...]
/external/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.h46 SDValue Size, unsigned Align,
/external/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp199 unsigned Size = BundleMIs.size(); local
200 assert((Size + IgnoreCount) == MI->getBundleSize() && "Corrupt Bundle!");
201 for (unsigned Index = 0; Index < Size; Index++) {
207 HexagonMCInstrInfo::setPacketEnd(MCI, Index == (Size - 1));
/external/llvm/test/MC/ARM/
H A Deh-link.s21 @ CHECK-NEXT: Size: 4
38 @ CHECK-NEXT: Size: 8
56 @ CHECK-NEXT: Size: 4
73 @ CHECK-NEXT: Size: 8
/external/llvm/test/MC/ELF/
H A Dcompression.s51 .byte 8 # Address Size (in bytes)
/external/llvm/test/MC/PowerPC/
H A Dppc64-localentry.s61 # CHECK-NEXT: Size: 16
68 # CHECK-NEXT: Size: 8
77 # CHECK-NEXT: Size: 16
84 # CHECK-NEXT: Size: 8
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp139 void *Allocate(size_t Size, size_t /*Alignment*/) { argument
143 void *MemBase = malloc(Size + Alignment - 1 + sizeof(void*));
151 LastSlabSize = Size;
155 void Deallocate(void *Slab, size_t Size) { argument
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp93 for (int i = 0; i < Streams.Size(); i++)
112 if (_streamIndex >= Streams.Size())
140 if (index >= Sizes.Size())
141 index = Sizes.Size() - 1;
212 while (i < Streams.Size())
223 while (i < Streams.Size())
248 if (formatIndices.Size() > 1)
251 if (formatIndices.Size() != 0)
274 for (int i = 0; i < Commands.Size(); i++)
371 for (int i = 0; i < updatePairs2.Size();
[all...]
H A DUpdateProduce.cpp17 for (int i = 0; i < updatePairs.Size(); i++)
/external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp81 AMDGPUMCAsmInfo::getDataASDirective(unsigned int Size, unsigned int AS) const argument
/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h53 int Size() const;
/external/webrtc/src/system_wrappers/source/
H A Dmap_no_stl.h51 int Size() const;
/external/llvm/lib/Target/R600/
H A DSILoadStoreOptimizer.cpp136 unsigned Size) {
143 if ((Offset0 % Size != 0) || (Offset1 % Size != 0))
146 unsigned EltOffset0 = Offset0 / Size;
147 unsigned EltOffset1 = Offset1 / Size;
378 unsigned Size = (Opc == AMDGPU::DS_READ_B64) ? 8 : 4; local
379 MachineBasicBlock::iterator Match = findMatchingDSInst(I, Size);
382 I = mergeRead2Pair(I, Match, Size);
389 unsigned Size = (Opc == AMDGPU::DS_WRITE_B64) ? 8 : 4; local
390 MachineBasicBlock::iterator Match = findMatchingDSInst(I, Size);
134 offsetsCanBeCombined(unsigned Offset0, unsigned Offset1, unsigned Size) argument
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandlerOut.cpp121 for(int i = 0; i < methodsInfo.Size(); i++)
144 for (int j = 0; j < methodFull.Props.Size(); j++)
194 if (_volumes.Size() > 1)
197 if (_volumes.Size() == 1)
222 ui.Size = 0;
226 if (db == 0 || ui.IndexInArchive >= db->Files.Size())
231 ui.Size = fi.Size;
308 ui.Size = 0;
321 ui.Size
[all...]
/external/clang/include/clang/Serialization/
H A DGlobalModuleIndex.h73 ModuleInfo() : File(), Size(), ModTime() { }
81 /// \brief Size of the module file at the time the global index was built.
82 off_t Size; member in struct:clang::GlobalModuleIndex::ModuleInfo
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp66 DefinedOrUnknownSVal Size = local
72 svalBuilder.evalEQ(state, Extent, Size);
/external/eigen/Eigen/src/Core/
H A DSolveTriangular.h111 template<typename Lhs, typename Rhs, int Mode, int Index, int Size,
112 bool Stop = Index==Size>
115 template<typename Lhs, typename Rhs, int Mode, int Index, int Size>
116 struct triangular_solver_unroller<Lhs,Rhs,Mode,Index,Size,false> {
119 I = IsLower ? Index : Size - Index - 1,
131 triangular_solver_unroller<Lhs,Rhs,Mode,Index+1,Size>::run(lhs,rhs);
135 template<typename Lhs, typename Rhs, int Mode, int Index, int Size>
136 struct triangular_solver_unroller<Lhs,Rhs,Mode,Index,Size,true> {

Completed in 8819 milliseconds

1234567891011>>