Searched refs:boffs (Results 1 – 2 of 2) sorted by relevance
131 size_t boffs = 0; in trace_vprintf() local142 boffs += res; in trace_vprintf()145 res = snprintk(buf + boffs, sizeof(buf) - boffs, "%s:", in trace_vprintf()149 boffs += res; in trace_vprintf()153 res = print_guest_id(buf + boffs, sizeof(buf) - boffs); in trace_vprintf()156 boffs += res; in trace_vprintf()159 res = print_core_id(buf + boffs, sizeof(buf) - boffs); in trace_vprintf()162 boffs += res; in trace_vprintf()165 res = print_thread_id(buf + boffs, sizeof(buf) - boffs); in trace_vprintf()168 boffs += res; in trace_vprintf()[all …]
19 size_t boffs = 0; in base64_enc() local41 buf[boffs] = base64_table[(igrp >> 18) & 0x3f]; in base64_enc()42 buf[boffs + 1] = base64_table[(igrp >> 12) & 0x3f]; in base64_enc()44 buf[boffs + 2] = base64_table[(igrp >> 6) & 0x3f]; in base64_enc()46 buf[boffs + 2] = '='; in base64_enc()48 buf[boffs + 3] = base64_table[igrp & 0x3f]; in base64_enc()50 buf[boffs + 3] = '='; in base64_enc()52 boffs += 4; in base64_enc()54 buf[boffs++] = '\0'; in base64_enc()56 *blen = boffs; in base64_enc()