| /prebuilts/ndk/9/platforms/android-18/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
|
| /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon74267
|
| /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon75576
|
| /prebuilts/ndk/9/platforms/android-19/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
|
| /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/ |
| hdlcdrv.h | 69 unsigned char bits; member in union:hdlcdrv_ioctl::__anon76884
|
| /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/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/bluetooth/bluedroid/embdrv/sbc/decoder/include/ |
| oi_codec_sbc.h | 168 } bits; member in struct:__anon5728 423 @return the approximate bit rate in bits per second,
|
| /external/chromium_org/net/quic/crypto/ |
| strike_register.cc | 51 // <24 bits> left child 52 // <8 bits> crit-byte 53 // <24 bits> right child 54 // <8 bits> other-bits 64 // We only have 23 bits of index available. 186 // for loop, testing bits 7..0. Instead we fold the bits so that we end up 187 // with a byte where all the bits below the most significant one, are set. 191 // Now this bit trick results in all the bits set, except the origina 272 vector<pair<unsigned, bool> > bits; local [all...] |
| /external/chromium_org/net/websockets/ |
| websocket_basic_handshake_stream.cc | 277 int bits = 0; local 278 if (!base::StringToInt(it->value(), &bits) || bits < 8 || bits > 15 || 285 params->client_window_bits = bits;
|
| /external/chromium_org/printing/ |
| emf_win.cc | 118 void* bits = NULL; local 122 bitmap_.Set(::CreateDIBSection(context_, &header_, DIB_RGB_COLORS, &bits, 157 bool DIBFormatNativelySupported(HDC dc, uint32 escape, const BYTE* bits, 162 ExtEscape(dc, escape, size, reinterpret_cast<LPCSTR>(bits), 389 const BYTE* bits = record_start + sdib_record->offBitsSrc; local 395 if (!DIBFormatNativelySupported(hdc, CHECKJPEGFORMAT, bits, 398 bitmap.reset(gfx::JPEGCodec::Decode(bits, bmih->biSizeImage)); 401 if (!DIBFormatNativelySupported(hdc, CHECKPNGFORMAT, bits, 405 gfx::PNGCodec::Decode(bits, bmih->biSizeImage, bitmap.get());
|
| /external/chromium_org/third_party/icu/source/tools/toolutil/ |
| pkg_genc.c | 448 char bitFieldStr[64]; /* This is more bits than needed for a 32-bit number */ 735 * The number of bits is implicit with the Machine value. 756 uint16_t cpu, bits; local 1011 getArchitecture(&cpu, &bits, &makeBigEndian, optMatchArch); 1012 printf("genccode: --match-arch cpu=%hu bits=%hu big-endian=%hu\n", cpu, bits, makeBigEndian); 1051 if(bits==32) { 1070 } else /* bits==64 */ { [all...] |
| /external/chromium_org/third_party/libva/va/ |
| va_enc_mpeg2.h | 97 * A 14bits unsigned inter, the lower 12bits 99 * 2bits is \c horizontal_size_extension 105 * A 14bits unsigned inter, the lower 12bits 106 * is vertical_size_value, and the upper 2bits is 150 } bits; member in union:_VAEncSequenceParameterBufferMPEG2::__anon16585 165 } bits; member in union:_VAEncSequenceParameterBufferMPEG2::__anon16587 241 } bits; member in union:_VAEncPictureParameterBufferMPEG2::__anon16589 261 } bits; member in union:_VAEncPictureParameterBufferMPEG2::__anon16591 [all...] |
| /external/chromium_org/third_party/libvpx/source/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:__anon16616 259 elf->bits = 32; 276 elf->bits = 64; 341 if (elf->bits == 32) { 351 } else { /* if (elf->bits == 64) * [all...] |
| /external/chromium_org/third_party/libxml/src/ |
| parserInternals.c | 902 int bits; local 903 if (val < 0x800) { *out++= (val >> 6) | 0xC0; bits= 0; } 904 else if (val < 0x10000) { *out++= (val >> 12) | 0xE0; bits= 6;} 905 else if (val < 0x110000) { *out++= (val >> 18) | 0xF0; bits= 12; } 912 for ( ; bits >= 0; bits-= 6) 913 *out++= ((val >> bits) & 0x3F) | 0x80 ; [all...] |
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
| cso_hash.c | 59 int bits = hint; local 61 while (bits > 1) { 62 bits >>= 1;
|
| /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
| lp_bld_depth.c | 319 type.width = format_desc->block.bits; 324 assert(format_desc->channel[swizzle].size == format_desc->block.bits); 327 assert(format_desc->block.bits <= 32); 329 if (format_desc->channel[swizzle].size < format_desc->block.bits) { 350 * Note that we leave the Z bits in the position that we find them 358 const unsigned total_bits = format_desc->block.bits; 398 * to put the stencil bits in the least significant position. 451 LLVMValueRef bits = LLVMBuildBitCast(builder, maskvalue, local 453 bits = lp_build_intrinsic_unary(builder, movmskintr, 454 LLVMInt32TypeInContext(context), bits); 461 LLVMValueRef bits = LLVMBuildBitCast(builder, maskvalue, local [all...] |
| /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
| brw_eu.h | 93 } bits; member in union:brw_reg::__anon17969 217 * set swizzle and writemask to W, as the lower bits of subnr will 222 reg.dw1.bits.swizzle = swizzle; 223 reg.dw1.bits.writemask = writemask; 224 reg.dw1.bits.indirect_offset = 0; 225 reg.dw1.bits.pad1 = 0; 675 reg.dw1.bits.swizzle = BRW_SWIZZLE4(BRW_GET_SWZ(reg.dw1.bits.swizzle, x), 676 BRW_GET_SWZ(reg.dw1.bits.swizzle, y), 677 BRW_GET_SWZ(reg.dw1.bits.swizzle, z) [all...] |
| /external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
| bn_lib.c | 144 static const unsigned char bits[256]={ local 170 return(bits[(int)(l>>56)]+56); 172 else return(bits[(int)(l>>48)]+48); 178 return(bits[(int)(l>>40)]+40); 180 else return(bits[(int)(l>>32)]+32); 192 return(bits[(int)(l>>56)]+56); 194 else return(bits[(int)(l>>48)]+48); 200 return(bits[(int)(l>>40)]+40); 202 else return(bits[(int)(l>>32)]+32); 213 return(bits[(int)(l>>24L)]+24) [all...] |
| bntest.c | 742 int bits = (200*(i+1))/num2; local 744 if (bits == 0) 746 BN_bntest_rand(&n,bits,0,1); [all...] |
| /external/chromium_org/third_party/openssl/openssl/ssl/ |
| s3_cbc.c | 73 * bits. They use the fact that arithmetic shift shifts-in the sign bit. 219 * one or more of the lower eight bits of |good| will be cleared. We 220 * AND the bottom 8 bits together and duplicate the result to all the 221 * bits. */ 456 unsigned int bits; /* at most 18 bits */ local 592 * length, in bits. */ 594 /* bits is the hash-length in bits. It includes the additional hash 606 bits = 8*mac_end_offset [all...] |
| /external/chromium_org/third_party/skia/bench/ |
| MathBench.cpp | 196 uint32_t bits = SkFloat2Bits(x); // need unsigned for our shifts local 197 int exponent = bits << 1 >> 24;
|