HomeSort by relevance Sort by last modified time
    Searched defs:dbits (Results 1 - 12 of 12) sorted by null

  /system/core/libpixelflinger/codeflinger/
load_store.cpp 165 void GGLAssembler::expand(integer_t& d, const component_t& s, int dbits)
169 expand(d, d, dbits);
171 expand(d, integer_t(s.reg, s.size(), s.flags), dbits);
175 void GGLAssembler::expand(component_t& d, const component_t& s, int dbits)
178 expand(r, s, dbits);
182 void GGLAssembler::expand(integer_t& dst, const integer_t& src, int dbits)
191 dst.s = dbits;
194 if (dbits<=sbits) {
202 RSB(AL, 0, d, s, reg_imm(s, LSL, dbits));
203 // d = (s<<dbits) - s
245 int dbits = dh - dl; local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fRboStateQueryTests.cpp 243 int dbits; member in struct:deqp::gles2::Functional::__anon18326::RboComponentSizeDepthCase::DepthFormat
255 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits);
  /external/deqp/modules/gles3/functional/
es3fRboStateQueryTests.cpp 286 int dbits; member in struct:deqp::gles3::Functional::__anon18473::RboComponentSizeDepthCase::DepthFormat
302 checkRenderbufferComponentSize(m_testCtx, *this, -1, -1, -1, -1, requiredDepthFormats[ndx].dbits, requiredDepthFormats[ndx].sbits);
es3fFboStateQueryTests.cpp 672 int dbits; member in struct:deqp::gles3::Functional::__anon18439::AttachmentSizeCase::DepthAttachment
683 testDepthAttachment(depthAttachments[ndx].internalFormat, depthAttachments[ndx].attachment, depthAttachments[ndx].dbits, depthAttachments[ndx].sbits);
    [all...]
  /external/python/cpython3/Modules/_decimal/libmpdec/
transpose.c 78 mpd_size_t *done, dbits; local
100 dbits = 8 * sizeof *done;
107 if (done[hn/dbits] & mpd_bits[hn%dbits]) {
130 done[next/dbits] |= mpd_bits[next%dbits];
139 done[hn/dbits] |= mpd_bits[hn%dbits];
  /external/syslinux/lzo/src/
stats1a.h 67 unsigned dbits; member in struct:__anon38516
  /system/core/libpixelflinger/
buffer.cpp 37 static uint32_t expand(uint32_t v, int sbits, int dbits);
252 uint32_t ggl_expand(uint32_t v, int sbits, int dbits)
254 return expand(v, sbits, dbits);
290 // expand a component from sbits to dbits
291 uint32_t expand(uint32_t v, int sbits, int dbits)
293 if (dbits > sbits) {
296 v = (v<<dbits) - v;
298 if (dbits % sbits) {
299 v <<= (dbits-sbits);
300 dbits -= sbits
330 const int dbits = dh-dl; local
    [all...]
  /external/freetype/src/gzip/
infcodes.c 51 Byte dbits; /* dtree bits decoder per branch */ member in struct:inflate_codes_state
71 c->dbits = (Byte)bd;
108 r = inflate_fast(c->lbits, c->dbits, c->ltree, c->dtree, s, z);
163 c->sub.code.need = c->dbits;
  /external/syslinux/memdisk/
inflate.c 59 lbits and dbits tuning parameters.
235 This results of this trade are in the variables lbits and dbits
237 length codes can decode in one step, and dbits is the same thing for
250 about one bit more than those, so lbits is 8+1 and dbits is 5+1.
256 STATIC const int dbits = 6; /* bits in base distance lookup table */ variable
822 bd = dbits;
  /external/zopfli/src/zopfli/
squeeze.c 126 int dbits = ZopfliGetDistExtraBits(dist); local
133 return cost + dbits + lbits;
149 int dbits = ZopfliGetDistExtraBits(dist); local
150 return stats->ll_symbols[lsym] + lbits + stats->d_symbols[dsym] + dbits;
  /external/v8/benchmarks/
crypto.js 43 var dbits; variable
149 dbits = bits;
151 BI_DB = dbits;
152 BI_DM = ((1<<dbits)-1);
153 BI_DV = (1<<dbits);
157 BI_F1 = BI_FP-dbits;
158 BI_F2 = 2*dbits-BI_FP;
550 y = (y*(2-x*y%BI_DV))%BI_DV; // y == 1/x mod 2^dbits
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
SPUISelLowering.cpp 1096 uint64_t dbits = DoubleToBits(FP->getValueAPF().convertToDouble()); local
    [all...]

Completed in 679 milliseconds