/third_party/node/test/fixtures/wpt/wasm/jsapi/table/ |
H A D | grow.any.js | 12 assert_throws_js(TypeError, () => table.grow()); 33 const fn = WebAssembly.Table.prototype.grow; 45 const result = table.grow(3); 55 const result = table.grow(2); 65 assert_throws_js(RangeError, () => table.grow(4)); 85 assert_throws_js(TypeError, () => table.grow(value)); 94 const result = table.grow(3, null, {}); 109 const result = table.grow(2, fn); 119 assert_throws_js(TypeError, () => table.grow(2, {})); 125 assert_throws_js(TypeError, () => table.grow( [all...] |
/third_party/mesa3d/src/gallium/drivers/crocus/ |
H A D | crocus_batch.c | 457 struct crocus_growing_bo *grow, in recreate_growing_buffer() 462 grow->bo = crocus_bo_alloc(bufmgr, name, size); in recreate_growing_buffer() 463 grow->bo->kflags |= EXEC_OBJECT_CAPTURE; in recreate_growing_buffer() 464 grow->partial_bo = NULL; in recreate_growing_buffer() 465 grow->partial_bo_map = NULL; in recreate_growing_buffer() 466 grow->partial_bytes = 0; in recreate_growing_buffer() 468 grow->map = realloc(grow->map, grow->bo->size); in recreate_growing_buffer() 470 grow in recreate_growing_buffer() 456 recreate_growing_buffer(struct crocus_batch *batch, struct crocus_growing_bo *grow, const char *name, unsigned size) recreate_growing_buffer() argument 608 finish_growing_bos(struct crocus_growing_bo *grow) finish_growing_bos() argument 630 struct crocus_growing_bo *grow = grow_state ? &batch->state : &batch->command; crocus_grow_buffer() local [all...] |
/third_party/icu/icu4c/source/layoutex/ |
H A D | RunArrays.cpp | 45 grow(fCapacity); in ensureCapacity() 57 void RunArray::grow(le_int32 newCapacity) in grow() function in RunArray 100 void FontRuns::grow(le_int32 capacity) in grow() function in FontRuns 102 RunArray::grow(capacity); in grow() 152 void LocaleRuns::grow(le_int32 capacity) in grow() function in LocaleRuns 154 RunArray::grow(capacity); in grow() 204 void ValueRuns::grow(le_int32 capacity) in grow() function in ValueRuns 206 RunArray::grow(capacity); in grow()
|
H A D | plruns.cpp | 271 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed. 278 * The new <code>add</code> method should first call this method to grow the font and limit indices 308 virtual void grow(le_int32 capacity); 378 void ULocRuns::grow(le_int32 capacity) in grow() function in ULocRuns 380 LocaleRuns::grow(capacity); in grow()
|
/third_party/node/deps/v8/third_party/wasm-api/example/ |
H A D | table.cc | 151 check(table->grow(3)); in run() 164 check(table->grow(2, f)); in run() 169 check(! table->grow(5)); in run() 170 check(table->grow(3)); in run() 171 check(table->grow(0)); in run() 180 check(! table2->grow(1)); in run() 181 check(table2->grow(0)); in run()
|
H A D | memory.cc | 141 check(memory->grow(1), true); in run() 150 check(memory->grow(1), false); in run() 151 check(memory->grow(0), true); in run() 159 check(memory2->grow(1), false); in run() 160 check(memory2->grow(0), true); in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallVector.h | 45 /// This is an implementation of the grow() method which only works 208 void grow(size_t MinSize = 0); 213 this->grow(); 220 this->grow(); in push_back() 233 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() function in llvm::SmallVectorTemplateBase 236 // Always grow, even from zero. in grow() 301 void grow(size_t MinSize = 0) { in grow() function in llvm::SmallVectorTemplateBase 308 this->grow(); in push_back() 358 this->grow(N); in resize() 371 this->grow( in resize() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | SmallVector.h | 47 /// This is an implementation of the grow() method which only works 208 void grow(size_t MinSize = 0); 213 this->grow(); 220 this->grow(); in push_back() 233 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { in grow() function in llvm::SmallVectorTemplateBase 237 // Always grow, even from zero. in grow() 299 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); } in grow() function in llvm::SmallVectorTemplateBase 304 this->grow(); in push_back() 350 this->grow(N); in resize() 363 this->grow( in resize() [all...] |
H A D | IntEqClasses.h | 41 IntEqClasses(unsigned N = 0) : NumClasses(0) { grow(N); } in IntEqClasses() 43 /// grow - Increase capacity to hold 0 .. N-1, putting new integers in unique 46 void grow(unsigned N); 48 /// clear - Clear all classes so that grow() will assign a unique class to
|
/third_party/musl/src/string/ |
H A D | wcsstr.c | 70 size_t grow = l | 63; in twoway_wcsstr() local 71 const wchar_t *z2 = wmemchr(z, 0, grow); in twoway_wcsstr() 75 } else z += grow; in twoway_wcsstr()
|
H A D | strstr.c | 100 size_t grow = l | 63; in twoway_strstr() local 101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() 105 } else z += grow; in twoway_strstr()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | growable-fixed-array-gen.cc | 16 Label grow(this), store(this); in Push() 17 Branch(IntPtrEqual(capacity, length), &grow, &store); in Push() local 19 BIND(&grow); in Push()
|
/third_party/icu/icu4c/source/layoutex/layout/ |
H A D | RunArrays.h | 35 * When an array needs to grow, it will double in size until 36 * it becomes this large, then it will grow by this amount. 130 * calling the <code>grow</code> method. 138 * first call this method to grow the data arrays, and use the return value 146 * @see grow 185 * the overriding method to grow the limit indices array. 193 virtual void grow(le_int32 capacity); 331 * <code>RunArray::add(limit)</code> which will create or grow the arrays as needed. 338 * The new <code>add</code> method should first call this method to grow the font and limit indices 368 virtual void grow(le_int3 [all...] |
/third_party/node/deps/v8/src/strings/ |
H A D | string-stream.h | 32 virtual char* grow(unsigned* bytes) = 0; 40 char* grow(unsigned* bytes) override; 55 char* grow(unsigned* bytes) override; 75 char* grow(unsigned* bytes) override {
|
/third_party/musl/porting/uniproton/kernel/src/string/ |
H A D | strstr.c | 100 size_t grow = l | 63; in twoway_strstr() local 101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() 105 } else z += grow; in twoway_strstr()
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
H A D | strstr.c | 100 size_t grow = l | 63; in twoway_strstr() local 101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() 105 } else z += grow; in twoway_strstr()
|
/third_party/musl/porting/liteos_m/kernel/src/string/ |
H A D | strstr.c | 100 size_t grow = l | 63; in twoway_strstr() local 101 const unsigned char *z2 = memchr(z, 0, grow); in twoway_strstr() 105 } else z += grow; in twoway_strstr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | Utility.h | 33 void grow(size_t N) { in grow() function in OutputStream 84 grow(Size); in operator +=() 91 grow(1); in operator +=()
|
/third_party/lzma/CPP/Windows/Control/ |
H A D | ImageList.h | 34 bool Create(int width, int height, UINT flags, int initialNumber, int grow)
in Create() argument 37 initialNumber, grow);
in Create()
|
/third_party/mesa3d/src/freedreno/drm/ |
H A D | freedreno_ringbuffer.h | 128 void (*grow)(struct fd_ringbuffer *ring, uint32_t size); member 176 assert(ring->funcs->grow); /* unsupported on kgsl */ in fd_ringbuffer_grow() 181 ring->funcs->grow(ring, ring->size); in fd_ringbuffer_grow()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/ |
H A D | DictionaryBreakEngine.java | 112 private void grow() { in grow() method in DictionaryBreakEngine.DequeI 127 grow(); in push()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | DictionaryBreakEngine.java | 112 private void grow() { in grow() method in DictionaryBreakEngine.DequeI 127 grow(); in push()
|
/third_party/libdrm/freedreno/msm/ |
H A D | msm_priv.h | 120 grow(void *ptr, uint32_t nr, uint32_t *max, uint32_t sz) in grow() function 137 (x)->name = grow((x)->name, (x)->nr_ ## name, &(x)->max_ ## name, sizeof((x)->name[0])); \
|
/third_party/skia/src/core/ |
H A D | SkRecord.h | 70 this->grow(); in append() 127 void grow();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | VirtRegMap.h | 92 void grow(); 123 grow(); in clearAllVirt()
|