Home
last modified time | relevance | path

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

/external/selinux/libsepol/cil/src/
Dcil.c1128 int buf_pos = 0; in cil_userprefixes_to_string() local
1157 buf_pos = snprintf(str_tmp, str_len, "user %s prefix %s;\n", user->datum.fqn, in cil_userprefixes_to_string()
1159 str_len -= buf_pos; in cil_userprefixes_to_string()
1160 str_tmp += buf_pos; in cil_userprefixes_to_string()
1302 int buf_pos = 0; in __cil_level_to_string() local
1309 buf_pos = sprintf(str_tmp, "%s", lvl->sens->datum.fqn); in __cil_level_to_string()
1310 str_tmp += buf_pos; in __cil_level_to_string()
1313 buf_pos = sprintf(str_tmp, ":"); in __cil_level_to_string()
1314 str_tmp += buf_pos; in __cil_level_to_string()
1327 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()