/external/llvm/include/llvm/MC/ |
MCSubtargetInfo.h | 45 uint64_t FeatureBits; // Feature bits for current CPU + FS 68 /// getFeatureBits - Return the feature bits. 74 /// setFeatureBits - Set the feature bits. 79 /// feature string). Recompute feature bits and scheduling model. 86 /// bits. This version does not change the implied bits. 90 /// bits. This version will also change all implied bits.
|
/external/llvm/test/CodeGen/X86/ |
x32-function_pointer-3.ll | 19 ; bits of %rdi register and the `i' field is in the upper 32 bits of %rdi
|
/external/llvm/test/MC/R600/ |
sop1-err.s | 28 // Immediate greater than 32-bits 32 // Immediate greater than 32-bits
|
/external/llvm/utils/TableGen/ |
X86ModRMFilters.h | 64 /// ModFilter - Filters based on the mod bits [bits 7-6] of the ModR/M byte. 73 /// \param r True if the mod bits of the ModR/M byte must be 11; false 75 /// bits indicate whether the R/M bits [bits 2-0] signify a 88 /// mod field [bits 7-6] and the value of the nnn field [bits 5-3].
|
/external/skia/include/device/xps/ |
SkConstexprMath.h | 39 if the bits of type t are considered as unsigned base two. 45 if the bits of type t are considered as unsigned base two.
|
/external/skia/src/codec/ |
SkMasks.cpp | 20 // 2 bits 22 // 3 bits 24 // 4 bits 26 // 5 bits 29 // 6 bits 34 // 7 bits 90 // Trim the masks to the allowed number of bits 112 // Truncate masks greater than 8 bits
|
/external/skia/src/core/ |
SkBitmapProcState_utils.h | 5 // so the caller doesn't have to manually mask off the top 16 bits 28 // if we truncate frDx and lose its low bits.
|
/external/toybox/lib/ |
password.c | 31 int bitpos = i*6, bits = bitpos/8; local 33 bits = ((libbuf[i]+(libbuf[i+1]<<8)) >> (bitpos&7)) & 0x3f; 34 bits += 46; 35 if (bits > 57) bits += 7; 36 if (bits > 90) bits += 6; 38 s[i] = bits;
|
/external/v8/src/ |
data-flow.cc | 7 #include "src/base/bits.h" 48 if (data != 0) count += base::bits::CountPopulation32(data);
|
/external/valgrind/memcheck/tests/vbit-test/ |
vbits.h | 12 /* A type to represent V-bits */ 22 } bits; member in struct:__anon20909
|
/external/webrtc/src/system_wrappers/interface/ |
fix_interlocked_exchange_pointer_win.h | 18 // Platform SDK fixes when building with /Wp64 for a 32 bits target. 25 // building on 32 bits.
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
rate_control.h | 36 Int Rs; /*bit rate for the sequence (or segment) e.g., 24000 bits/sec */ 37 Int Rc; /*bits used for the current frame. It is the bit count obtained after encoding. */ 38 Int Rp; /*bits to be removed from the buffer per picture. */ 39 /*? is this the average one, or just the bits coded for the previous frame */ 47 Int Rr; /*number of bits remaining for encoding this sequence (or segment).*/ 50 Int S; /*number of bits used for encoding the previous frame.*/ 51 Int Hc; /*header and motion vector bits used in the current frame. It includes all the information except to the residual information.*/ 52 Int Hp; /*header and motion vector bits used in the previous frame. It includes all the information except to the residual information.*/
|
/frameworks/compile/slang/ |
legacy_bitcode.h | 25 // compressed log2 form). It occupies bits 31-16 inclusive. 28 // There are only 12 remaining attributes (bits 21-32), hence our 0xfff mask.
|
/hardware/intel/common/libmix/videodecoder/securevideo/merrifield/ |
VideoDecoderAVCSecure.cpp | 529 VTRACE("flags.bits.frame_mbs_only_flag = %d", data->pic_parse_buffer->flags.bits.frame_mbs_only_flag); 530 VTRACE("flags.bits.pic_order_present_flag = %d", data->pic_parse_buffer->flags.bits.pic_order_present_flag); 531 VTRACE("flags.bits.delta_pic_order_always_zero_flag = %d", data->pic_parse_buffer->flags.bits.delta_pic_order_always_zero_flag); 532 VTRACE("flags.bits.redundant_pic_cnt_present_flag = %d", data->pic_parse_buffer->flags.bits.redundant_pic_cnt_present_flag); 533 VTRACE("flags.bits.weighted_pred_flag = %d", data->pic_parse_buffer->flags.bits.weighted_pred_flag) [all...] |
/hardware/intel/common/libmix/videodecoder/securevideo/moorefield/ |
VideoDecoderAVCSecure.cpp | 549 VTRACE("flags.bits.frame_mbs_only_flag = %d", data->pic_parse_buffer->flags.bits.frame_mbs_only_flag); 550 VTRACE("flags.bits.pic_order_present_flag = %d", data->pic_parse_buffer->flags.bits.pic_order_present_flag); 551 VTRACE("flags.bits.delta_pic_order_always_zero_flag = %d", data->pic_parse_buffer->flags.bits.delta_pic_order_always_zero_flag); 552 VTRACE("flags.bits.redundant_pic_cnt_present_flag = %d", data->pic_parse_buffer->flags.bits.redundant_pic_cnt_present_flag); 553 VTRACE("flags.bits.weighted_pred_flag = %d", data->pic_parse_buffer->flags.bits.weighted_pred_flag) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
entropymv.c | 36 128, 129, 132, 75, 145, 178, 206, 239, 254, 254 /* long bits */ 46 128, 130, 130, 74, 148, 180, 203, 236, 254, 254 /* long bits */
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_cost.h | 35 int bits, int len) { 40 const int bit = (bits >> --len) & 1;
|
vp9_treewriter.h | 32 const vp9_prob *probs, int bits, int len, 35 const int bit = (bits >> --len) & 1;
|
vp9_write_bit_buffer.c | 30 void vp9_wb_write_literal(struct vp9_write_bit_buffer *wb, int data, int bits) { 32 for (bit = bits - 1; bit >= 0; bit--)
|
/hardware/intel/common/wrs_omxil_core/core/src/ |
intel_m4v_config_parser.cpp | 144 //DV: this is the wrong way to skip bits, use FLush or Read psBits->dataBitPos += 32; 145 ReadBits(psBits, 32, &codeword); // skip 32 bits of the Start code 262 /* vol_id (4 bits) */ 610 uint8 ucNBits, /* nr of bits to read */ 614 uint8 *bits; local 621 if (ucNBits > (32 - bitPos)) /* not enough bits */ 637 bits = &pStream->data[dataBytePos]; 638 pStream->bitBuf = (bits[0] << 24) | (bits[1] << 16) | (bits[2] << 8) | bits[3] 656 uint8 *bits; local 688 uint8 *bits; local 724 uint8 *bits; local [all...] |
/hardware/ti/omap3/omx/ti_omx_config_parser/src/ |
ti_m4v_config_parser.cpp | 139 //DV: this is the wrong way to skip bits, use FLush or Read psBits->dataBitPos += 32; 140 ReadBits(psBits, 32, &codeword); // skip 32 bits of the Start code 257 /* vol_id (4 bits) */ 625 uint8 ucNBits, /* nr of bits to read */ 629 uint8 *bits; local 636 if (ucNBits > (32 - bitPos)) /* not enough bits */ 652 bits = &pStream->data[dataBytePos]; 653 pStream->bitBuf = (bits[0] << 24) | (bits[1] << 16) | (bits[2] << 8) | bits[3] 671 uint8 *bits; local 703 uint8 *bits; local 739 uint8 *bits; local [all...] |
/libcore/luni/src/main/java/java/security/spec/ |
ECField.java | 26 * Returns the size of the field (in bits). 28 * @return the size of the field (in bits).
|
/libcore/luni/src/main/java/java/util/ |
Random.java | 87 * the number of bits specified by the argument {@code bits} as 96 protected synchronized int next(int bits) { 98 return (int) (seed >>> (48 - bits)); 187 int bits, val; local 189 bits = next(31); 190 val = bits % n; 191 } while (bits - val + (n - 1) < 0);
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
RC2ParameterSpec.java | 34 * effective key length (in bits), 37 * the effective key length (in bits). 46 * effective key length (in bits) and <i>initialization vector</i>. 52 * the effective key length (in bits). 72 * effective key length (in bits) and <i>initialization vector<i>. 79 * the effective key length (in bits). 101 * Returns the effective key length (in bits). 103 * @return the effective key length (in bits).
|
RC5ParameterSpec.java | 36 * version, round count an word size (in bits). 43 * the word size (in bits). 54 * version, round count, word size (in bits) and an <i>initialization 66 * the word size (in bits). 89 * version, round count, wordSize (in bits), an <i>initialization vector</i> 101 * the word size (in bits). 148 * Returns the word size (in bits). 150 * @return the word size (in bits).
|