Searched refs:nspaces (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/openssl/openssl/crypto/asn1/ |
H A 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/openssl/crypto/asn1/ |
H A 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/ |
H A D | j2kenc.c | 153 static void nspaces(FILE *fd, int n) 175 nspaces(fd, 2); 179 nspaces(fd, 4); 181 nspaces(fd, 4); 186 nspaces(fd, 6); 188 nspaces(fd, 6); 194 nspaces(fd, 8); 196 nspaces(fd, 8); 205 nspaces(fd, 10); 207 nspaces(f [all...] |
/third_party/python/Lib/idlelib/ |
H A D | format.py | 329 ntabs, nspaces = divmod(effective, tabwidth) 330 lines[pos] = '\t' * ntabs + ' ' * nspaces + line[raw:]
|
H A D | editor.py | 1550 ntabs, nspaces = divmod(n, self.tabwidth) 1551 return '\t' * ntabs + ' ' * nspaces
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect_repl.js | 151 const nspaces = nchars - s.length; 153 return prefix + StringPrototypeRepeat(' ', nspaces) + s;
|
Completed in 8 milliseconds