Searched refs:Size (Results 301 - 325 of 1042) sorted by relevance

<<11121314151617181920>>

/external/clang/lib/Sema/
H A DTypeLocBuilder.cpp20 size_t Size = L.getFullDataSize(); local
21 reserve(Size);
/external/deqp/modules/glshared/
H A DglsLongStressTestUtil.cpp47 template <int Size>
48 static tcu::Matrix<float, Size, Size> translationMat (const float v)
50 tcu::Matrix<float, Size, Size> res(1.0f);
51 tcu::Vector<float, Size> col(v);
52 col[Size-1] = 1.0f;
53 res.setColumn(Size-1, col);
/external/eigen/Eigen/src/Eigenvalues/
H A DTridiagonalization.h73 Size = MatrixType::RowsAtCompileTime, enumerator in enum:Eigen::Tridiagonalization::__anon4278
74 SizeMinusOne = Size == Dynamic ? Dynamic : (Size > 1 ? Size - 1 : 1),
113 Tridiagonalization(Index size = Size==Dynamic ? 2 : Size) argument
382 int Size=MatrixType::ColsAtCompileTime,
436 template<typename MatrixType, int Size, bool IsComplex>
/external/google-breakpad/src/processor/
H A Dsynth_minidump.cc176 assert(Size() == sizeof(MDRawContextX86));
195 assert(Size() == sizeof(MDRawContextARM));
231 assert(Size() == sizeof(MDRawContextMIPS));
245 assert(Size() == sizeof(MDRawThread));
315 assert(Size() == sizeof(MDRawExceptionStream));
337 assert(Size() == sizeof(MDRawHeader));
341 section->Finish(file_start_ + Size());
385 stream_directory_rva_ = file_start_ + Size();
/external/lldb/include/lldb/Symbol/
H A DClangExternalASTSourceCallbacks.h39 uint64_t &Size,
127 uint64_t &Size,
/external/llvm/include/llvm/Support/
H A DMemoryBuffer.h111 getNewMemBuffer(size_t Size, StringRef BufferName = "");
117 getNewUninitMemBuffer(size_t Size, const Twine &BufferName = "");
/external/llvm/lib/ExecutionEngine/Orc/
H A DOrcMCJITReplacement.h38 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
42 ClientMM->allocateCodeSection(Size, Alignment, SectionID,
48 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
51 uint8_t *Addr = ClientMM->allocateDataSection(Size, Alignment, SectionID,
68 size_t Size) override {
69 return ClientMM->registerEHFrames(Addr, LoadAddr, Size);
73 size_t Size) override {
74 return ClientMM->deregisterEHFrames(Addr, LoadAddr, Size);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.h74 unsigned Size = Obj.getAnyRelocationLength(RelInfo); local
80 return RelocationEntry(SectionID, Offset, RelType, 0, IsPCRel, Size);
/external/llvm/lib/Target/ARM/
H A DARMConstantIslandPass.cpp100 /// Size - Size of the basic block in bytes. If the block contains
105 unsigned Size; member in struct:__anon10665::ARMConstantIslands::BasicBlockInfo
112 /// of unknown size. The real size may be smaller than Size bytes by a
121 BasicBlockInfo() : Offset(0), Size(0), KnownBits(0), Unalign(0),
131 if (Size & ((1u << Bits) - 1))
132 Bits = countTrailingZeros(Size);
140 unsigned PO = Offset + Size;
367 << format(" size=%#x\n", BBInfo[J].Size);
535 unsigned Size local
1009 unsigned Size = U.CPEMI->getOperand(2).getImm(); local
1380 unsigned Size = CPEMI->getOperand(2).getImm(); local
1478 unsigned Size = CPEMI->getOperand(2).getImm(); local
[all...]
/external/llvm/lib/Target/Mips/
H A DMips16RegisterInfo.cpp74 Mips16RegisterInfo::intRegClass(unsigned Size) const {
75 assert(Size == 4);
/external/llvm/lib/Target/SystemZ/Disassembler/
H A DSystemZDisassembler.cpp30 DecodeStatus getInstruction(MCInst &instr, uint64_t &Size,
288 DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size,
294 Size = 0;
301 Size = 2;
304 Size = 4;
307 Size = 6;
312 if (Bytes.size() < Size)
317 for (uint64_t I = 0; I < Size; ++I)
/external/llvm/lib/Target/X86/
H A DX86SelectionDAGInfo.cpp56 SDValue Size, unsigned Align,
59 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
91 Entry.Node = Size;
174 Count = Size;
189 EVT SizeVT = Size.getValueType();
206 SDValue Size, unsigned Align, bool isVolatile, bool AlwaysInline,
210 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
279 EVT SizeVT = Size.getValueType();
53 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc dl, SDValue Chain, SDValue Dst, SDValue Src, SDValue Size, unsigned Align, bool isVolatile, MachinePointerInfo DstPtrInfo) const argument
204 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
/external/llvm/test/MC/ARM/
H A Delf-movt.s27 @ OBJ-NEXT: Size: 8
46 @ OBJ-NEXT: Size: 16
/external/llvm/test/MC/Mips/
H A Dmips-pdr.s25 # OBJOUT: Size: 64
40 # OBJOUT: Size: 16
/external/llvm/test/MC/PowerPC/
H A Dppc-llong.s21 # CHECK-NEXT: Size: 8
H A Dppc-word.s21 # CHECK-NEXT: Size: 2
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp98 void useSpace(uintptr_t* UsedSize, uintptr_t Size, unsigned Alignment) { argument
99 uintptr_t AlignedSize = (Size + Alignment - 1) / Alignment * Alignment;
104 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
107 useSpace(IsReadOnly ? &UsedDataSizeRO : &UsedDataSizeRW, Size, Alignment);
108 return SectionMemoryManager::allocateDataSection(Size, Alignment,
112 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
115 useSpace(&UsedCodeSize, Size, Alignment);
116 return SectionMemoryManager::allocateCodeSection(Size, Alignment,
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.cpp110 if (index2 < 0 || subStream > Sizes.Size())
112 if (index2 < Sizes.Size())
H A D7zHandler.cpp51 *numItems = _db.Files.Size();
94 for (i = 0; i < _db.Folders.Size(); i++)
97 for (int j = f.Coders.Size() - 1; j >= 0; j--)
101 for (i = 0; i < ids.Size(); i++)
116 case kpidNumBlocks: prop = (UInt32)_db.Folders.Size(); break;
225 prop = item.Size;
226 // prop = ref2.Size;
264 for (int i = folderInfo.Coders.Size() - 1; i >= 0; i--)
366 folderInfo.PackStreams.Size() > (int)(propID - kpidPackedSize0))
/external/lzma/CPP/7zip/UI/Console/
H A DMain.cpp101 " -v{Size}[b|k|m|g]: Create volumes\n"
188 if (commandStrings.Size() == 1)
237 if (codecs->Formats.Size() == 0 &&
251 for (i = 0; i < codecs->Formats.Size(); i++)
271 for (int t = 0; t < arc.Exts.Size(); t++)
455 << "Size: " << stat.UnpackSize << endl
526 if (callback.CantFindFiles.Size() > 0)
530 int numErrors = callback.CantFindFiles.Size();
571 int numErrors = callback.FailedFiles.Size();
574 if (callback.CantFindFiles.Size()
[all...]
H A DList.cpp37 { kpidSize, L"Size" },
38 { kpidPackSize, L"Packed Size" },
48 { kpidDictionarySize, L"Dictionary Size" },
74 { kpidPhySize, L"Physical Size" },
75 { kpidHeadersSize, L"Headers Size" },
82 { kpidSectorSize, L"Sector Size" },
87 { kpidTotalSize, L"Total Size" },
89 { kpidClusterSize, L"Cluster Size" },
140 { kpidSize, L"Size", kRight, kRight, 1, 12 },
239 for (int i = 0; i < _fields.Size();
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.h80 * The next program parameter's Size will be Size-4 of this parameter.
82 GLuint Size; member in struct:gl_program_parameter
97 GLuint Size; /**< allocated size of Parameters, ParameterValues */ member in struct:gl_program_parameter_list
99 struct gl_program_parameter *Parameters; /**< Array [Size] */
100 gl_constant_value (*ParameterValues)[4]; /**< Array [Size] of constant[4] */
/external/skia/src/gpu/gl/
H A DGrGLPathRendering.h117 template<int Size> void getRTAdjustedGLMatrix(GrGLfloat* destMatrix) {
129 GrGLGetMatrix<Size>(destMatrix, combined);
/external/v8/src/heap/
H A Dincremental-marking-inl.h84 DCHECK(obj->Size() >= 2 * kPointerSize);
87 int obj_size = obj->Size();
/external/deqp/framework/common/
H A DtcuMatrix.hpp94 template <typename T, int Size>
97 static T doDeterminant (const Matrix<T, Size, Size>& mat);
98 static Matrix<T, Size, Size> doInverse (const Matrix<T, Size, Size>& mat);
125 template <typename T, int Size>
126 T determinant (const Matrix<T, Size, Size>
[all...]

Completed in 3706 milliseconds

<<11121314151617181920>>