Lines Matching refs:node

17 …for (CeedInt node = blockIdx.x * blockDim.x + threadIdx.x; node < RSTR_NUM_ELEM * RSTR_ELEM_SIZE;   in CurlOrientedNoTranspose()  local
18 const CeedInt loc_node = node % RSTR_ELEM_SIZE; in CurlOrientedNoTranspose()
19 const CeedInt elem = node / RSTR_ELEM_SIZE; in CurlOrientedNoTranspose()
20 const CeedInt ind_dl = loc_node > 0 ? indices[node - 1] : 0; in CurlOrientedNoTranspose()
21 const CeedInt ind_d = indices[node]; in CurlOrientedNoTranspose()
22 const CeedInt ind_du = loc_node < (RSTR_ELEM_SIZE - 1) ? indices[node + 1] : 0; in CurlOrientedNoTranspose()
23 const CeedInt8 curl_orient_dl = curl_orients[3 * node + 0]; in CurlOrientedNoTranspose()
24 const CeedInt8 curl_orient_d = curl_orients[3 * node + 1]; in CurlOrientedNoTranspose()
25 const CeedInt8 curl_orient_du = curl_orients[3 * node + 2]; in CurlOrientedNoTranspose()
42 …for (CeedInt node = blockIdx.x * blockDim.x + threadIdx.x; node < RSTR_NUM_ELEM * RSTR_ELEM_SIZE; in CurlOrientedUnsignedNoTranspose() local
43 const CeedInt loc_node = node % RSTR_ELEM_SIZE; in CurlOrientedUnsignedNoTranspose()
44 const CeedInt elem = node / RSTR_ELEM_SIZE; in CurlOrientedUnsignedNoTranspose()
45 const CeedInt ind_dl = loc_node > 0 ? indices[node - 1] : 0; in CurlOrientedUnsignedNoTranspose()
46 const CeedInt ind_d = indices[node]; in CurlOrientedUnsignedNoTranspose()
47 const CeedInt ind_du = loc_node < (RSTR_ELEM_SIZE - 1) ? indices[node + 1] : 0; in CurlOrientedUnsignedNoTranspose()
48 const CeedInt8 curl_orient_dl = abs(curl_orients[3 * node + 0]); in CurlOrientedUnsignedNoTranspose()
49 const CeedInt8 curl_orient_d = abs(curl_orients[3 * node + 1]); in CurlOrientedUnsignedNoTranspose()
50 const CeedInt8 curl_orient_du = abs(curl_orients[3 * node + 2]); in CurlOrientedUnsignedNoTranspose()
68 …for (CeedInt node = blockIdx.x * blockDim.x + threadIdx.x; node < RSTR_NUM_ELEM * RSTR_ELEM_SIZE; in CurlOrientedTranspose() local
69 const CeedInt ind = indices[node]; in CurlOrientedTranspose()
70 const CeedInt loc_node = node % RSTR_ELEM_SIZE; in CurlOrientedTranspose()
71 const CeedInt elem = node / RSTR_ELEM_SIZE; in CurlOrientedTranspose()
72 const CeedInt8 curl_orient_du = loc_node > 0 ? curl_orients[3 * node - 1] : 0.0; in CurlOrientedTranspose()
73 const CeedInt8 curl_orient_d = curl_orients[3 * node + 1]; in CurlOrientedTranspose()
74 …const CeedInt8 curl_orient_dl = loc_node < (RSTR_ELEM_SIZE - 1) ? curl_orients[3 * node + 3] : 0.0; in CurlOrientedTranspose()
126 …for (CeedInt node = blockIdx.x * blockDim.x + threadIdx.x; node < RSTR_NUM_ELEM * RSTR_ELEM_SIZE; in CurlOrientedUnsignedTranspose() local
127 const CeedInt loc_node = node % RSTR_ELEM_SIZE; in CurlOrientedUnsignedTranspose()
128 const CeedInt elem = node / RSTR_ELEM_SIZE; in CurlOrientedUnsignedTranspose()
129 const CeedInt ind = indices[node]; in CurlOrientedUnsignedTranspose()
130 const CeedInt8 curl_orient_du = loc_node > 0 ? abs(curl_orients[3 * node - 1]) : 0.0; in CurlOrientedUnsignedTranspose()
131 const CeedInt8 curl_orient_d = abs(curl_orients[3 * node + 1]); in CurlOrientedUnsignedTranspose()
132 …const CeedInt8 curl_orient_dl = loc_node < (RSTR_ELEM_SIZE - 1) ? abs(curl_orients[3 * node + 3]) … in CurlOrientedUnsignedTranspose()