Searched refs:nspaces (Results 1 – 5 of 5) sorted by relevance
/third_party/openssl/crypto/asn1/ |
D | tasn_prn.c | 336 static const int nspaces = sizeof(spaces) - 1; in asn1_print_fsname() local 338 while (indent > nspaces) { in asn1_print_fsname() 339 if (BIO_write(out, spaces, nspaces) != nspaces) in asn1_print_fsname() 341 indent -= nspaces; in asn1_print_fsname()
|
/third_party/ffmpeg/libavcodec/ |
D | j2kenc.c | 150 static void nspaces(FILE *fd, int n) 172 nspaces(fd, 2); 176 nspaces(fd, 4); 178 nspaces(fd, 4); 183 nspaces(fd, 6); 185 nspaces(fd, 6); 191 nspaces(fd, 8); 193 nspaces(fd, 8); 202 nspaces(fd, 10); 204 nspaces(fd, 10);
|
/third_party/python/Lib/idlelib/ |
D | format.py | 329 ntabs, nspaces = divmod(effective, tabwidth) 330 lines[pos] = '\t' * ntabs + ' ' * nspaces + line[raw:]
|
D | editor.py | 1490 ntabs, nspaces = divmod(n, self.tabwidth) 1491 return '\t' * ntabs + ' ' * nspaces
|
/third_party/node/lib/internal/debugger/ |
D | inspect_repl.js | 149 const nspaces = nchars - s.length; 151 return prefix + StringPrototypeRepeat(' ', nspaces) + s;
|