Lines Matching defs:degree
254 // is the dyanmically detected SIMD degree, at most MAX_SIMD_DEGREE. Or fewer,
259 // As a special case when the SIMD degree is 1, this function will still return
274 // Note that the single chunk case does *not* bump the SIMD degree up to 2
285 // as long as the SIMD degree is a power of 2. If we ever get a SIMD degree
294 // account for the special case of returning 2 outputs when the SIMD degree
297 size_t degree = blake3_simd_degree();
298 if (left_input_len > BLAKE3_CHUNK_LEN && degree == 1) {
299 // The special case: We always use a degree of at least two, to make
301 // level, where we allow degree=1. (Note that the 1-chunk-input case is
303 degree = 2;
305 uint8_t *right_cvs = &cv_array[degree * BLAKE3_OUT_LEN];