/third_party/node/test/fixtures/wpt/wasm/jsapi/table/ |
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(2, () => true));
|
/third_party/node/test/fixtures/wpt/wasm/jsapi/memory/ |
D | grow.any.js | 7 assert_throws_js(TypeError, () => memory.grow()); 28 const fn = WebAssembly.Memory.prototype.grow; 41 const result = memory.grow(2); 56 const result = memory.grow({ valueOf() { return 2 } }); 71 const result = memory.grow(2); 86 const result = memory.grow(2); 101 const result = memory.grow(1); 109 const result2 = memory.grow(1); 125 assert_throws_js(RangeError, () => memory.grow(2)); 146 assert_throws_js(TypeError, () => memory.grow(value)); [all …]
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_batch.c | 457 struct crocus_growing_bo *grow, in recreate_growing_buffer() argument 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->map = crocus_bo_map(NULL, grow->bo, MAP_READ | MAP_WRITE); in recreate_growing_buffer() 471 grow->map_next = grow->map; in recreate_growing_buffer() 608 finish_growing_bos(struct crocus_growing_bo *grow) in finish_growing_bos() argument [all …]
|
/third_party/icu/icu4c/source/layoutex/ |
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()
|
/third_party/cef/tests/cefclient/browser/ |
D | bytes_write_handler.cc | 14 BytesWriteHandler::BytesWriteHandler(size_t grow) in BytesWriteHandler() argument 15 : grow_(grow), datasize_(grow), offset_(0) { in BytesWriteHandler() 16 DCHECK_GT(grow, 0U); in BytesWriteHandler() 17 data_ = malloc(grow); in BytesWriteHandler()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallVector.h | 208 void grow(size_t MinSize = 0); 213 this->grow(); in push_back() 220 this->grow(); in push_back() 233 void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) { in grow() function 301 void grow(size_t MinSize = 0) { 308 this->grow(); in push_back() 358 this->grow(N); in resize() 371 this->grow(N); in resize() 379 this->grow(N); in reserve() 396 this->grow(this->size()+NumInputs); in append() [all …]
|
/third_party/node/deps/v8/third_party/wasm-api/example/ |
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()
|
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-10.0/llvm/include/llvm/ADT/ |
D | SmallVector.h | 208 void grow(size_t MinSize = 0); 213 this->grow(); in push_back() 220 this->grow(); in push_back() 233 void SmallVectorTemplateBase<T, TriviallyCopyable>::grow(size_t MinSize) { in grow() function 299 void grow(size_t MinSize = 0) { this->grow_pod(MinSize, sizeof(T)); } 304 this->grow(); in push_back() 350 this->grow(N); in resize() 363 this->grow(N); in resize() 371 this->grow(N); in reserve() 390 this->grow(this->size()+NumInputs); in append() [all …]
|
D | IntEqClasses.h | 41 IntEqClasses(unsigned N = 0) : NumClasses(0) { grow(N); } 46 void grow(unsigned N);
|
/third_party/icu/icu4c/source/layoutex/layout/ |
D | RunArrays.h | 193 virtual void grow(le_int32 capacity); 368 virtual void grow(le_int32 capacity); 505 virtual void grow(le_int32 capacity); 642 virtual void grow(le_int32 capacity);
|
/third_party/skia/resources/sksl/inliner/ |
D | ForInitializerExpressionsCanBeInlined.sksl | 11 inline half4 grow(half4 v) { 16 for (half4 color = initLoopVar(); shouldLoop(color); color = grow(color)) {}
|
/third_party/node/deps/v8/src/builtins/ |
D | growable-fixed-array-gen.cc | 16 Label grow(this), store(this); in Push() local 17 Branch(IntPtrEqual(capacity, length), &grow, &store); in Push() 19 BIND(&grow); in Push()
|
/third_party/musl/src/string/ |
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()
|
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/cef/libcef/browser/ |
D | stream_impl.cc | 219 CefBytesWriter::CefBytesWriter(size_t grow) in CefBytesWriter() argument 220 : grow_(grow), datasize_(grow), offset_(0) { in CefBytesWriter() 221 DCHECK(grow > 0); in CefBytesWriter() 222 data_ = malloc(grow); in CefBytesWriter()
|
/third_party/node/deps/v8/src/strings/ |
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 { in grow() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | Utility.h | 33 void grow(size_t N) { in grow() function 84 grow(Size); 91 grow(1);
|
/third_party/icu/icu4c/source/test/testdata/codepointtrie/ |
D | grow-data.small16.toml | 4 # file name: grow-data.small16 9 name = "grow-data.small16"
|
/third_party/musl/porting/liteos_a/kernel/src/string/ |
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/uniproton/kernel/src/string/ |
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/ |
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/lzma/CPP/Windows/Control/ |
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/ |
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/libdrm/freedreno/msm/ |
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])); \
|