Home
last modified time | relevance | path

Searched refs:resize (Results 1 – 25 of 717) sorted by relevance

12345678910>>...29

/freebsd/tests/sys/geom/class/eli/
H A Dresize_test.sh5 atf_test_case resize cleanup
36 atf_check -s exit:0 -o match:resized gpart resize -i1 -s 20m ${md}
47 atf_check -s exit:0 -o match:resized gpart resize -i1 -s 30m ${md}
48 atf_check geli resize -s20m ${md}a
50 geli resize -s20m ${md}a
66 atf_check -s exit:0 -o match:resized gpart resize -s 30m -i 1 $md
67 atf_check geli resize -s 20m ${md}p1
87 atf_add_test_case resize
H A Donline_resize_test.sh83 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md}
88 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md}
97 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md}
109 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md}
124 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md}
126 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md}
147 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md}
149 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 30${prefix} ${md}
153 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 10${prefix} ${md}
157 atf_check -s exit:0 -o match:resized gpart resize -i 1 -s 20${prefix} ${md}
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DConvertUTFWrapper.cpp115 Out.resize(SrcBytes.size() * UNI_MAX_UTF8_BYTES_PER_CODE_POINT + 1); in convertUTF16ToUTF8String()
128 Out.resize(reinterpret_cast<char *>(Dst) - &Out[0]); in convertUTF16ToUTF8String()
173 Out.resize(SrcBytes.size() * UNI_MAX_UTF8_BYTES_PER_CODE_POINT + 1); in convertUTF32ToUTF8String()
186 Out.resize(reinterpret_cast<char *>(Dst) - &Out[0]); in convertUTF32ToUTF8String()
218 DstUTF16.resize(SrcUTF8.size()+1); in convertUTF8ToUTF16String()
231 DstUTF16.resize(Dst - &DstUTF16[0]); in convertUTF8ToUTF16String()
247 Result.resize(Source.size() + 1); in ConvertUTF8toWideInternal()
254 Result.resize(reinterpret_cast<wchar_t *>(ResultPtr) - &Result[0]); in ConvertUTF8toWideInternal()
277 Result.resize(Source.size()); in convertWideToUTF8()
289 Result.resize(UNI_MAX_UTF8_BYTES_PER_CODE_POINT * Source.size()); in convertWideToUTF8()
[all …]
H A DTextEncoding.cpp65 Result.resize(0); in HandleOverflow()
179 Result.resize(Output - Result.data()); in convertString()
185 Result.resize(Output - Result.data()); in convertString()
258 Result.resize(Output - Result.data()); in convertString()
292 Result.resize(Output - Result.data()); in convertString()
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/
H A Dwstring_convert.h136 __ws.resize(__ws.capacity()); in from_bytes()
150 __ws.resize(__to - std::addressof(__ws[0])); in from_bytes()
156 __ws.resize(__to_nxt - std::addressof(__ws[0])); in from_bytes()
160 __ws.resize(2 * __s); in from_bytes()
184 __bs.resize(__bs.capacity()); in to_bytes()
198 __bs.resize(__to - std::addressof(__bs[0])); in to_bytes()
204 __bs.resize(__to_nxt - std::addressof(__bs[0])); in to_bytes()
208 __bs.resize(2 * __s); in to_bytes()
217 __bs.resize(__bs.capacity()); in to_bytes()
224 __bs.resize(__to - std::addressof(__bs[0])); in to_bytes()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackSlotColoring.cpp219 SSRefs.resize(MFI->getObjectIndexEnd()); in ScanForSpillSlotRefs()
256 AllColors.resize(1); in InitializeSlots()
257 UsedColors.resize(1); in InitializeSlots()
259 OrigAlignments.resize(LastFI); in InitializeSlots()
260 OrigSizes.resize(LastFI); in InitializeSlots()
261 AllColors[0].resize(LastFI); in InitializeSlots()
262 UsedColors[0].resize(LastFI); in InitializeSlots()
263 Assignments.resize(LastFI); in InitializeSlots()
291 AllColors.resize(StackID + 1); in InitializeSlots()
292 UsedColors.resize(StackID + 1); in InitializeSlots()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DVASprintf.cpp28 buf.resize(buf.capacity()); in VASprintf()
40 buf.resize(length + 1); in VASprintf()
49 buf.resize(length); in VASprintf()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIndexedMap.h61 void resize(typename StorageT::size_type s) { in resize()
62 storage_.resize(s, nullVal_); in resize()
72 resize(NewSize); in grow()
60 void resize(typename StorageT::size_type s) { resize() function
H A DPackedVector.h110 void resize(unsigned N) { Bits.resize(N << (BitNum - 1)); } in resize() function
120 resize(size()+1); in push_back()
H A DSmallBitVector.h332 void resize(unsigned N, bool t = false) {
334 getPointer()->resize(N, t);
480 resize(size() + 1, Val); in push_back()
486 resize(size() - 1); in pop_back()
526 resize(std::max(size(), RHS.size()));
575 resize(std::max(size(), RHS.size()));
588 resize(std::max(size(), RHS.size()));
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackLifetime.cpp86 InterestingAllocas.resize(NumAllocas); in collectMarkers()
200 BitsIn.resize(NumAllocas, true); in calculateLocalLiveness()
252 Started.resize(NumAllocas); in calculateLiveIntervals()
253 Ended.resize(NumAllocas); in calculateLiveIntervals()
255 Start.resize(NumAllocas); in calculateLiveIntervals()
336 LiveRanges.resize(NumAllocas, getFullLiveRange()); in run()
339 LiveRanges.resize(NumAllocas, LiveRange(Instructions.size())); in run()
345 LiveRanges.resize(NumAllocas, LiveRange(Instructions.size())); in run()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMSFBuilder.cpp71 FreeBlocks.resize(Addr + 1, true); in setBlockMapAddr()
117 FreeBlocks.resize(NewBlockCount, true); in allocateBlocks()
127 FreeBlocks.resize(NewBlockCount, true); in allocateBlocks()
168 FreeBlocks.resize(Block + 1, true); in addStream()
186 NewBlocks.resize(ReqBlocks); in addStream()
205 AddedBlockList.resize(AddedBlocks); in setStreamSize()
271 ExtraBlocks.resize(NumExtraBlocks); in generateLayout()
280 DirectoryBlocks.resize(NumDirectoryBlocks); in generateLayout()
297 L.StreamMap.resize(StreamData.size()); in generateLayout()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.h49 void resize(unsigned N) { in resize() function
50 ValuePtrs.resize(N); in resize()
78 ValuePtrs.resize(N); in shrinkTo()
H A DValueList.cpp29 resize(Idx + 1); in assignValue()
58 resize(Idx + 1); in getValueFwdRef()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DASanStackFrameLayout.cpp121 SB.resize(Vars[0].Offset / Granularity, kAsanStackLeftRedzoneMagic); in GetShadowBytes()
123 SB.resize(Var.Offset / Granularity, kAsanStackMidRedzoneMagic); in GetShadowBytes()
125 SB.resize(SB.size() + Var.Size / Granularity, 0); in GetShadowBytes()
129 SB.resize(Layout.FrameSize / Granularity, kAsanStackRightRedzoneMagic); in GetShadowBytes()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp56 UsedBytes.resize(SizeOf, true); in LayoutItemBase()
116 UsedBytes.resize(LayoutSize); in UDTLayoutBase()
135 ImmediateUsedBytes.resize(SizeOf, false); in ClassLayout()
161 UsedBytes.resize(1); in BaseClassLayout()
289 ChildBytes.resize(UsedBytes.size()); in addChildToLayout()
/freebsd/contrib/bsddialog/lib/
H A Dslider.c377 unsigned long *end, bool resize, unsigned int nblocks, in bsddialog_slider() argument
521 if (resize) { in bsddialog_slider()
528 if (resize) { in bsddialog_slider()
543 if (resize) { in bsddialog_slider()
550 if (resize) { in bsddialog_slider()
565 if (resize) { in bsddialog_slider()
572 if (resize) { in bsddialog_slider()
587 if (resize) { in bsddialog_slider()
594 if (resize) { in bsddialog_slider()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangHost.cpp122 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
139 raw_path.resize(parent - r_end); in ComputeClangResourceDirectory()
151 raw_path.resize(rev_it - r_end); in ComputeClangResourceDirectory()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dvalarray.cpp19 template void valarray<size_t>::resize(size_t, size_t);
26 __1d_.resize(__k); in __init()
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp263 v.resize(needed_length + 1); in SharedPrintfCodeNoBuffer()
265 v.resize(buffer_size); in SharedPrintfCodeNoBuffer()
343 buffer_.resize(prev_len + str_len + 1); in Append()
351 buffer_.resize(buffer_.capacity()); in AppendF()
359 buffer_.resize(prev_len + sz + 1); in AppendF()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIADataStream.cpp35 Record.resize(RecordSize); in getItemAtIndex()
49 Record.resize(RecordSize); in getNext()
/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Dstring.h61 resize(count); in string()
69 resize(size_); in string()
75 resize(0);
144 LIBC_INLINE void resize(size_t size) { in resize() function
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp167 Result.resize(RoundUpSize); in Finalize()
177 Result.resize(4); in Finalize()
183 Result.resize(RoundUpSize); in Finalize()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp229 ExtendMask.resize(NumElements, -1); in concatenate()
233 InsertMask.resize(NumElements); in concatenate()
366 Tmp.resize(VS.NumFragments, nullptr); in INITIALIZE_PASS_DEPENDENCY()
372 CachePtr->resize(VS.NumFragments, nullptr); in INITIALIZE_PASS_DEPENDENCY()
644 Res.resize(VS->NumFragments); in splitUnary()
674 Res.resize(VS->NumFragments); in splitBinary()
821 Res.resize(VS->NumFragments); in visitSelectInst()
889 Res.resize(VS->NumFragments); in visitGetElementPtrInst()
892 SplitOps.resize(1 + NumIndices); in visitGetElementPtrInst()
923 Res.resize(DestVS->NumFragments); in visitCastInst()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCCCState.h53 IsFixed.resize(Ins.size(), true); in AnalyzeFormalArguments()
60 IsFixed.resize(Outs.size(), false); in AnalyzeCallOperands()

12345678910>>...29