Searched refs:Size (Results 276 - 300 of 1042) sorted by relevance

<<11121314151617181920>>

/external/llvm/lib/MC/
H A DMCELFStreamer.cpp293 void MCELFStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
310 struct LocalCommon L = {&SD, Size, ByteAlignment};
313 SD.setCommon(Size, ByteAlignment);
316 SD.setSize(MCConstantExpr::Create(Size, getContext()));
324 void MCELFStreamer::EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
331 EmitCommonSymbol(Symbol, Size, ByteAlignment);
334 void MCELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, argument
339 MCObjectStreamer::EmitValueImpl(Value, Size, Loc);
622 uint64_t Size = i->Size; local
682 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
687 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
[all...]
H A DMCStreamer.cpp77 void MCStreamer::EmitIntValue(uint64_t Value, unsigned Size) { argument
78 assert(1 <= Size && Size <= 8 && "Invalid size");
79 assert((isUIntN(8 * Size, Value) || isIntN(8 * Size, Value)) &&
83 for (unsigned i = 0; i != Size; ++i) {
84 unsigned index = isLittleEndian ? i : (Size - i - 1);
87 EmitBytes(StringRef(buf, Size));
108 void MCStreamer::EmitValue(const MCExpr *Value, unsigned Size, argument
110 EmitValueImpl(Value, Size, Lo
113 EmitSymbolValue(const MCSymbol *Sym, unsigned Size, bool IsSectionRelative) argument
119 EmitValueImpl(MCSymbolRefExpr::Create(Sym, getContext()), Size); local
490 EmitWinCFIAllocStack(unsigned Size) argument
640 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
642 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
647 EmitValueImpl(const MCExpr *Value, unsigned Size, const SMLoc &Loc) argument
[all...]
H A DMCAsmStreamer.cpp142 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
148 /// @param Size - The size of the common symbol.
150 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
154 uint64_t Size = 0, unsigned ByteAlignment = 0) override;
157 uint64_t Size, unsigned ByteAlignment = 0) override;
161 void EmitValueImpl(const MCExpr *Value, unsigned Size,
163 void EmitIntValue(uint64_t Value, unsigned Size) override;
220 void EmitWinCFIAllocStack(unsigned Size) override;
504 void MCAsmStreamer::EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, argument
509 OS << "\t.comm\t" << *Symbol << ',' << Size; local
523 EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, unsigned ByteAlign) argument
528 OS << "\\t.lcomm\\t" << *Symbol << ',' << Size; local
545 EmitZerofill(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
558 OS << ',' << *Symbol << ',' << Size; local
568 EmitTBSSSymbol(const MCSection *Section, MCSymbol *Symbol, uint64_t Size, unsigned ByteAlignment) argument
575 OS << ".tbss " << *Symbol << ", " << Size; local
645 EmitIntValue(uint64_t Value, unsigned Size) argument
646 EmitValue(MCConstantExpr::Create(Value, getContext()), Size); local
649 EmitValueImpl(const MCExpr *Value, unsigned Size, const SMLoc &Loc) argument
[all...]
/external/google-breakpad/src/common/mac/
H A Dmacho_reader.cc117 size_t fat_size = buffer_.Size();
142 object_files_[0].size = static_cast<uint32_t>(buffer_.Size());
325 if (!(cursor >> size) || size > command.Size()) {
355 if (file_offset > buffer_.Size() ||
356 file_size > buffer_.Size() - file_offset) {
392 if (symoff > buffer_.Size() || symbols_size > buffer_.Size() - symoff ||
393 stroff > buffer_.Size() || strsize > buffer_.Size() - stroff) {
/external/llvm/lib/Target/Hexagon/Disassembler/
H A DHexagonDisassembler.cpp43 DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size,
70 const uint16_t Table[], size_t Size) {
71 if (RegNo < Size) {
189 DecodeStatus HexagonDisassembler::getInstruction(MCInst &MI, uint64_t &Size, argument
194 Size = 4;
69 DecodeRegisterClass(MCInst &Inst, unsigned RegNo, const uint16_t Table[], size_t Size) argument
/external/lzma/CPP/7zip/Common/
H A DCWrappers.cpp142 if (Buf == 0 || size != Size)
146 Size = size;
157 Res = Stream->Read(Buf, Size, &avail);
191 if (Buf == 0 || size != Size)
195 Size = size;
/external/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc30 int32_t ByteArray::Size() { return storage_length_; } function in class:sfntly::ByteArray
59 if (index < 0 || index >= Size()) {
81 if (index < 0 || index >= Size()) {
89 int32_t actual_length = std::min<int32_t>(length, Size() - index);
106 if (array->Size() < dst_offset + length) { // insufficient space
/external/openfst/src/include/fst/
H A Dcompact-fst.h59 // * Fixed out-degree compactors: 'compactor.Size()' returns a
65 // * Variable out-degree compactors: 'compactor.Size() == -1'. There
81 // ssize_t Size();
116 // consecutively. For a given state 's', its 'compactor.Size()' outgoing
118 // stored in position ['s*compactor.Size()', '(s+1)*compactor_.Size()').
228 if (compactor.Size() == -1) {
235 ncompacts_ = nstates_ * compactor.Size();
246 if (compactor.Size() == -1)
256 if ((compactor.Size() !
1231 ssize_t Size() const { return 1; } function in class:fst::StringCompactor
1274 ssize_t Size() const { return 1;} function in class:fst::WeightedStringCompactor
1316 ssize_t Size() const { return -1;} function in class:fst::UnweightedAcceptorCompactor
1358 ssize_t Size() const { return -1;} function in class:fst::AcceptorCompactor
1400 ssize_t Size() const { return -1; } function in class:fst::UnweightedCompactor
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp57 unsigned BytesRemaining = S.Size;
389 uint64_t Size = 0; local
390 Check(I->getSize(Size));
391 CommonSize += Size;
445 unsigned Size) const {
448 Src += Size - 1;
449 while (Size--)
452 while (Size--)
459 unsigned Size) const {
461 while (Size
497 uint64_t Size = 0; local
521 uint64_t Size; local
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp370 uint64_t Size; local
393 for (Index = Start; Index < End; Index += Size) {
396 if (DisAsm->getInstruction(Inst, Size, Bytes.slice(Index),
402 DumpBytes(ArrayRef<uint8_t>(Bytes.data() + Index, Size));
410 if (Size == 0)
411 Size = 1; // skip illegible bytes
427 if (addr >= Index + Size) break;
481 "Idx Name Size Address Type\n";
488 uint64_t Size = Section.getSize(); local
495 Name.str().c_str(), Size, Addres
508 uint64_t Size = Section.getSize(); local
614 uint64_t Size; local
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsxform.c178 cmsUInt32Number Size)
183 p -> xform(p, InputBuffer, OutputBuffer, Size, Size);
191 cmsUInt32Number Size, cmsUInt32Number Stride)
196 p -> xform(p, InputBuffer, OutputBuffer, Size, Stride);
207 void* out, cmsUInt32Number Size, cmsUInt32Number Stride)
218 for (i=0; i < Size; i++) {
257 cmsUInt32Number Size,
267 n = Size;
281 void* out, cmsUInt32Number Size,
175 cmsDoTransform(cmsHTRANSFORM Transform, const void* InputBuffer, void* OutputBuffer, cmsUInt32Number Size) argument
188 cmsDoTransformStride(cmsHTRANSFORM Transform, const void* InputBuffer, void* OutputBuffer, cmsUInt32Number Size, cmsUInt32Number Stride) argument
205 FloatXFORM(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
254 NullFloatXFORM(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
279 NullXFORM(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
303 PrecalculatedXFORM(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
350 PrecalculatedXFORMGamutCheck(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
374 CachedXFORM(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
419 CachedXFORMGamutCheck(_cmsTRANSFORM* p, const void* in, void* out, cmsUInt32Number Size, cmsUInt32Number Stride) argument
[all...]
/external/libavc/encoder/
H A Dih264e_rc_mem_interface.c248 UWORD32 Size, align; local
252 Size = rc_memtab->u4_size;
256 FILL_MEMTAB(ps_mem, j, Size, align, IV_EXTERNAL_CACHEABLE_PERSISTENT_MEM);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.h45 uint32_t Size() const { return 11; /* Size in bytes of the compile unit header */ } function in class:DWARFCompileUnit
47 dw_offset_t GetFirstDIEOffset() const { return m_offset + Size(); }
49 size_t GetDebugInfoSize() const { return m_length + 4 - Size(); /* Size in bytes of the .debug_info data associated with this compile unit. */ }
/external/llvm/lib/Analysis/
H A DAliasAnalysisCounter.cpp140 errs() << "[" << LocA.Size << "B] ";
143 errs() << "[" << LocB.Size << "B] ";
166 errs() << "[" << Loc.Size << "B] ";
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldMachOX86_64.h53 makeValueAddendPCRel(Value, Obj, RelI, 1 << RE.Size);
92 writeBytesUnaligned(Value + RE.Addend, LocalAddress, 1 << RE.Size);
110 assert(RE.Size == 2);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h220 unsigned Size = RegSize; local
223 Size /= 2;
224 uint64_t Mask = (1ULL << Size) - 1;
226 if ((Imm & Mask) != ((Imm >> Size) & Mask)) {
227 Size *= 2;
230 } while (Size > 2);
234 uint64_t Mask = ((uint64_t)-1LL) >> (64 - Size);
248 CTO = CLO + countTrailingOnes(Imm) - (64 - Size);
254 assert(Size > I && "I should be smaller than element size");
255 unsigned Immr = (Size
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsSERegisterInfo.cpp58 MipsSERegisterInfo::intRegClass(unsigned Size) const {
59 if (Size == 4)
62 assert(Size == 8);
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h113 uint64_t &Size) const;
118 uint64_t &Size) const;
131 uint64_t Size; member in struct:llvm::symbolize::ModuleInfo::SymbolDesc
/external/lzma/CPP/7zip/UI/Common/
H A DExtractingFilePath.cpp88 for (int i = 0; i < pathParts.Size();)
108 for (int i = 0; i < parts.Size(); i++)
131 for (int i = 0; i < parts.Size(); i++)
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp86 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount)
88 Vector<T, Size> result;
89 for (int i = 0; i < Size; i++)
94 template<typename T, int Size> Vector<T, Size> rightShift (const Vector<T, Size>& value, const Vector<int, Size>
[all...]
/external/llvm/include/llvm/CodeGen/
H A DCallingConvLower.h400 unsigned AllocateStack(unsigned Size, unsigned Align) { argument
404 StackOffset += Size;
410 unsigned AllocateStack(unsigned Size, unsigned Align, unsigned ShadowReg) { argument
412 return AllocateStack(Size, Align);
417 unsigned AllocateStack(unsigned Size, unsigned Align, argument
421 return AllocateStack(Size, Align);
/external/lzma/CPP/7zip/Archive/
H A DSplitHandler.cpp57 case kpidNumVolumes: prop = (UInt32)_streams.Size(); break;
227 UInt64 numFiles = _streams.Size();
254 UInt64 numFiles = _streams.Size();
324 for (int i = 0; i < _streams.Size(); i++)
346 for (int i = 0; i < _streams.Size(); i++)
350 subStreamInfo.Size = _sizes[i];
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tests.pas145 CheckEquals(7, S1.Size);
148 CheckEquals(Length(GRAMMARSTR), S2.Size);
151 CheckEquals(10, S3.Size);
159 CheckEquals(0, S1.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/AST/
H A DRecordLayout.cpp37 : Size(size), DataSize(datasize), Alignment(alignment),
65 : Size(size), DataSize(datasize), Alignment(alignment),

Completed in 893 milliseconds

<<11121314151617181920>>