Lines Matching defs:array
27 #include <array>
31 using IntrinsicArguments = std::array<const Expression*, 3>;
66 ExpressionArray array;
67 array.reserve_back(numSlots);
69 array.push_back(Literal::Make(line, value[index], &returnType.componentType()));
71 return ConstructorCompound::Make(context, line, returnType, std::move(array));
179 double array[4];
186 array[index] = compare(*leftValue, *rightValue) ? 1.0 : 0.0;
190 return assemble_compound(context, left->fLine, bvecType, array);
213 double array[16];
237 array[index] = eval(*arg0Value, *arg1Value, *arg2Value);
240 if (!std::isfinite(array[index])) {
245 return assemble_compound(context, arg0->fLine, returnType, array);