HomeSort by relevance Sort by last modified time
    Searched defs:reserve (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/pdfium/fxjs/xfa/
cjx_caption.cpp 21 void CJX_Caption::reserve(CFXJSE_Value* pValue, function in class:CJX_Caption
  /external/libunwind/include/
mempool.h 66 unsigned int reserve; /* minimum (desired) size of the free-list */ member in struct:mempool
80 /* Initialize POOL for an object size of OBJECT_SIZE bytes. RESERVE
85 size_t obj_size, size_t reserve);
  /external/llvm/include/llvm/ADT/
IndexedMap.h 56 void reserve(typename StorageT::size_type s) { function in class:llvm::IndexedMap
57 storage_.reserve(s);
PackedVector.h 110 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi.c 80 reserve(struct svga_shader_emitter *emit, unsigned nr_dwords) function
95 if (!reserve(emit, 1))
108 if (!reserve(emit, nr))
122 if (!reserve(emit, 1))
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 37 void TiXmlString::reserve (size_type cap) function in class:TiXmlString
73 reserve (newsize + capacity());
84 tmp.reserve(a.length() + b.length());
94 tmp.reserve(a.length() + b_len);
104 tmp.reserve(a_len + b.length());
  /external/skia/src/codec/
SkWebpCodec.h 88 void reserve(int size) { function in class:final::FrameHolder
89 fFrames.reserve(size);
  /external/skqp/src/codec/
SkWebpCodec.h 88 void reserve(int size) { function in class:final::FrameHolder
89 fFrames.reserve(size);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
IndexedMap.h 56 void reserve(typename StorageT::size_type s) { function in class:llvm::IndexedMap
57 storage_.reserve(s);
PackedVector.h 112 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
  /external/tinyxml/
tinystr.cpp 41 void TiXmlString::reserve (size_type cap) function in class:TiXmlString
77 reserve (newsize + capacity());
88 tmp.reserve(a.length() + b.length());
98 tmp.reserve(a.length() + b_len);
108 tmp.reserve(a_len + b.length());
  /external/u-boot/include/
image-sparse.h 22 lbaint_t (*reserve)(struct sparse_storage *info, member in struct:sparse_storage
  /external/e2fsprogs/lib/ext2fs/
bmove.c 32 ext2fs_block_bitmap reserve; member in struct:process_block_struct
56 if (ext2fs_test_block_bitmap2(pb->reserve, block)) {
64 } while (ext2fs_test_block_bitmap2(pb->reserve, block) ||
98 ext2fs_block_bitmap reserve,
113 pb.reserve = reserve;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
IndexedMap.h 58 void reserve(typename StorageT::size_type s) { function in class:llvm::IndexedMap
59 storage_.reserve(s);
PackedVector.h 109 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
LSUnit.cpp 54 bool LSUnit::reserve(const InstRef &IR) { function in class:mca::LSUnit
  /external/clang/include/clang/AST/
ASTUnresolvedSet.h 74 void reserve(ASTContext &C, unsigned N) { function in class:clang::ASTUnresolvedSet
75 Decls.reserve(C, N);
100 void reserve(ASTContext &C, unsigned N) { Impl.reserve(C, N); } function in class:clang::LazyASTUnresolvedSet
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 108 // Reserve space for at least Ncp items, reallocating if necessary.
109 void reserve(size_t Ncp, MemRegionRef A) { function in class:clang::threadSafety::til::SimpleArray
118 // Reserve space for at least N more items.
121 reserve(u_max(InitialCapacity, N), A);
123 reserve(u_max(Size + N, Capacity * 2), A);
  /external/clang/lib/Sema/
TypeLocBuilder.h 59 void reserve(size_t Requested) { function in class:clang::TypeLocBuilder
  /external/libxcam/xcore/
buffer_pool.cpp 100 BufferPool::reserve (uint32_t max_count) function in class:XCam::BufferPool
119 "BufferPool reserve failed with none buffer data allocated");
122 XCAM_LOG_WARNING ("BufferPool expect to reserve %d data but only reserved %d", max_count, i);
  /external/u-boot/board/astro/mcf5373l/
astro.h 37 unsigned char reserve; member in struct:__anon47051
  /bionic/libc/bionic/
bionic_elf_tls.cpp 104 // First reserve enough space for the TCB before the executable segment.
105 reserve(sizeof(bionic_tcb), 1);
107 // Then reserve the segment itself.
108 const size_t result = reserve(exe_segment->size, exe_segment->alignment);
134 reserve(exe_size, 1);
136 offset_bionic_tcb_ = reserve(sizeof(bionic_tcb), max_align);
159 size_t StaticTlsLayout::reserve(size_t size, size_t alignment) { function in class:StaticTlsLayout
  /bootable/recovery/otautil/
sysutil.cpp 132 // Reserve enough contiguous address space for the whole file.
135 void* reserve = mmap(nullptr, blocks * blksize, PROT_NONE, MAP_PRIVATE | MAP_ANON, -1, 0); local
136 if (reserve == MAP_FAILED) {
137 PLOG(ERROR) << "failed to reserve address space";
144 munmap(reserve, blocks * blksize);
150 auto next = static_cast<unsigned char*>(reserve);
158 munmap(reserve, blocks * blksize);
168 munmap(reserve, blocks * blksize);
172 addr = static_cast<unsigned char*>(reserve);
  /device/generic/goldfish/camera/fake-pipeline2/
JpegCompressor.cpp 44 status_t JpegCompressor::reserve() { function in class:android::JpegCompressor
64 ALOGE("Called start without reserve() first!");
  /device/google/cuttlefish_common/guest/hals/camera/fake-pipeline2/
JpegCompressor.cpp 37 status_t JpegCompressor::reserve() { function in class:android::JpegCompressor
58 ALOGE("Called start without reserve() first!");

Completed in 644 milliseconds

1 2 3 4 5 6