| /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon60464
|
| /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon61231
|
| /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon62010
|
| /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon62788
|
| /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon63564
|
| /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon64341
|
| /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/ |
| io_apic_32.h | 35 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_00 47 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_01 57 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_02 66 } __attribute__ ((packed)) bits; member in union:IO_APIC_reg_03
|
| /system/bt/bta/dm/ |
| bta_dm_sco.c | 22 * 16k/32k/48k/44.1k/22050/11025 sampling rate into 8K/16bits samples 64 UINT32 bits; /* number of bits per pcm sample */ member in struct:__anon68662 584 ** bits: number of bits per pcm sample (16) 590 void BTA_DmPcmInitSamples (UINT32 src_sps, UINT32 bits, UINT32 n_channels) 596 p_cb->bits = bits; 611 APPL_TRACE_DEBUG("bta_dm_pcm_init_samples: n_channels = %d bits = %d", n_channels, bits); [all...] |
| /system/extras/tests/framebuffer/ |
| fb_test.c | 55 void *bits; local 88 bits = mmap(0, fi.smem_len, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); 89 if(bits == MAP_FAILED) { 99 fb->data = bits; 107 fb->data = (void *)((unsigned long)bits +
|
| /dalvik/dx/src/com/android/dx/dex/code/ |
| InsnFormat.java | 243 * Helper method to return a literal bits argument string. 265 * Helper method to return a literal bits comment string. 268 * @param width the width of the constant, in bits (used for displaying 269 * the uninterpreted bits; one of: {@code 4 8 16 32 64} 278 long bits; local 281 bits = ((CstLiteral64) value).getLongBits(); 283 bits = value.getIntBits(); 287 case 4: sb.append(Hex.uNibble((int) bits)); break; 288 case 8: sb.append(Hex.u1((int) bits)); break; 289 case 16: sb.append(Hex.u2((int) bits)); break [all...] |
| /development/samples/ApiDemos/src/com/example/android/apis/view/ |
| SystemUIModes.java | 118 final int bits = WindowManager.LayoutParams.FLAG_FULLSCREEN; local 120 winParams.flags |= bits; 122 winParams.flags &= ~bits; 130 final int bits = WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN; local 132 winParams.flags |= bits; 134 winParams.flags &= ~bits; 142 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS; local 144 winParams.flags |= bits; 146 winParams.flags &= ~bits; 154 final int bits = WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION local [all...] |
| /external/aac/libAACdec/src/ |
| block.cpp | 141 if (i - 16 > CACHE_BITS) { /* cannot read more than "CACHE_BITS" bits at once in the function FDKreadBits() */ 381 * \param lsb last 2 bits of the scale factor of the sfb. 545 int bits = hcb->numBits; local 546 int mask = (1<<bits)-1; 564 idx >>= bits; local
|
| /external/boringssl/src/crypto/bn/ |
| exponentiation.c | 129 int i, bits, ret = 0; local 153 bits = BN_num_bits(p); 165 for (i = 1; i < bits; i++) { 393 * For window size 'w' (w >= 2) and a random 'b' bits exponent, the number of 421 int i, j, bits, ret = 0, wstart, window; local 434 bits = BN_num_bits(p); 436 if (bits == 0) { 473 window = BN_window_bits_for_exponent_size(bits); 490 wstart = bits - 1; /* The top bit of the window */ 574 * 4096, 8192 bits], compared to the running time of th 606 int i, j, bits, ret = 0, wstart, window; local 855 int i, bits, ret = 0, window, wvalue; local 1207 int b, bits, ret = 0; local 1365 int i, j, bits, b, bits1, bits2, ret = 0, wpos1, wpos2, window1, window2, local [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
| WNafUtil.java | 28 int bits = _3k.bitLength(); local 29 int[] naf = new int[bits >> 1]; 33 int highBit = bits - 1, length = 0, zeroes = 0; 318 * @param bits the bit-length of the scalar to multiply by 321 public static int getWindowSize(int bits) 323 return getWindowSize(bits, DEFAULT_WINDOW_SIZE_CUTOFFS); 329 * @param bits the bit-length of the scalar to multiply by 333 public static int getWindowSize(int bits, int[] windowSizeCutoffs) 338 if (bits < windowSizeCutoffs[w])
|
| /external/deqp/modules/egl/ |
| teglChooseConfigTests.cpp | 400 EGLint bits = 0; local 401 bits |= rnd.getBool() ? EGL_WINDOW_BIT : 0; 402 bits |= rnd.getBool() ? EGL_PIXMAP_BIT : 0; 403 bits |= rnd.getBool() ? EGL_PBUFFER_BIT : 0; 404 return bits;
|
| /external/deqp/modules/gles3/functional/ |
| es3fFboTestUtil.cpp | 1056 const tcu::IVec4 bits = tcu::getTextureFormatMantissaBitDepth(format); local 1104 const tcu::IVec4 bits = tcu::getTextureFormatMantissaBitDepth(src); local [all...] |
| /external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
| InsnFormat.java | 244 * Helper method to return a literal bits argument string. 266 * Helper method to return a literal bits comment string. 269 * @param width the width of the constant, in bits (used for displaying 270 * the uninterpreted bits; one of: {@code 4 8 16 32 64} 279 long bits; local 282 bits = ((CstLiteral64) value).getLongBits(); 284 bits = value.getIntBits(); 288 case 4: sb.append(Hex.uNibble((int) bits)); break; 289 case 8: sb.append(Hex.u1((int) bits)); break; 290 case 16: sb.append(Hex.u2((int) bits)); break [all...] |
| /external/elfutils/src/libdwfl/ |
| linux-kernel-modules.c | 526 unsigned char *bits = p; local 543 vaddr += bits - buf.data; 544 return INTUSE(dwfl_module_report_build_id) (mod, bits,
|
| /external/flac/libFLAC/ |
| bitreader.c | 49 /* WATCHOUT: there are a few places where the code will not work unless uint32_t is >= 32 bits wide */ 64 * read. With FLAC this is on the order of maybe a few hundred bits. 78 /* any partially-consumed word at the head will stay right-justified as bits are consumed from the left */ 85 unsigned consumed_bits; /* ... + (#bits of head word) already consumed from the front of buffer */ 87 unsigned crc16_align; /* the number of bits in the current consumed word that should not be CRC'd */ 145 /* before reading, if the existing reader looks like this (say uint32_t is 32 bits wide) 276 fprintf(out, "bitreader: capacity=%u words=%u bytes=%u consumed: words=%u, bits=%u\n", br->capacity, br->words, br->bytes, br->consumed_words, br->consumed_bits); 340 FLAC__bool FLAC__bitreader_read_raw_uint32(FLAC__BitReader *br, FLAC__uint32 *val, unsigned bits) 345 FLAC__ASSERT(bits <= 32); 346 FLAC__ASSERT((br->capacity*FLAC__BITS_PER_WORD) * 2 >= bits); 378 *val <<= bits; local [all...] |
| /external/guava/guava/src/com/google/common/hash/ |
| Hashing.java | 61 int bits = checkPositiveAndMakeMultipleOf32(minimumBits); local 63 if (bits == 32) { 66 if (bits <= 128) { 71 int hashFunctionsNeeded = (bits + 127) / 128; 178 * Returns a hash function implementing the MD5 hash algorithm (128 hash bits) by delegating to 190 * Returns a hash function implementing the SHA-1 algorithm (160 hash bits) by delegating to the 203 * Returns a hash function implementing the SHA-256 algorithm (256 hash bits) by delegating to 216 * Returns a hash function implementing the SHA-512 algorithm (512 hash bits) by delegating to the 229 * Returns a hash function implementing the CRC-32 checksum algorithm (32 hash bits) by delegating 247 * Returns a hash function implementing the Adler-32 checksum algorithm (32 hash bits) b 282 private final int bits; field in class:Hashing.ChecksumType 365 int bits = iterator.next().bits(); local 414 private final int bits; field in class:Hashing.ConcatenatedHashFunction 437 public int bits() { method in class:Hashing.ConcatenatedHashFunction [all...] |
| /external/icu/icu4c/source/tools/toolutil/ |
| pkg_genc.c | 467 char bitFieldStr[64]; /* This is more bits than needed for a 32-bit number */ 754 * The number of bits is implicit with the Machine value. 775 uint16_t cpu, bits; local 1030 getArchitecture(&cpu, &bits, &makeBigEndian, optMatchArch); 1031 printf("genccode: --match-arch cpu=%hu bits=%hu big-endian=%d\n", cpu, bits, makeBigEndian); 1070 if(bits==32) { 1089 } else /* bits==64 */ { [all...] |
| /external/iproute2/tc/ |
| f_u32.c | 848 int bits = mask2bits(key->mask); local 849 if (bits >= 0) { 854 bits); 904 int bits = mask2bits(key->mask); local 905 if (bits >= 0) { 910 bits);
|
| /external/jpeg/ |
| jchuff.c | 31 int put_bits; /* # of bits now in it */ 212 i = (int) htbl->bits[l]; 233 * it must still fit in si bits, since no code is allowed to be all ones. 292 /* Outputting bits to the file */ 294 /* Only the right 24 bits of put_buffer are used; the valid bits are 295 * left-justified in this part. At most 16 bits can be passed to emit_bits 296 * in one call, and we never retain more than 7 bits in put_buffer 297 * between calls, so 24 bits are sufficient. 303 /* Emit some bits; return TRUE if successful, FALSE if must suspend * 708 UINT8 bits[MAX_CLEN+1]; \/* bits[k] = # of symbols with code length k *\/ local [all...] |
| /external/libogg/src/ |
| bitwise.c | 18 /* We're 'LSb' endian; if we write a word but read individual bits, 59 void oggpack_writetrunc(oggpack_buffer *b,long bits){ 60 long bytes=bits>>3; 62 bits-=bytes*8; 64 b->endbit=bits; 66 *b->ptr&=mask[bits]; 70 void oggpackB_writetrunc(oggpack_buffer *b,long bits){ 71 long bytes=bits>>3; 73 bits-=bytes*8; 75 b->endbit=bits; 164 int bits=8-b->endbit; local 170 int bits=8-b->endbit; local [all...] |
| /external/libvpx/libvpx/build/make/ |
| obj_int_extract.c | 76 int bits = 0; local 89 bits = 32; 97 bits = 64; 180 if (bits == 32) { 190 } else { /* if (bits == 64) */ 236 int bits; /* 32 or 64 */ member in struct:__anon13693 259 elf->bits = 32; 276 elf->bits = 64; 341 if (elf->bits == 32) { 351 } else { /* if (elf->bits == 64) * [all...] |