Lines Matching refs:item_id_y
72 const CeedInt item_id_y = get_local_id(1); in ReadElementStrided2d() local
75 if (item_id_x < P_1D && item_id_y < P_1D && elem < num_elem) { in ReadElementStrided2d()
76 const CeedInt node = item_id_x + item_id_y * P_1D; in ReadElementStrided2d()
91 const CeedInt item_id_y = get_local_id(1); in WriteElementStrided2d() local
94 if (item_id_x < P_1D && item_id_y < P_1D && elem < num_elem) { in WriteElementStrided2d()
95 const CeedInt node = item_id_x + item_id_y * P_1D; in WriteElementStrided2d()
114 const CeedInt item_id_y = get_local_id(1); in ReadElementStrided3d() local
117 if (item_id_x < P_1D && item_id_y < P_1D && elem < num_elem) { in ReadElementStrided3d()
119 const CeedInt node = item_id_x + item_id_y * P_1D + z * P_1D * P_1D; in ReadElementStrided3d()
135 const CeedInt item_id_y = get_local_id(1); in WriteElementStrided3d() local
138 if (item_id_x < P_1D && item_id_y < P_1D && elem < num_elem) { in WriteElementStrided3d()
140 const CeedInt node = item_id_x + item_id_y * P_1D + z * P_1D * P_1D; in WriteElementStrided3d()