Home
last modified time | relevance | path

Searched refs:shiftwidth (Results 1 – 4 of 4) sorted by relevance

/openbmc/openbmc/poky/bitbake/contrib/vim/indent/
H A Dbitbake.vim46 " line it up with that one, otherwise add two 'shiftwidth'
51 …dent(a:lnum - 1) + (exists("g:pyindent_continue") ? eval(g:pyindent_continue) : (shiftwidth() * 2))
109 " two 'shiftwidth', otherwise same as previous line.
123 return shiftwidth()
136 " When the start is inside parenthesis, only indent one 'shiftwidth'.
143 … indent(plnum) + (exists("g:pyindent_nested_paren") ? eval(g:pyindent_nested_paren) : shiftwidth())
145 …ndent(plnum) + (exists("g:pyindent_open_paren") ? eval(g:pyindent_open_paren) : (shiftwidth() * 2))
191 return plindent + shiftwidth()
198 if indent(a:lnum) > indent(plnum) - shiftwidth()
200 return indent(plnum) - shiftwidth()
[all …]
/openbmc/obmc-console/
H A Dconfig.c230 size_t shiftwidth; in config_parse_bytesize() member
265 if (logsize > (UINT32_MAX >> suffixes[i].shiftwidth)) { in config_parse_bytesize()
269 logsize <<= suffixes[i].shiftwidth; in config_parse_bytesize()
/openbmc/qemu/
H A D.exrc6 set shiftwidth=4
/openbmc/openbmc/poky/bitbake/contrib/vim/ftplugin/
H A Dbitbake.vim12 setlocal softtabstop=4 shiftwidth=4 expandtab