Home
last modified time | relevance | path

Searched refs:buf_pos (Results 1 – 2 of 2) sorted by relevance

/external/selinux/libsepol/cil/src/
Dcil.c1175 int buf_pos = 0; in cil_userprefixes_to_string() local
1204 buf_pos = snprintf(str_tmp, str_len, "user %s prefix %s;\n", user->datum.fqn, in cil_userprefixes_to_string()
1206 str_len -= buf_pos; in cil_userprefixes_to_string()
1207 str_tmp += buf_pos; in cil_userprefixes_to_string()
1349 int buf_pos = 0; in __cil_level_to_string() local
1356 buf_pos = sprintf(str_tmp, "%s", lvl->sens->datum.fqn); in __cil_level_to_string()
1357 str_tmp += buf_pos; in __cil_level_to_string()
1360 buf_pos = sprintf(str_tmp, ":"); in __cil_level_to_string()
1361 str_tmp += buf_pos; in __cil_level_to_string()
1374 buf_pos = sprintf(str_tmp, "%s,%s", str1, cat->datum.fqn); in __cil_level_to_string()
[all …]
/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring.cpp19 int buf_pos = 31; in _Buffer_itoa() local
33 buf1[buf_pos--] = string[u % base]; in _Buffer_itoa()
37 buf1[buf_pos--] = '-'; in _Buffer_itoa()
39 int len = 31 - buf_pos; in _Buffer_itoa()
41 buf[ii] = buf1[ii + buf_pos + 1]; in _Buffer_itoa()