| /external/libopus/celt/ |
| rate.c | 53 N and K are themselves limited to 15 bits.*/ 84 unsigned char *bits; local 127 bits = (unsigned char *)opus_alloc(sizeof(unsigned char)*curr); 128 cache->bits = bits; 133 unsigned char *ptr = bits+entryI[i]; 142 many bits as we ask for. */ 153 /* N=1 bands only have a sign bit and fine bits. */ 183 pcache = bits + cindex[(LM0+1)*m->nbEBands+j]; 189 /* Offset the number of qtheta bits by log2(N)/ [all...] |
| /external/libunwind/include/ |
| libunwind-ia64.h | 78 struct { unw_word_t bits[2]; } raw; member in struct:__anon13437::__anon13438
|
| /external/libvncserver/libvncclient/ |
| tight.c | 29 * which handles a tight-encoded rectangle with BPP bits per pixel. 345 int bits; local 347 bits = InitFilterCopyBPP(client, rw, rh); 353 return bits;
|
| /external/libvorbis/vq/ |
| metrics.c | 32 total bits 34 (average bits per sample)*/ 49 float bits=0.f; variable 135 fprintf(stderr,"\ttotal bits required to code: %ld\n",(long)bits); 136 fprintf(stderr,"\taverage bits per sample: %g\n\n",bits/count); 242 bits+=vorbis_book_codelen(b,entry);
|
| /external/libvpx/libvpx/vp9/common/ |
| vp9_entropymv.h | 64 #define CLASS0_BITS 1 /* bits at integer precision for class 0 */ 86 vp9_prob bits[MV_OFFSET_BITS]; member in struct:__anon13832 114 unsigned int bits[MV_OFFSET_BITS][2]; member in struct:__anon13834
|
| /external/lldb/source/Plugins/Process/Utility/ |
| ARMUtils.h | 273 static inline uint32_t bits(const uint32_t val, const uint32_t msbit, const uint32_t lsbit) function in namespace:lldb_private 280 return bits(val, msbit, msbit); 293 uint32_t imm = bits(opcode, 7, 0); // immediate value 294 uint32_t amt = 2 * bits(opcode, 11, 8); // rotate amount 321 const uint32_t imm3 = bits(opcode, 14, 12); 322 const uint32_t abcdefgh = bits(opcode, 7, 0); 325 if (bits(imm12, 11, 10) == 0) 327 switch (bits(imm12, 9, 8)) { 349 const uint32_t unrotated_value = 0x80 | bits(imm12, 6, 0); 350 imm32 = ror(unrotated_value, 32, bits(imm12, 11, 7)) [all...] |
| /external/llvm/lib/AsmParser/ |
| LLLexer.cpp | 56 Error("constant bigger than 64 bits detected!"); 71 Error("constant bigger than 64 bits detected!"); 94 Error("constant bigger than 128 bits detected!"); 113 Error("constant bigger than 128 bits detected!"); 776 uint32_t bits = len * 4; local 783 APInt Tmp(bits, HexStr, 16); 785 if (activeBits > 0 && activeBits < bits)
|
| /external/mesa3d/src/gallium/auxiliary/gallivm/ |
| lp_bld_format_aos.c | 168 assert(desc->block.bits <= 32); 196 unsigned bits = desc->channel[i].size; local 204 unsigned long long mask = (1ULL << bits) - 1; 208 if (bits == 32) { 223 shift += bits; 282 type = LLVMIntTypeInContext(gallivm->context, desc->block.bits); 303 unsigned bits = desc->channel[i].size; local 310 unsigned mask = (1 << bits) - 1; 313 assert(bits < 32); 325 shift += bits; [all...] |
| /external/mesa3d/src/gallium/drivers/i915/ |
| i915_debug.c | 226 BITS( 285 unsigned bits = (ptr[0] >> 4) & 0xff; local 288 PRINTF(stream, "%s (%d dwords, flags: %x):\n", name, len, bits); 291 if (bits & (1<<0)) { 294 BITS(stream, ptr[j], 0, 0, "vb invalidate disable"); 297 if (bits & (1<<1)) { 299 BITS(stream, ptr[j], 29, 24, "vb dword width"); 300 BITS(stream, ptr[j], 21, 16, "vb dword pitch"); 301 BITS(stream, ptr[j], 15, 0, "vb max index"); 304 if (bits & (1<<2)) 392 unsigned bits = (ptr[0] >> 8) & 0x3f; local [all...] |
| /external/mesa3d/src/gallium/drivers/llvmpipe/ |
| lp_rast_debug.c | 347 const char *bits = "0123456789"; local 362 debug_printf("%c", bits[MIN2(bit,10)]); 400 const char *bits = " ...,-~:;=o+xaw*#XAWWWWWWWWWWWWWWWW"; local 403 debug_printf("%c", bits[MIN2(sz2,32)]);
|
| /external/mesa3d/src/gallium/drivers/nouveau/ |
| nouveau_mm.c | 42 uint32_t bits[0]; member in struct:mm_slab 54 b = ffs(slab->bits[i]) - 1; 59 slab->bits[i] &= ~(1 << b); 70 slab->bits[i / 32] |= 1 << (i % 32); 127 memset(&slab->bits[0], ~0, words * 4);
|
| /external/mesa3d/src/gallium/state_trackers/wgl/ |
| stw_pixelformat.c | 50 } bits; member in struct:stw_pf_color_info 65 } bits; member in struct:stw_pf_depth_info 136 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 0) == color->bits.red); 137 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 1) == color->bits.green); 138 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 2) == color->bits.blue); 139 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 3) == color->bits.alpha); 140 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 0) == depth->bits.depth); 141 assert(util_format_get_component_bits(depth->format, UTIL_FORMAT_COLORSPACE_ZS, 1) == depth->bits.stencil); 165 pfi->pfd.cColorBits = color->bits.red + color->bits.green + color->bits.blue + color->bits.alpha [all...] |
| /external/mesa3d/src/mesa/drivers/dri/i915/ |
| i915_debug.c | 180 #define BITS( dw, hi, lo, ... ) \ 209 GLuint bits = (ptr[0] >> 4) & 0xff; local 212 printf("%s (%d dwords, flags: %x):\n", name, len, bits); 215 if (bits & (1<<0)) { 218 BITS(ptr[j], 0, 0, "vb invalidate disable"); 221 if (bits & (1<<1)) { 223 BITS(ptr[j], 29, 24, "vb dword width"); 224 BITS(ptr[j], 21, 16, "vb dword pitch"); 225 BITS(ptr[j], 15, 0, "vb max index"); 228 if (bits & (1<<2)) 315 GLuint bits = (ptr[0] >> 8) & 0x3f; local [all...] |
| /external/mesa3d/src/mesa/main/ |
| imports.c | 269 * if no bits set. 294 * Return number of bits set in given GLuint. 299 unsigned int bits; local 300 for (bits = 0; n > 0; n = n >> 1) { 301 bits += (n & 1); 303 return bits; 307 * Return number of bits set in given 64-bit uint. 312 unsigned int bits; local 313 for (bits = 0; n > 0; n = n >> 1) { 314 bits += (n & 1) [all...] |
| /external/openssh/ |
| authfd.c | 208 u_int32_t bits; local 213 if ((r = sshbuf_get_u32(ids, &bits)) != 0 || 220 if (keybits < 0 || bits != (u_int)keybits) {
|
| sshconnect1.c | 499 int bits, rbits; local 518 bits = packet_get_int(); 523 if (bits != rbits) { 525 "actual size is %d bits vs. announced %d.", rbits, bits); 530 bits = packet_get_int(); 535 if (bits != rbits) { 537 "actual size is %d bits vs. announced %d.", rbits, bits); 549 debug("Received server public key (%d bits) and host key (%d bits)." [all...] |
| /external/pcre/dist/ |
| RunTest.bat | 160 set bits=8 variable 210 set bits=16 variable 215 set bits=32 variable 259 %pcretest% %mode% %4 %5 %6 %7 %8 %9 %srcdir%\testdata\%testinput% >%2%bits%\%testoutput% 262 echo. %pcretest% %mode% %4 %5 %6 %7 %8 %9 %srcdir%\testdata\%testinput% ^>%2%bits%\%testoutput% 269 set type=-%bits% 272 set type=-%bits% 275 set type=-%bits% 278 set type=-%bits% 281 fc /n %srcdir%\testdata\%testoutput%%type% %2%bits%\%testoutput% >NU [all...] |
| /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
| fx_zlib_inflate.c | 30 * - Add comments on state->bits assertion in inffast.c 121 state->bits = 0; 166 /* set number of window bits, free window if different */ 232 int bits, 239 if (bits < 0) { 241 state->bits = 0; 244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR; 245 value &= (1L << bits) - 1 271 unsigned sym, bits; local 614 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
| /external/ppp/pppd/plugins/ |
| winbind.c | 217 unsigned int bits; local 220 bits = (ptr[0] << 16) + (ptr[1] << 8) + ptr[2]; 222 result[out_cnt++] = b64[bits >> 18]; 223 result[out_cnt++] = b64[(bits >> 12) & 0x3f]; 224 result[out_cnt++] = b64[(bits >> 6) & 0x3f]; 225 result[out_cnt++] = b64[bits & 0x3f]; 228 bits = ptr[0] << 16; 230 bits |= ptr[1] << 8; 231 result[out_cnt++] = b64[bits >> 18]; 232 result[out_cnt++] = b64[(bits >> 12) & 0x3f] [all...] |
| /external/skia/src/core/ |
| SkBlitter.cpp | 86 const uint8_t bits[], 93 unsigned b = *bits++ & left_mask; 131 const uint8_t* bits = mask.getAddr1(cx, cy); local 135 bits_to_runs(this, cx, cy, bits, 0xFF, mask_rowBytes, 0xFF); 136 bits += mask_rowBytes; 166 bits_to_runs(this, cx, cy, bits, left_mask, 1, rite_mask); 167 bits += mask_rowBytes; 172 bits_to_runs(this, cx, cy, bits, left_mask, full_runs + 2, rite_mask); 173 bits += mask_rowBytes;
|
| /external/skia/src/views/ |
| SkEvent.cpp | 56 size_t bits = (size_t) compact >> 1; local 57 memcpy(buffer, &bits, sizeof(compact));
|
| /external/skia/tests/ |
| RegionTest.cpp | 205 int bits = 6; local 206 int shift = 32 - bits;
|
| ScalarTest.cpp | 23 // low bits. 78 uint32_t bits = SkFloat2Bits(x); // need unsigned for our shifts local 79 int exponent = bits << 1 >> 24;
|
| /external/tcpdump/ |
| util.c | 455 u_int bits; local 457 for (bits = 0; bits < (sizeof (bitmasks) / sizeof (bitmasks[0])); bits++) { 458 if (mask[byte] == bitmasks[bits]) { 459 cidr_len += bits;
|
| /external/tinyalsa/include/tinyalsa/ |
| asoundlib.h | 77 PCM_FORMAT_S24_LE, /* 24-bits in 4-bytes */ 78 PCM_FORMAT_S24_3LE, /* 24-bits in 3-bytes */ 83 /* Bitmask has 256 bits (32 bytes) in asound.h */ 85 unsigned int bits[32 / sizeof(unsigned int)]; member in struct:pcm_mask 197 /* Returns the sample size in bits for a PCM format. 199 * format represents the number of significant bits. For example, 200 * PCM_FORMAT_S24_LE uses 32 bits of storage.
|