Lines Matching refs:scratch_size
3594 size_t scratch_size = sizeof(proc_name_t); in dtrace_dif_variable() local
3597 if (!DTRACE_INSCRATCH(mstate, scratch_size)) { in dtrace_dif_variable()
3605 mstate->dtms_scratch_ptr += scratch_size; in dtrace_dif_variable()
3606 strlcpy(xname, pname, scratch_size); in dtrace_dif_variable()
3616 size_t scratch_size = 6 + 1; in dtrace_dif_variable() local
3622 if (!DTRACE_INSCRATCH(mstate, scratch_size)) { in dtrace_dif_variable()
3627 mstate->dtms_scratch_ptr += scratch_size; in dtrace_dif_variable()
3630 strlcpy(zname, "global", scratch_size); in dtrace_dif_variable()
4326 size_t scratch_size = (dest - mstate->dtms_scratch_ptr) + size; in dtrace_dif_subr() local
4346 if (scratch_size < size || in dtrace_dif_subr()
4347 !DTRACE_INSCRATCH(mstate, scratch_size)) { in dtrace_dif_subr()
4360 mstate->dtms_scratch_ptr += scratch_size; in dtrace_dif_subr()