Home
last modified time | relevance | path

Searched refs:gbits (Results 1 – 15 of 15) sorted by relevance

/third_party/node/benchmark/crypto/
Dhash-stream-throughput.js49 const gbits = bits / (1024 * 1024 * 1024);
57 bench.end(gbits);
63 const gbits = bits / (1024 * 1024 * 1024);
72 bench.end(gbits);
Dhash-stream-creation.js50 const gbits = bits / (1024 * 1024 * 1024);
58 bench.end(gbits);
64 const gbits = bits / (1024 * 1024 * 1024);
77 bench.end(gbits);
Dcipher-stream.js74 const gbits = bits / (1024 * 1024 * 1024);
75 bench.end(gbits);
99 const gbits = written / (1024 * 1024 * 1024);
100 bench.end(gbits);
/third_party/node/benchmark/child_process/
Dchild-process-read.js39 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
40 bench.end(gbits);
/third_party/node/benchmark/dgram/
Doffset-length.js42 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
43 bench.end(gbits);
Dsingle-buffer.js42 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
43 bench.end(gbits);
Dmulti-buffer.js46 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
47 bench.end(gbits);
Darray-vs-concat.js60 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
61 bench.end(gbits);
/third_party/node/benchmark/net/
Dnet-c2s-cork.js51 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
52 bench.end(gbits);
Dnet-wrap-js-stream-passthrough.js50 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
51 bench.end(gbits);
Dnet-pipe.js56 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
57 bench.end(gbits);
Dnet-c2s.js53 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
54 bench.end(gbits);
Dnet-s2c.js88 const gbits = (bytes * 8) / (1024 * 1024 * 1024);
89 bench.end(gbits);
/third_party/ffmpeg/libavcodec/
Deac3dec.c252 int gbits, log_gain; in ff_eac3_decode_transform_coeffs_aht_ch() local
258 gbits = bits - log_gain; in ff_eac3_decode_transform_coeffs_aht_ch()
261 int mant = get_sbits(gbc, gbits); in ff_eac3_decode_transform_coeffs_aht_ch()
262 if (log_gain && mant == -(1 << (gbits-1))) { in ff_eac3_decode_transform_coeffs_aht_ch()
/third_party/libuv/test/
Dbenchmark-pump.c83 double gbits = ((double)bytes / (1024 * 1024 * 1024)) * 8; in gbit() local
84 return gbits / ((double)passed_ms / 1000); in gbit()