Lines Matching defs:Array
1376 // Allocate the mask array for the node out of the BumpPtrAllocator, since
4670 // Copy from an SDUse array into an SDValue array for use with
4859 EVT *Array = Allocator.Allocate<EVT>(2);
4860 Array[0] = VT1;
4861 Array[1] = VT2;
4862 SDVTList Result = makeVTList(Array, 2);
4874 EVT *Array = Allocator.Allocate<EVT>(3);
4875 Array[0] = VT1;
4876 Array[1] = VT2;
4877 Array[2] = VT3;
4878 SDVTList Result = makeVTList(Array, 3);
4890 EVT *Array = Allocator.Allocate<EVT>(4);
4891 Array[0] = VT1;
4892 Array[1] = VT2;
4893 Array[2] = VT3;
4894 Array[3] = VT4;
4895 SDVTList Result = makeVTList(Array, 4);
4919 EVT *Array = Allocator.Allocate<EVT>(NumVTs);
4920 std::copy(VTs, VTs+NumVTs, Array);
4921 SDVTList Result = makeVTList(Array, NumVTs);
5767 // The Uses array is sorted, so all the uses for a given User
5809 // A node with no uses, add it to the result array immediately.