HomeSort by relevance Sort by last modified time
    Searched refs:reserve (Results 26 - 50 of 473) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/crypto/
hmac_mac.cc 39 plat_->key_.reserve(0);
openssl_util.cc 47 locks_.reserve(num_locks);
  /external/chromium/net/base/
x509_certificate_openssl_android.cc 34 cert_bytes.reserve(cert_handles.size());
  /external/chromium/webkit/glue/media/
audio_decoder.cc 67 audio_data.reserve(number_of_channels);
  /external/clang/lib/Analysis/
PostOrderCFGView.cpp 21 Blocks.reserve(cfg->getNumBlockIDs());
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 88 // around 14-20 so lets pre-reserve the needed memory for
93 // Only reserve the memory if we are adding children of
96 // the first compile unit child DIE and should reserve
99 DieArray.reserve(getDebugInfoSize() / 14);
  /external/llvm/lib/Support/
IntEqClasses.cpp 27 EC.reserve(N);
  /external/llvm/lib/Transforms/Utils/
ModuleUtils.cpp 38 CurrentCtors.reserve(n + 1);
  /external/webkit/Source/JavaScriptCore/wtf/
PageReservation.h 39 memory without committing physical memory pages using PageReservation::reserve.
40 Following a call to reserve all memory in the region is in a decommited state,
104 static PageReservation reserve(size_t size, OSAllocator::Usage usage = OSAllocator::UnknownUsage, bool writable = true, bool executable = false) function in class:WTF::PageReservation
OSAllocatorSymbian.cpp 76 // Reserve memory and return the base address of the region
83 base = dataAllocatorInstance()->reserve(reservationSize);
121 // The PageAllocatorSymbian class helps map OSAllocator calls for reserve/commit/decommit
126 // - The entire reservation reserve is logically divided into pageSized blocks (4K on Symbian)
152 void* PageAllocatorSymbian::reserve(size_t bytes) function in class:WTF::PageAllocatorSymbian
168 // Reverses the effects of a reserve() call
177 // Actually commit memory from the OS, after a previous call to reserve()
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTexture.cpp 56 bool LayerTexture::reserve(const IntSize& size, unsigned format) function in class:WebCore::LayerTexture
  /frameworks/compile/mclinker/include/mcld/LD/
StringUnorderedMap.h 70 void reserve(size_t pCapacity);
112 this->reserve(pCapacity);
121 StringUnorderedMapImpl::reserve(size_t pCapacity) function in class:mcld::StringUnorderedMap::StringUnorderedMapImpl
184 this->reserve(this->m_Capacity+1);
  /external/aac/libSBRdec/src/
sbr_dec.cpp 327 int i, slot, reserve; local
401 reserve = fixMax(0,CntLeadingZeros(maxVal)-1) ;
402 reserve = fixMin(reserve,DFRACT_BITS-1-hSbrDec->sbrScaleFactor.lb_scale);
411 reserve);
413 hSbrDec->sbrScaleFactor.lb_scale += reserve;
548 sdiff = hSbrDec->sbrScaleFactor.lb_scale - reserve; /* Scaling difference */
884 int source_scale, target_scale, delta_scale, target_lsb, target_usb, reserve; local
    [all...]
  /external/clang/lib/Sema/
TypeLocBuilder.h 54 void reserve(size_t Requested) { function in class:clang::TypeLocBuilder
178 reserve(Size);
  /external/llvm/include/llvm/ADT/
PackedVector.h 109 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } function in class:llvm::PackedVector
  /frameworks/av/drm/common/
DrmEngineBase.cpp 82 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
83 return onConsumeRights(uniqueId, decryptHandle, action, reserve);
  /external/clang/include/clang/AST/
ASTVector.h 64 reserve(C, N);
165 void reserve(ASTContext &C, unsigned N) { function in class:clang::ASTVector
241 // Convert iterator to elt# to avoid invalidating iterator when we reserve()
245 reserve(C, static_cast<unsigned>(this->size() + NumToInsert));
290 // Convert iterator to elt# to avoid invalidating iterator when we reserve()
294 reserve(C, static_cast<unsigned>(this->size() + NumToInsert));
  /external/clang/test/Analysis/
iterators.cpp 80 // using reserve eliminates some warnings
85 v.reserve( 100 );
87 // iterator assigned before the reserve is still invalidated
88 *b; // expected-warning{{Attempt to use an iterator made invalid by call to 'reserve'}}
  /external/kernel-headers/original/asm-x86/
fixmap_32.h 103 extern void reserve_top_address(unsigned long reserve);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineWorklist.h 55 Worklist.reserve(NumEntries+16);
  /external/skia/include/core/
SkTDArray.h 138 void setReserve(size_t reserve) {
139 if (reserve > fReserve) {
140 SkASSERT(reserve > fCount);
142 this->growBy(reserve - fCount);
  /external/skia/src/core/
SkFlattenable.cpp 23 matrix.flatten(writer->reserve(size));
35 rgn.flatten(writer->reserve(size));
331 (void)this->reserve(sizeof(uint32_t));
342 *(void**)this->reserve(sizeof(void*)) = proc;
  /external/skia/src/effects/
SkRectShape.cpp 71 *(SkSize*)buffer.reserve(sizeof(SkSize)) = fRadii;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 67 arcs.reserve(fst->NumArcs(s));
  /external/valgrind/tsan/
ts_util.cc 128 res.reserve(n);

Completed in 1094 milliseconds

12 3 4 5 6 7 8 91011>>