Home
last modified time | relevance | path

Searched refs:reserve (Results 26 – 50 of 630) sorted by relevance

12345678910>>...26

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DWasmObjectFile.cpp607 Symbols.reserve(Count); in parseLinkingSectionSymtab()
1108 Signatures.reserve(Count); in parseTypeSection()
1138 Imports.reserve(Count); in parseImportSection()
1196 Functions.reserve(Count); in parseFunctionSection()
1216 Tables.reserve(Count); in parseTableSection()
1237 Memories.reserve(Count); in parseMemorySection()
1253 Tags.reserve(Count); in parseTagSection()
1278 Globals.reserve(Count); in parseGlobalSection()
1296 Exports.reserve(Count); in parseExportSection()
1298 Symbols.reserve(Count); in parseExportSection()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCFGUpdate.h72 Operations.reserve(AllUpdates.size());
84 Result.reserve(Operations.size());
/freebsd/contrib/xz/src/liblzma/lz/
H A Dlz_encoder.c218 uint32_t reserve = lz_options->dict_size / 2; in lz_encoder_prepare() local
219 if (reserve > (UINT32_C(1) << 30)) in lz_encoder_prepare()
220 reserve /= 2; in lz_encoder_prepare()
222 reserve += (lz_options->before_size + lz_options->match_len_max in lz_encoder_prepare()
226 mf->size = mf->keep_size_before + reserve + mf->keep_size_after; in lz_encoder_prepare()
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dsimple_packed_serialization.h270 static void reserve(std::string &S, uint64_t Size) { S.reserve(Size); } in reserve() function
299 static void reserve(std::vector<T> &V, uint64_t Size) { V.reserve(Size); } in reserve() function
325 static void reserve(std::unordered_map<K, V> &M, uint64_t Size) { in reserve() function
326 M.reserve(Size); in reserve()
362 TBSD::reserve(S, Size); in deserialize()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_win.cpp33 threadIds.reserve(1024); in SuspendedThreadsListWindows()
34 threadHandles.reserve(1024); in SuspendedThreadsListWindows()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DSampleProfileInference.h185 BlockIndex.reserve(Reachable.size()); in apply()
186 BasicBlocks.reserve(Reachable.size()); in apply()
246 Func.Blocks.reserve(BasicBlocks.size()); in createFlowFunction()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimplePackedSerialization.h279 static void reserve(std::string &S, uint64_t Size) { S.reserve(Size); } in reserve() function
301 static void reserve(std::vector<T> &V, uint64_t Size) { V.reserve(Size); } in reserve() function
323 static void reserve(SmallVectorImpl<T> &V, uint64_t Size) { V.reserve(Size); } in reserve() function
407 TBSD::reserve(S, Size); in deserialize()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTVector.h61 reserve(C, N); in ASTVector()
173 void reserve(const ASTContext &C, unsigned N) { in reserve() function
251 reserve(C, static_cast<unsigned>(this->size() + NumToInsert)); in insert()
301 reserve(C, static_cast<unsigned>(this->size() + NumToInsert)); in insert()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparc.td77 … def FeatureReserveG#i : SubtargetFeature<"reserve-g"#i, "ReserveRegister["#i#" + SP::G0]", "true",
80 … def FeatureReserveO#i : SubtargetFeature<"reserve-o"#i, "ReserveRegister["#i#" + SP::O0]", "true",
83 … def FeatureReserveL#i : SubtargetFeature<"reserve-l"#i, "ReserveRegister["#i#" + SP::L0]", "true",
86 … def FeatureReserveI#i : SubtargetFeature<"reserve-i"#i, "ReserveRegister["#i#" + SP::I0]", "true",
/freebsd/sys/kern/
H A Dkern_devctl.c145 int reserve; in devctl_init() local
165 reserve = max(devctl_queue_length / 50, 100); /* 2% reserve */ in devctl_init()
168 uma_zone_reserve(z, reserve); in devctl_init()
169 uma_prealloc(z, reserve); in devctl_init()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTypeLocBuilder.cpp20 reserve(Size); in pushFullCopy()
47 reserve(L.getFullDataSize()); in pushTrivial()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallDescription.cpp46 this->QualifiedName.reserve(QualifiedName.size()); in CallDescription()
158 Impl.LinearMap.reserve(List.size()); in CallDescriptionSet()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringExtras.cpp100 snakeCase.reserve(input.size()); in convertToSnakeFromCamelCase()
121 output.reserve(input.size()); in convertToCamelFromSnakeCase()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeLayout.cpp618 AllNodes.reserve(NumNodes); in initialize()
632 AllJumps.reserve(EdgeCounts.size()); in initialize()
659 AllChains.reserve(NumNodes); in initialize()
660 HotChains.reserve(NumNodes); in initialize()
670 AllEdges.reserve(AllJumps.size()); in initialize()
1002 Order.reserve(NumNodes); in concatChains()
1062 AllNodes.reserve(NumNodes); in initialize()
1075 AllJumps.reserve(EdgeCounts.size()); in initialize()
1098 AllChains.reserve(NumNodes); in initialize()
1109 AllEdges.reserve(AllJumps.size()); in initialize()
[all …]
/freebsd/sys/dev/fdt/
H A Dfdt_common.c448 pcell_t reserve[FDT_REG_CELLS * FDT_MEM_REGIONS]; in fdt_get_reserved_regions() local
473 if (res_len <= 0 || res_len > sizeof(reserve)) { in fdt_get_reserved_regions()
478 if (OF_getprop(root, "memreserve", reserve, res_len) <= 0) { in fdt_get_reserved_regions()
484 reservep = (pcell_t *)&reserve; in fdt_get_reserved_regions()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyUtil.h113 void reserve(size_t Ncp, MemRegionRef A) { in reserve() function
125 reserve(u_max(InitialCapacity, N), A); in reserveCheck()
127 reserve(u_max(Size + N, Capacity * 2), A); in reserveCheck()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp162 Updates.reserve(ReturningBlocks.size()); in unifyReturnBlockSet()
249 Updates.reserve(Updates.size() + 2 * Successors.size() + 2); in run()
279 Updates.reserve(Updates.size() + UnreachableBlocks.size()); in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPackedVector.h112 void reserve(unsigned N) { Bits.reserve(N << (BitNum-1)); } in reserve() function
H A DMapVector.h64 void reserve(size_type NumEntries) { in reserve() function
65 Map.reserve(NumEntries); in reserve()
66 Vector.reserve(NumEntries); in reserve()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68k.td61 SubtargetFeature<"reserve-a"#i, "UserReservedRegister[M68k::A"#i#"]",
65 SubtargetFeature<"reserve-d"#i, "UserReservedRegister[M68k::D"#i#"]",
/freebsd/contrib/llvm-project/llvm/lib/FuzzMutate/
H A DFuzzerCLI.cpp61 CLArgs.reserve(Args.size()); in handleExecNameEncodedBEOpts()
135 CLArgs.reserve(Args.size()); in handleExecNameEncodedOptimizerOpts()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMemoryMapper.cpp40 void InProcessMemoryMapper::reserve(size_t NumBytes, in reserve() function in llvm::orc::InProcessMemoryMapper
179 ReservationAddrs.reserve(Reservations.size()); in ~InProcessMemoryMapper()
216 void SharedMemoryMapper::reserve(size_t NumBytes, in reserve() function in llvm::orc::SharedMemoryMapper
317 FR.Segments.reserve(AI.Segments.size()); in initialize()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DImportedFunctionsInliningStatistics.cpp111 Out.reserve(5000); in dump()
202 SortedNodes.reserve(NodesMap.size()); in getSortedNodes()
/freebsd/tools/test/stress2/misc/
H A Dswap5.sh41 mdconfig -a -t malloc -o reserve -s 4g -u $mdstart || exit 1
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DExecutorSharedMemoryMapperService.cpp49 ExecutorSharedMemoryMapperService::reserve(uint64_t Size) { in reserve() function in llvm::orc::rt_bootstrap::ExecutorSharedMemoryMapperService
274 ReservationAddrs.reserve(Reservations.size()); in shutdown()
302 &ExecutorSharedMemoryMapperService::reserve)) in reserveWrapper()

12345678910>>...26