Home
last modified time | relevance | path

Searched refs:_Reserved (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_code.c50 dst->_Reserved = src->Count; in rc_constants_copy()
63 if (c->Count >= c->_Reserved) { in rc_constants_add()
66 c->_Reserved = c->_Reserved * 2; in rc_constants_add()
67 if (!c->_Reserved) in rc_constants_add()
68 c->_Reserved = 16; in rc_constants_add()
70 newlist = malloc(sizeof(struct rc_constant) * c->_Reserved); in rc_constants_add()
Dradeon_code.h91 unsigned _Reserved; member
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c479 if (constants->_Reserved < index) { in add_constant()
482 constants->_Reserved = index + 100; in add_constant()
484 newlist = malloc(sizeof(struct rc_constant) * constants->_Reserved); in add_constant()
488 constants->_Reserved); in add_constant()