Searched defs:grow (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/ustack/
H A Dtst.bigstack.c36 grow(int frame) function
52 grow(++frame);
58 grow(1);
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dpbuf.c386 * @bug Cannot grow the size of a pbuf (chain) (yet).
393 s16_t grow; local
408 grow = new_len - p->tot_len;
418 q->tot_len += grow;
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dpbuf.c427 * @note Despite its name, pbuf_realloc cannot grow the size of a pbuf (chain).
434 s32_t grow; local
450 grow = new_len - p->tot_len;
460 LWIP_ASSERT("grow < max_u16_t", grow < 0xffff);
461 q->tot_len += (u16_t)grow;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d8/
H A Ddevice.c246 ERR("Failed to grow the handle table.\n");
2242 UINT grow = device->declArraySize / 2; local
2245 sizeof(*convertedDecls) * (device->numConvertedDecls + grow));
2252 device->declArraySize += grow;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c205 ERR("Failed to grow the handle table.\n");
1851 int grow = This->declArraySize / 2; local
1853 sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
1860 This->declArraySize += grow;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Ddevice.c2600 UINT grow = max(device->fvf_decl_size / 2, 8); local
2602 fvf_decls = HeapReAlloc(GetProcessHeap(), 0, fvf_decls, sizeof(*fvf_decls) * (device->fvf_decl_size + grow));
2609 device->fvf_decl_size += grow;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c2411 int grow = max(This->declArraySize / 2, 8); local
2413 sizeof(convertedDecls[0]) * (This->numConvertedDecls + grow));
2420 This->declArraySize += grow;

Completed in 386 milliseconds