Lines Matching defs:wrapped
36 bool *wrapped;
308 bool *wrapped;
318 * Make ptr->wrapped as big as idx.
325 wrapped = reallocarray(ptr->wrapped, new_cnt, sizeof(bool));
326 if (!wrapped)
333 wrapped[i] = false;
336 ptr->wrapped = wrapped;
351 * wrapped around. Otherwise, continue to detect if head might have wrapped.
364 * head has numerically wrapped around. To find we need to check if we have data at the
383 * numerically wrapped around at least once.
397 bool wrapped;
412 * Check to see if *head has wrapped around. If it hasn't only the
415 * wrapped around the entire size of the AUX ring buffer it taken.
417 wrapped = ptr->wrapped[idx];
418 if (!wrapped && arm_spe_buffer_has_wrapped(data, mm->len, *head)) {
419 wrapped = true;
420 ptr->wrapped[idx] = true;
429 if (!wrapped)
433 * *head has wrapped around - adjust *head and *old to pickup the
460 zfree(&sper->wrapped);