/external/sfntly/cpp/src/sfntly/data/ |
font_data.cc | 25 int32_t FontData::Size() const { 26 return std::min<int32_t>(array_->Size() - bound_offset_, bound_length_); 30 if (offset + length > Size() || offset < 0 || length < 0) 39 if (offset > Size() || offset < 0)
|
/frameworks/compile/libbcc/bcinfo/Wrap/ |
file_wrapper_input.cpp | 47 off_t FileWrapperInput::Size() { 55 fprintf(stderr, "Unable to compute file size: %s\n", _name);
|
in_memory_wrapper_input.cpp | 22 InMemoryWrapperInput::InMemoryWrapperInput(const char* buffer, size_t size) : 23 _buffer(buffer), _pos(0), _size(size) { 49 off_t InMemoryWrapperInput::Size() {
|
/external/chromium_org/ppapi/cpp/ |
size.h | 12 /// This file defines the API to create a size based on width 17 /// A size of an object based on width and height. 18 class Size { 22 Size() { 28 /// converting the <code>PP_Size</code> to a <code>Size</code>. This is an 32 Size(const PP_Size& s) { // Implicit. 39 /// converting them to a <code>Size</code>. 43 Size(int w, int h) { 50 ~Size() { 53 /// PP_Size() allows implicit conversion of a <code>Size</code> to [all...] |
/art/runtime/ |
mem_map.h | 72 size_t Size() const { 77 return Begin() + Size(); 88 MemMap(const std::string& name, byte* begin, size_t size, void* base_begin, size_t base_size,
|
vmap_table.h | 34 size_t size = DecodeUnsignedLeb128(&table); local 35 CHECK_LT(n, size); 43 size_t Size() const { 91 DecodeUnsignedLeb128(&table); // Skip size.
|
/external/chromium/base/win/ |
scoped_hglobal.h | 29 size_t Size() const { return GlobalSize(glob_); }
|
/external/chromium_org/base/win/ |
scoped_hglobal.h | 28 size_t Size() const { return GlobalSize(glob_); }
|
/external/chromium_org/cc/test/ |
ordered_texture_map.cc | 44 size_t OrderedTextureMap::Size() { return ordered_textures_.size(); } 58 DCHECK(index < Size());
|
/external/chromium_org/chrome/renderer/net/ |
predictor_queue.h | 39 // The size specified in the constructor creates a buffer large enough 45 // an internal size of N*(K+1). 46 explicit DnsQueue(BufferSize size); 49 size_t Size() const { return size_; } 74 const BufferSize buffer_size_; // Size one smaller than allocated space.
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
openssldigest.cc | 49 size_t OpenSSLDigest::Size() const { 64 if (!md_ || len < Size()) { 70 ASSERT(md_len == Size());
|
/external/clang/lib/AST/ |
DeclFriend.cpp | 45 assert(FriendTypeTPLists.size() == 0); 49 std::size_t Size = sizeof(FriendDecl) 50 + FriendTypeTPLists.size() * sizeof(TemplateParameterList*); 51 void *Mem = C.Allocate(Size); 60 std::size_t Size = sizeof(FriendDecl) 62 void *Mem = AllocateDeserializedDecl(C, ID, Size);
|
/external/clang/lib/Frontend/ |
LayoutOverrideSource.cpp | 24 while (Offset < S.size() && isIdentifierBody(S[Offset])) 77 // Check for the size of the type. 78 StringRef::size_type Pos = LineStr.find(" Size:"); 80 // Skip past the " Size:" prefix. 81 LineStr = LineStr.substr(Pos + strlen(" Size:")); 83 unsigned long long Size = 0; 84 (void)LineStr.getAsInteger(10, Size); 85 CurrentLayout.Size = Size; 101 // Check for the size/alignment of the type [all...] |
/external/clang/lib/Sema/ |
TypeLocBuilder.cpp | 20 size_t Size = L.getFullDataSize(); 21 reserve(Size); 30 for (unsigned i = 0, e = TypeLocs.size(); i < e; ++i) { 133 "incorrect data size provided to CreateTypeSourceInfo!");
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
BuiltinFunctionChecker.cpp | 66 DefinedOrUnknownSVal Size = 72 svalBuilder.evalEQ(state, Extent, Size);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_mutexset.cc | 80 uptr MutexSet::Size() const {
|
/external/llvm/include/llvm/Bitcode/ |
ReaderWriter.h | 115 /// uint32_t BitcodeSize; // Size of traditional bitcode file. 128 KnownHeaderSize = 4*4, // Size of header we read. 130 SizeField = 3*4 // Offset in bytes to Size field. 140 unsigned Size = ( BufPtr[SizeField ] | 145 // Verify that Offset+Size fits in the file. 146 if (VerifyBufferSize && Offset+Size > unsigned(BufEnd-BufPtr)) 149 BufEnd = BufPtr+Size;
|
/external/llvm/include/llvm/Support/ |
Memory.h | 25 /// and a size. It is used by the Memory class (a friend) as the result of 31 MemoryBlock() : Address(0), Size(0) { } 32 MemoryBlock(void *addr, size_t size) : Address(addr), Size(size) { } 34 size_t size() const { return Size; } function in class:llvm::sys::MemoryBlock 37 size_t Size; ///< Size, in bytes of the memory area 69 /// system allocation granularity (64K on Windows, page size on Linux) [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
Local.h | 183 /// in the base pointer). Return the result as a signed integer of intptr size. 205 uint64_t Size = TD.getTypeAllocSize(GTI.getIndexedType()) & PtrSizeMask; 211 Size = TD.getStructLayout(STy)->getElementOffset(OpC->getZExtValue()); 213 if (Size) 214 Result = Builder->CreateAdd(Result, ConstantInt::get(IntPtrTy, Size), 219 Constant *Scale = ConstantInt::get(IntPtrTy, Size); 229 if (Size != 1) { 231 Op = Builder->CreateMul(Op, ConstantInt::get(IntPtrTy, Size),
|
/external/llvm/lib/MC/ |
MCAsmInfo.cpp | 102 unsigned Size = 0; 105 Size += sizeof(int8_t); 107 return Size; 111 unsigned Size = 0; 119 Size += sizeof(int8_t); 121 return Size;
|
/external/llvm/lib/Target/Mips/ |
MipsAnalyzeImmediate.h | 28 const InstSeq &Analyze(uint64_t Imm, unsigned Size, bool LastInstrIsADDiu); 57 unsigned Size;
|
/external/llvm/lib/Target/R600/ |
AMDGPUFrameLowering.cpp | 81 unsigned Size = MFI->getObjectSize(i); 82 Offset += (Size / (getStackWidth(MF) * 4));
|
/external/llvm/lib/Target/SystemZ/ |
SystemZAsmPrinter.cpp | 54 uint64_t Size = TM.getDataLayout()->getTypeAllocSize(ZCPV->getType()); 56 OutStreamer.EmitValue(Expr, Size); 100 for (unsigned i = 0, e = Stubs.size(); i != e; ++i) {
|
/external/lzma/CPP/7zip/Archive/Common/ |
MultiStream.h | 22 UInt64 Size;
31 for (int i = 0; i < Streams.Size(); i++)
35 total += Streams[i].Size;
46 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
63 UInt64 Size;
79 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
|
/frameworks/av/media/libstagefright/codecs/common/include/ |
voMem.h | 34 VO_S32 Size; /*!< Buffer stride */ 55 voMemInfo.Size=nSize; \
|