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

12 3 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msputils.h 43 WINBOOL Grow() {
54 if(!Grow()) return FALSE;
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
data.go 40 // Grow increases the length of s.P to lsiz.
41 func (s *LSym) Grow(lsiz int64) {
44 log.Fatalf("LSym.Grow size %d too long", lsiz)
85 s.Grow(l)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
data.go 40 // Grow increases the length of s.P to lsiz.
41 func (s *LSym) Grow(lsiz int64) {
44 log.Fatalf("LSym.Grow size %d too long", lsiz)
85 s.Grow(l)
  /external/libchrome/base/strings/
stringprintf_unittest.cc 104 // Test very large sprintfs that will cause the buffer to grow.
105 TEST(StringPrintfTest, Grow) {
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallPtrSet.h 37 /// array, we grow into the 'large set' case. SmallSet should be used when the
135 /// Grow - Allocate a larger backing store for the buckets and move it over.
136 void Grow(unsigned NewSize);
  /external/vixl/src/
code-buffer-vixl.cc 164 void CodeBuffer::Grow(size_t new_capacity) {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
pcln.go 108 ftab.Grow(int64(start) + int64(n) + 1)
230 ftab.Grow(8 + int64(ctxt.Arch.PtrSize) + int64(nfunc)*2*int64(ctxt.Arch.PtrSize) + int64(ctxt.Arch.PtrSize) + 4)
298 ftab.Grow(int64(end))
410 ftab.Grow(int64(start) + (int64(len(ctxt.Filesyms))+1)*4)
508 t.Grow(4*int64(nbuckets) + int64(n))
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
pcln.go 108 ftab.Grow(int64(start) + int64(n) + 1)
230 ftab.Grow(8 + int64(ctxt.Arch.PtrSize) + int64(nfunc)*2*int64(ctxt.Arch.PtrSize) + int64(ctxt.Arch.PtrSize) + 4)
298 ftab.Grow(int64(end))
410 ftab.Grow(int64(start) + (int64(len(ctxt.Filesyms))+1)*4)
508 t.Grow(4*int64(nbuckets) + int64(n))
  /external/v8/src/wasm/
wasm-objects.h 75 static void Grow(Isolate* isolate, Handle<WasmTableObject> table,
103 static bool Grow(Isolate* isolate, Handle<WasmMemoryObject> memory,
  /packages/apps/Gallery/src/com/android/camera/
HighlightView.java 108 if (mMode == ModifyMode.Grow) {
298 // Don't let the cropping rectangle grow too fast.
299 // Grow at most half of the difference between the image rectangle and
392 enum ModifyMode { None, Move, Grow }
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 40 /// array, we grow into the 'large set' case. SmallSet should be used when the
144 // Otherwise, hit the big set case, which will call grow.
177 /// Grow - Allocate a larger backing store for the buckets and move it over.
178 void Grow(unsigned NewSize);
  /prebuilts/go/darwin-x86/src/bytes/
buffer.go 104 // tryGrowByReslice is a inlineable version of grow for the fast-case where the
115 // grow grows the buffer to guarantee space for n more bytes.
117 // If the buffer can't grow it will panic with ErrTooLarge.
118 func (b *Buffer) grow(n int) int { func
124 // Try to grow by means of a reslice.
154 // Grow grows the buffer's capacity, if necessary, to guarantee space for
155 // another n bytes. After Grow(n), at least n bytes can be written to the
157 // If n is negative, Grow will panic.
158 // If the buffer can't grow it will panic with ErrTooLarge.
159 func (b *Buffer) Grow(n int)
    [all...]
buffer_test.go 477 buf.Grow(growLen)
501 t.Errorf("after too-large Grow, recover() = %v; want %v", err, ErrTooLarge)
507 buf.Grow(maxInt)
578 // (*Buffer).grow allows for 2x capacity slop before sliding,
  /prebuilts/go/linux-x86/src/bytes/
buffer.go 104 // tryGrowByReslice is a inlineable version of grow for the fast-case where the
115 // grow grows the buffer to guarantee space for n more bytes.
117 // If the buffer can't grow it will panic with ErrTooLarge.
118 func (b *Buffer) grow(n int) int { func
124 // Try to grow by means of a reslice.
154 // Grow grows the buffer's capacity, if necessary, to guarantee space for
155 // another n bytes. After Grow(n), at least n bytes can be written to the
157 // If n is negative, Grow will panic.
158 // If the buffer can't grow it will panic with ErrTooLarge.
159 func (b *Buffer) Grow(n int)
    [all...]
buffer_test.go 477 buf.Grow(growLen)
501 t.Errorf("after too-large Grow, recover() = %v; want %v", err, ErrTooLarge)
507 buf.Grow(maxInt)
578 // (*Buffer).grow allows for 2x capacity slop before sliding,
  /external/webrtc/webrtc/base/
natsocketfactory.cc 170 Grow(size + kNATEncodedIPv6AddressSize);
263 void Grow(size_t new_size) {
  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil.go 34 buf.Grow(int(capacity))
  /prebuilts/go/darwin-x86/src/runtime/
append_test.go 224 // We test the "grow" and "no grow" paths separately,
225 // but not the "normal" (occasionally grow) path,
284 b.Run("Grow", func(b *testing.B) {
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil.go 34 buf.Grow(int(capacity))
  /prebuilts/go/linux-x86/src/runtime/
append_test.go 224 // We test the "grow" and "no grow" paths separately,
225 // but not the "normal" (occasionally grow) path,
284 b.Run("Grow", func(b *testing.B) {
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallPtrSet.h 46 /// array, we grow into the 'large set' case. SmallSet should be used when the
156 // Otherwise, hit the big set case, which will call grow.
189 /// Grow - Allocate a larger backing store for the buckets and move it over.
190 void Grow(unsigned NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallPtrSet.h 47 /// array, we grow into the 'large set' case. SmallSet should be used when the
157 // Otherwise, hit the big set case, which will call grow.
206 /// Grow - Allocate a larger backing store for the buckets and move it over.
207 void Grow(unsigned NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
SmallPtrSet.h 49 /// array, we grow into the 'large set' case. SmallSet should be used when the
159 // Otherwise, hit the big set case, which will call grow.
208 /// Grow - Allocate a larger backing store for the buckets and move it over.
209 void Grow(unsigned NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
SmallPtrSet.h 49 /// array, we grow into the 'large set' case. SmallSet should be used when the
159 // Otherwise, hit the big set case, which will call grow.
208 /// Grow - Allocate a larger backing store for the buckets and move it over.
209 void Grow(unsigned NewSize);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
SmallPtrSet.h 40 /// array, we grow into the 'large set' case. SmallSet should be used when the
153 // Otherwise, hit the big set case, which will call grow.
202 /// Grow - Allocate a larger backing store for the buckets and move it over.
203 void Grow(unsigned NewSize);

Completed in 2081 milliseconds

12 3 4 5 6