| /external/vixl/src/a64/ |
| simulator-a64.cc | 37 void SimSystemRegister::SetBits(int msb, int lsb, uint32_t bits) { 39 VIXL_ASSERT(is_uintn(width, bits) || is_intn(width, bits)); 41 bits <<= lsb; 45 value_ = (value_ & ~mask) | (bits & mask); 1781 int64_t bits = local 1793 int32_t bits = local [all...] |
| /external/webp/src/dec/ |
| vp8l.c | 153 // to ReadSymbol, in order to pre-fetch enough bits. 157 uint32_t bits = VP8LPrefetchBits(br); local 160 const int lut_ix = bits & (HUFF_LUT - 1); 168 bits >>= HUFF_LUT_BITS; 173 node = HuffmanTreeNextNode(node, bits & 1); 174 bits >>= 1; 617 const uint32_t* const image, int xsize, int bits, int x, int y) { 618 if (bits == 0) return 0; 619 return image[xsize * (y >> bits) + (x >> bits)]; 1006 const int bits = (num_colors > 16) ? 0 local [all...] |
| /external/webp/src/dsp/ |
| lossless.c | 543 double bits = weight_0 * counts[0]; local 546 bits += exp_val * (counts[i] + counts[256 - i]); 549 return (float)(-0.1 * bits); 594 int tile_x, int tile_y, int bits, 598 const int col_start = tile_x << bits; 599 const int row_start = tile_y << bits; 600 const int tile_size = 1 << bits; 643 int tile_x, int tile_y, int bits, int mode, 646 const int col_start = tile_x << bits; 647 const int row_start = tile_y << bits; [all...] |
| /external/webp/src/enc/ |
| vp8l.c | 402 // bits: small tree marker: 1, count-1: 0, large 8-bit code: 0, code: 0 458 int bits, n_bits; local 461 VP8LPrefixEncode(v->len, &code, &n_bits, &bits); 463 VP8LWriteBits(bw, n_bits, bits); 466 VP8LPrefixEncode(distance, &code, &n_bits, &bits); 468 VP8LWriteBits(bw, n_bits, bits); 480 // Special case of EncodeImageInternal() for cache-bits=0, histo_bits=31 [all...] |
| /external/webrtc/src/modules/interface/ |
| module_common_types.h | 47 bool bits; // H.263 mode B, Xor the lasy byte of previus packet with the member in struct:webrtc::RTPVideoHeaderH263 74 WebRtc_Word16 pictureId; // Picture ID index, 15 bits; 76 WebRtc_Word16 tl0PicIdx; // TL0PIC_IDX, 8 bits; 81 int keyIdx; // 5 bits; kNoKeyIdx means not used.
|
| /external/wpa_supplicant_8/src/tls/ |
| libtommath.c | 1081 /* get the lower bits of this word in a temp */ 1084 /* shift the current word and mix in the carry bits from the previous word */ 1088 /* set the carry to the carry bits of the current word found above */ 1427 /* get the higher bits of the current word */ 1434 /* set the carry to the carry bits of the current word */ 2919 int x, bits, res; local [all...] |
| /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
| vlc_encode.cpp | 1051 video->header_bits -= BitstreamGetPos(bs1); /* Header Bits */ 2734 Int residual, vlc_code_mag, bits, entry; local [all...] |
| /frameworks/base/core/jni/ |
| android_hardware_camera2_DngCreator.cpp | 884 // Set bits per sample 885 uint16_t bits = static_cast<uint16_t>(bitsPerSample); local 886 BAIL_IF_INVALID(writer->addEntry(TAG_BITSPERSAMPLE, 1, &bits, TIFF_IFD_0), env, 1727 uint16_t bits = BITS_PER_RGB_SAMPLE; local [all...] |
| /frameworks/native/opengl/libagl/ |
| egl.cpp | 248 void* bits; member in struct:android::egl_window_surface_v2_t 346 bits(NULL) 408 GRALLOC_USAGE_SW_WRITE_OFTEN, &bits) != NO_ERROR) { 419 if (buffer && bits) { 420 bits = NULL; 513 copyBlt(buffer, bits, previousBuffer, prevBits, copyBack); 564 GRALLOC_USAGE_SW_WRITE_OFTEN, &bits) != NO_ERROR) { 591 buffer.data = (GGLubyte*)bits; 606 buffer.data = (GGLubyte*)bits; // FIXME: hopefully is is LOCKED!!! [all...] |
| /frameworks/rs/api/ |
| gen_runtime.cpp | 380 /* For integers, number of bits of the number, excluding the sign bit. 381 * For floats, number of implied bits of the mantissa. 384 // For floats, number of bits of the exponent. 0 for integer types. 572 /* Double has only 52 bits of precision (53 implied). So for longs, we want 1507 int bits = min(compatibleType.exponentBits, generatedType.exponentBits) - 1; local [all...] |
| /hardware/qcom/msm8960/kernel-headers/linux/ |
| msm_audio.h | 150 uint32_t bits; member in struct:msm_audio_config
|
| /hardware/qcom/msm8960/original-kernel-headers/linux/ |
| msm_audio.h | 158 uint32_t bits; member in struct:msm_audio_config
|
| /hardware/qcom/msm8x74/kernel-headers/linux/ |
| msm_audio.h | 150 uint32_t bits; member in struct:msm_audio_config
|
| /hardware/qcom/msm8x74/original-kernel-headers/linux/ |
| msm_audio.h | 158 uint32_t bits; member in struct:msm_audio_config
|
| /hardware/qcom/msm8x84/kernel-headers/linux/ |
| msm_audio.h | 150 uint32_t bits; member in struct:msm_audio_config
|
| /hardware/qcom/msm8x84/original-kernel-headers/linux/ |
| msm_audio.h | 158 uint32_t bits; member in struct:msm_audio_config
|
| /libcore/luni/src/main/java/java/math/ |
| BigDecimal.java | 467 long bits = Double.doubleToLongBits(val); // IEEE-754 local 471 scale = 1075 - (int)((bits >> 52) & 0x7FFL); 472 // Extracting the 52 bits of the mantissa. 473 mantissa = (scale == 1075) ? (bits & 0xFFFFFFFFFFFFFL) << 1 474 : (bits & 0xFFFFFFFFFFFFFL) | 0x10000000000000L; 486 if((bits >> 63) != 0) { 2535 long bits; \/\/ IEEE-754 Standard local [all...] |
| /packages/apps/Browser/src/com/android/browser/ |
| BaseUi.java | 767 final int bits = WindowManager.LayoutParams.FLAG_FULLSCREEN; local 769 winParams.flags |= bits; 771 winParams.flags &= ~bits;
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm/ |
| kvm.h | 62 __u64 bits; member in union:kvm_ioapic_state::__anon45536
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
| kvm.h | 62 __u64 bits; member in union:kvm_ioapic_state::__anon47272
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| snmp.h | 50 AsnBits bits; member in union:__anon50515::__anon50516
|
| /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
| processor_32.h | 250 unsigned int bits[0]; member in struct:microcode
|
| /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
| processor_32.h | 250 unsigned int bits[0]; member in struct:microcode
|
| /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
| processor_32.h | 250 unsigned int bits[0]; member in struct:microcode
|
| /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
| processor_32.h | 250 unsigned int bits[0]; member in struct:microcode
|