Lines Matching refs:fx
127 array_name(const int length, const etype fx) { initialize(length, fx); } \
129 void initialize(const int length, const etype fx) { \
131 for (int i = 0; i < length; i++) ((etype*)_data)[i] = fx; \
167 void grow(const int i, const etype fx) { \
170 for (int j = length(); j <= i; j++) ((etype*)_data)[j] = fx; \
178 stack_name(const int size, const etype fx) { initialize(size, fx); } \
179 void initialize(const int size, const etype fx) { \
181 array_name::initialize(size, fx); \
216 etype at_grow(const int i, const etype fx) { \
217 if (i >= length()) grow(i, fx); \
221 void at_put_grow(const int i, const etype x, const etype fx) { \
222 if (i >= length()) grow(i, fx); \