Lines Matching refs:value
30 * In sparse mode, the array has elements with a 24-bit node index and a value.
34 * Function names follow ARM instruction names: orr does *elem |= value.
52 /* A value that may be stored in a nodearray element, used directly for dense
108 nodearray_encode(unsigned key, nodearray_value value)
111 return ((nodearray_sparse) key << 16) | value;
134 /* Encode the key using the highest possible value, so that the
161 nodearray_orr(nodearray *a, unsigned key, nodearray_value value,
167 if (!value)
180 *elem |= value;
212 *elem = nodearray_encode(key, value);
231 nodearray_value value = nodearray_sparse_value(x);
234 data[key] = value;
240 a->dense[key] |= value;