/third_party/python/Modules/_decimal/libmpdec/ |
H A D | transpose.c | 80 mpd_size_t *done, dbits; in swap_halfrows_pow2() local 102 dbits = 8 * sizeof *done; in swap_halfrows_pow2() 109 if (done[hn/dbits] & mpd_bits[hn%dbits]) { in swap_halfrows_pow2() 132 done[next/dbits] |= mpd_bits[next%dbits]; in swap_halfrows_pow2() 141 done[hn/dbits] |= mpd_bits[hn%dbits]; in swap_halfrows_pow2()
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | infcodes.c | 51 Byte dbits; /* dtree bits decoder per branch */ member 71 c->dbits = (Byte)bd; in inflate_codes_new() 108 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z); in inflate_codes() 164 c->sub.code.need = c->dbits; in inflate_codes()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
H A D | es2fRboStateQueryTests.cpp | 239 int dbits; in test() member 251 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits); in test()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fRboStateQueryTests.cpp | 290 int dbits; in test() member 306 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits); in test()
|
H A D | es3fFboStateQueryTests.cpp | 673 int dbits; in test() member 684 testDepthAttachment(depthAttachments[ndx].internalFormat, depthAttachments[ndx].attachment, depthAttachments[ndx].dbits, depthAttachments[ndx].sbits); in test()
|
/third_party/node/deps/npm/node_modules/jsbn/ |
H A D | index.js | 10 var dbits; 75 dbits = 30; 79 dbits = 26; 83 dbits = 28; 86 BigInteger.prototype.DB = dbits; 87 BigInteger.prototype.DM = ((1<<dbits)-1); 88 BigInteger.prototype.DV = (1<<dbits); 92 BigInteger.prototype.F1 = BI_FP-dbits; 93 BigInteger.prototype.F2 = 2*dbits-BI_FP; 448 y = (y*(2-x*y%this.DV))%this.DV; // y == 1/x mod 2^dbits [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | proresenc_kostya.c | 483 const int dbits = (abits == 8) ? 4 : 7; in put_alpha_diff() local 484 const int dsize = 1 << dbits - 1; in put_alpha_diff() 495 put_bits(pb, dbits - 1, FFABS(diff) - 1); in put_alpha_diff() 736 const int dbits = (abits == 8) ? 4 : 7; in est_alpha_diff() local 737 const int dsize = 1 << dbits - 1; in est_alpha_diff() 746 return dbits + 1; in est_alpha_diff()
|
H A D | proresenc_anatoliy.c | 405 const int dbits = 7; in put_alpha_diff() local 406 const int dsize = 1 << dbits - 1; in put_alpha_diff() 417 put_bits(pb, dbits - 1, FFABS(diff) - 1); in put_alpha_diff()
|
H A D | wavpackenc.c | 647 uint32_t dbits = count_bits(v); in log2sample() local 650 *result += (dbits << 8) + ff_wp_log2_table[(v << (9 - dbits)) & 0xff]; in log2sample() 652 *result += dbits = (dbits << 8) + ff_wp_log2_table[(v >> (dbits - 9)) & 0xff]; in log2sample() 654 if (limit && dbits >= limit) in log2sample()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_color_unquantize.cpp | 476 int dbits = dbits_tab[modeval]; in hdr_rgb_unpack() local 539 int sx_shamt = 32 - dbits; in hdr_rgb_unpack()
|
/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/ |
H A D | astc_color_unquantize.cpp | 533 int dbits = dbits_tab[modeval]; in hdr_rgb_unpack3() local 592 int sx_shamt = 32 - dbits; in hdr_rgb_unpack3()
|
/third_party/lame/libmp3lame/ |
H A D | quantize.c | 1254 int dbits, over, found = 0; in VBR_encode_granule() local 1292 dbits = max_bits - min_bits; in VBR_encode_granule() 1299 dbits = max_bits - min_bits; in VBR_encode_granule() 1310 } while (dbits > 12); in VBR_encode_granule()
|