Home
last modified time | relevance | path

Searched refs:nspaces (Results 1 – 5 of 5) sorted by relevance

/third_party/openssl/crypto/asn1/
Dtasn_prn.c336 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/
Dj2kenc.c150 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/
Dformat.py329 ntabs, nspaces = divmod(effective, tabwidth)
330 lines[pos] = '\t' * ntabs + ' ' * nspaces + line[raw:]
Deditor.py1490 ntabs, nspaces = divmod(n, self.tabwidth)
1491 return '\t' * ntabs + ' ' * nspaces
/third_party/node/lib/internal/debugger/
Dinspect_repl.js149 const nspaces = nchars - s.length;
151 return prefix + StringPrototypeRepeat(' ', nspaces) + s;