/external/zlib/src/contrib/inflate86/ |
inffast.S | 43 * the input stream since the MMX code grabs bits in chunks of 32, which 157 #define bits_state 52 /* state->bits */ 232 pushf /* save eflags (strm_sp, state_sp assumes this is 32 bits) */ 276 * bits = state->bits; 435 /* regs: %esi = in, %ebp = hold, %bl = bits, %edi = out 438 * if (bits < 15) { 439 * hold |= *((unsigned short *)in)++ << bits; 440 * bits += 16 445 ja .L_get_length_code /* if (15 < bits) */ [all...] |
/external/zlib/src/ |
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 */ 230 int ZEXPORT inflatePrime(strm, bits, value) 232 int bits; 239 if (bits < 0) { 241 state->bits = 0; 244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR 271 unsigned sym, bits; local 614 unsigned bits; \/* bits in bit buffer *\/ local [all...] |
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonMCInstrInfo.cpp | 43 std::bitset<16> Bits(MCI.getOperand(MCI.getNumOperands() - 2).getImm()); 44 return Bits; 54 unsigned bits = (F >> HexagonII::ExtentBitsPos) & HexagonII::ExtentBitsMask; local 57 return ~(-1U << (bits - 1)); 59 return ~(-1U << bits); 69 unsigned bits = (F >> HexagonII::ExtentBitsPos) & HexagonII::ExtentBitsMask; local 72 return -1U << (bits - 1); 182 std::bitset<16> Bits(GetImplicitBits(MCI)); 183 return Bits.test(packetBeginIndex); 187 std::bitset<16> Bits(GetImplicitBits(MCI)) [all...] |
/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...] |
/docs/source.android.com/src/devices/tech/dalvik/ |
dalvik-bytecode.jd | 40 numbers), registers are considered 32 bits wide. Adjacent register 57 Some bits in some instructions are ignored / must-be-zero. 128 emphasized by the use of a character per four bits of width. 188 <td><code>A:</code> destination register (4 bits)<br/> 189 <code>B:</code> source register (4 bits)</td> 195 <td><code>A:</code> destination register (8 bits)<br/> 196 <code>B:</code> source register (16 bits)</td> 202 <td><code>A:</code> destination register (16 bits)<br/> 203 <code>B:</code> source register (16 bits)</td> 209 <td><code>A:</code> destination register pair (4 bits)<br/ [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...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/include/ |
viddec_fw_item_types.h | 63 mask: A 32 bit value of N 1 bits starting from lsb where N represents the length of data we are packing. 65 ex: If we want to pack Height(16bits), width(16bits) where width is from (1:16) and height is from (17:32), these are 72 insert: Will insert N bits from val_32 ,where N is length based on mask, into x_32 from bit offset based on start. val_32 is expected to 73 be a unsigned int of N bits starting with lsb. 124 VIDDEC_WORKLOAD_REF_FRAME_SOURCE_0 = 0x10000, /* required reference frames tag, last eight bits tell the id of frame in dpb */ 125 VIDDEC_WORKLOAD_REF_FRAME_RELEASE_0 = 0x20000, /* release frames tag, last eight bits tell the id of frame in dpb */ 128 VIDDEC_WORKLOAD_EOS_RELEASE_FRAME_0 = 0x50000, /* Release list while EOS, last eight bits tell the id of frame in dpb */ 129 VIDDEC_WORKLOAD_EOS_DISPLAY_FRAME_0 = 0x60000, /* Diaplay list while EOS, last eight bits tell the id of frame in dpb */ 179 /* TODO: we can pack 12 bytes and use bottom 8 bits of type to indicate size * [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetUTF7.java | 189 char bits; local 205 bits=(char)status; 255 bits=0; 306 } else if(bits!=0) { 307 /* bits are illegally left over, a UChar is incomplete */ 331 bits=(char)base64Value; 338 bits=(char)((bits<<6) | base64Value); 342 c=(char)((bits<<4) | (base64Value>>2)); 357 bits=(char)(base64Value&3) 498 char bits; local [all...] |
/external/ltrace/sysdeps/linux-gnu/arm/ |
trace.c | 32 #include "bits.h" 115 /* Bits 0-23 are signed immediate value. */ 143 * breakpoints at all. If the conditional bits of the 155 const unsigned cond = BITS(this_instr, 28, 31); 156 const unsigned opcode = BITS(this_instr, 24, 27); 178 if (BITS(this_instr, 12, 15) != ARM_REG_PC) 181 if (BITS(this_instr, 22, 25) == 0 182 && BITS(this_instr, 4, 7) == 9) { /* multiply */ 190 if (BITS(this_instr, 4, 27) == 0x12fff1 191 || BITS(this_instr, 4, 27) == 0x12fff3) [all...] |
/hardware/intel/common/libva/va/ |
va_trace.c | 813 va_TraceMsg(trace_ctx,"\tintra_dc_precision= %d\n", p->picture_coding_extension.bits.intra_dc_precision); 814 va_TraceMsg(trace_ctx,"\tpicture_structure= %d\n", p->picture_coding_extension.bits.picture_structure); 815 va_TraceMsg(trace_ctx,"\ttop_field_first= %d\n", p->picture_coding_extension.bits.top_field_first); 816 va_TraceMsg(trace_ctx,"\tframe_pred_frame_dct= %d\n", p->picture_coding_extension.bits.frame_pred_frame_dct); 817 va_TraceMsg(trace_ctx,"\tconcealment_motion_vectors= %d\n", p->picture_coding_extension.bits.concealment_motion_vectors); 818 va_TraceMsg(trace_ctx,"\tq_scale_type= %d\n", p->picture_coding_extension.bits.q_scale_type); 819 va_TraceMsg(trace_ctx,"\tintra_vlc_format= %d\n", p->picture_coding_extension.bits.intra_vlc_format); 820 va_TraceMsg(trace_ctx,"\talternate_scan= %d\n", p->picture_coding_extension.bits.alternate_scan); 821 va_TraceMsg(trace_ctx,"\trepeat_first_field= %d\n", p->picture_coding_extension.bits.repeat_first_field); 822 va_TraceMsg(trace_ctx,"\tprogressive_frame= %d\n", p->picture_coding_extension.bits.progressive_frame) [all...] |
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_subpixel_8t_intrin_ssse3.c | 59 // duplicate only the first 16 bits in the filter into the first lane 63 // duplicate only the seconds 16 bits in the filter into the second lane 66 // duplicate only the forth 16 bits in the filter into the second lane 98 // shift by 7 bit each 16 bits 101 // shrink to 8 bit each 16 bits 131 // duplicate only the first 16 bits (first and second byte) 134 // duplicate only the second 16 bits (third and forth byte) 137 // duplicate only the third 16 bits (fifth and sixth byte) 140 // duplicate only the forth 16 bits (seventh and eighth byte) 177 // shift by 7 bit each 16 bits [all...] |
/external/llvm/lib/MC/ |
SubtargetFeature.cpp | 154 void SetImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry, 160 Bits |= FE.Value; 161 SetImpliedBits(Bits, &FE, FeatureTable); 170 void ClearImpliedBits(uint64_t &Bits, const SubtargetFeatureKV *FeatureEntry, 176 Bits &= ~FE.Value; 177 ClearImpliedBits(Bits, &FE, FeatureTable); 183 /// bits. 185 SubtargetFeatures::ToggleFeature(uint64_t Bits, StringRef Feature, 193 if ((Bits & FeatureEntry->Value) == FeatureEntry->Value) { 194 Bits &= ~FeatureEntry->Value [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/ |
vp9_subpixel_8t_intrin_ssse3.c | 59 // duplicate only the first 16 bits in the filter into the first lane 63 // duplicate only the seconds 16 bits in the filter into the second lane 65 // duplicate only the forth 16 bits in the filter into the second lane 96 // shift by 7 bit each 16 bits 99 // shrink to 8 bit each 16 bits 129 // duplicate only the first 16 bits (first and second byte) 132 // duplicate only the second 16 bits (third and forth byte) 135 // duplicate only the third 16 bits (fifth and sixth byte) 138 // duplicate only the forth 16 bits (seventh and eighth byte) 175 // shift by 7 bit each 16 bits [all...] |
/external/lldb/include/lldb/Host/ |
Predicate.h | 40 /// of type T. Threads can efficiently wait for bits within T to be set 134 /// Set some bits in \a m_value. 136 /// Logically set the bits \a bits in the contained \a m_value in a 139 /// @param[in] bits 140 /// The bits to set in \a m_value. 149 SetValueBits (T bits, PredicateBroadcastType broadcast_type) 153 printf("%s (bits = 0x%8.8x, broadcast_type = %i)\n", __FUNCTION__, bits, broadcast_type); 156 m_value |= bits; [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
BitSet.cs | 50 private const int BITS = 64; // number of bits / long 60 private const int MOD_MASK = BITS - 1; 62 /** <summary>The actual data bits</summary> */ 65 /** <summary>Construct a bitset of size one word (64 bits)</summary> */ 67 : this(BITS) { 71 public BitSet(ulong[] bits) { 72 _bits = bits; 83 * <param name="nbits">The size of the bitset in bits</param> 138 /** <summary>Grows the set to a larger number of bits.</summary [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
BitSet.cs | 52 private const int BITS = 64; // number of bits / long 62 private const int MOD_MASK = BITS - 1; 64 /** <summary>The actual data bits</summary> */ 67 /** <summary>Construct a bitset of size one word (64 bits)</summary> */ 69 : this( BITS ) 75 public BitSet( ulong[] bits ) 77 _bits = bits; 89 * <param name="nbits">The size of the bitset in bits</param> 153 /** <summary>Grows the set to a larger number of bits.</summary [all...] |
/external/speex/libspeex/ |
stereo.c | 108 EXPORT void speex_encode_stereo(float *data, int frame_size, SpeexBits *bits) 124 speex_bits_pack(bits, 14, 5); 125 speex_bits_pack(bits, SPEEX_INBAND_STEREO, 4); 131 speex_bits_pack(bits, 0, 1); 133 speex_bits_pack(bits, 1, 1); 138 speex_bits_pack(bits, (int)balance, 5); 142 speex_bits_pack(bits, tmp, 2); 146 EXPORT void speex_encode_stereo_int(spx_int16_t *data, int frame_size, SpeexBits *bits) 158 speex_bits_pack(bits, 14, 5); 160 speex_bits_pack(bits, SPEEX_INBAND_STEREO, 4) [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
GEOLocationElement.java | 13 * defines the same basic binary format for the DHCPv4 payload except that a few unused bits of the 19 * of significant bits" of precision in the respective values and implies through examples and 20 * otherwise that the non-significant bits should be simply disregarded and the range of values are 21 * calculated as the numeric interval obtained by varying the range of "insignificant bits" between 23 * significant bits: 33 is 00100001 binary and the leading 001 are the significant bits. With the 195 private long sliceOff(int bits) { 196 final int bn = mBitoffset + bits; 197 int remaining = bits; 286 * Convert an absolute resolution, into the "number of significant bits" for the given fixe [all...] |
/bionic/libm/i387/ |
npx.h | 46 long en_cw; /* control word (16bits) */ 47 long en_sw; /* status word (16bits) */ 48 long en_tw; /* tag word (16bits) */ 51 u_short en_opcode; /* opcode last executed (11 bits ) */ 85 u_int16_t en_cw; /* control word (16bits) */ 86 u_int16_t en_sw; /* status word (16bits) */ 87 u_int16_t en_tw; /* tag word (16bits) */ 88 u_int16_t en_opcode; /* opcode last executed (11 bits ) */ 96 u_int32_t en_mxcsr_mask; /* valid bits in mxcsr */ 127 * We modify the affine mode bit and precision bits in this to give [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_atan2l.c | 62 ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)!=0) || /* x is NaN */ 64 ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)!=0)) /* y is NaN */ 66 if (expsignx==BIAS && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0) 71 if(expty==0 && ((uy.bits.manh&~LDBL_NBIT)|uy.bits.manl)==0) { 80 if(exptx==0 && ((ux.bits.manh&~LDBL_NBIT)|ux.bits.manl)==0 [all...] |
/external/clang/include/clang/Basic/ |
DiagnosticOptions.def | 24 # define VALUE_DIAGOPT(Name, Bits, Default) \ 25 DIAGOPT(Name, Bits, Default) 29 # define ENUM_DIAGOPT(Name, Type, Bits, Default) \ 30 DIAGOPT(Name, Bits, Default) 34 # define SEMANTIC_DIAGOPT(Name, Bits, Default) DIAGOPT(Name, Bits, Default) 38 # define SEMANTIC_VALUE_DIAGOPT(Name, Bits, Default) \ 39 VALUE_DIAGOPT(Name, Bits, Default) 43 # define SEMANTIC_ENUM_DIAGOPT(Name, Type, Bits, Default) \ 44 ENUM_DIAGOPT(Name, Type, Bits, Default [all...] |
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_bitvector_test.cc | 90 // test random bits 109 vector<uptr>bits(bv.size()); 114 for (size_t j = 0; j < bits.size(); j++) bits[j] = j; 115 random_shuffle(bits.begin(), bits.end()); 124 bv.setBit(bits[i]); 125 s.insert(bits[i]); 129 bv1.setBit(bits[bv.size() / 2 + i]); 130 s1.insert(bits[bv.size() / 2 + i]) [all...] |
/external/deqp/framework/common/ |
tcuPixelFormat.hpp | 61 * Per-channel threshold is 2^(8-bits). If alpha channel bits are zero, 73 static inline int convertChannel (int val, int bits) 75 if (bits == 1) 79 DE_ASSERT(deInRange32(bits, 4, 8)); 80 int c = val >> (8-bits); 81 return (c << (8-bits)) | (c >> (2*bits-8)); 89 * bits are filled by replicating the upper bits [all...] |
/external/kernel-headers/original/uapi/asm-mips/asm/ |
kvm.h | 26 * stored in the lower 32-bits of the struct kvm_regs fields and sign 27 * extended to 64-bits. 40 * If Status[FR] is zero (32-bit FPU), the upper 32-bits of the FPRs 58 * bits[2..0] - Register 'sel' index. 59 * bits[7..3] - Register 'rd' index. 60 * bits[15..8] - Must be zero. 61 * bits[31..16] - 1 -> CP0 registers. 62 * bits[51..32] - Must be zero. 63 * bits[63..52] - As per linux/kvm.h 66 * have its own identifier in bits[31..16] [all...] |
/external/kernel-headers/original/uapi/linux/usb/ |
ch11.h | 92 /* USB 3.0 hub remote wake mask bits, see table 10-14 */ 116 /* bits 6 to 7 are reserved */ 122 /* bits 13 to 15 are reserved */ 133 /* Bits that are the same from USB 2.0 */ 141 * (bits 5-8) in wPortStatus 159 * Bits 0 to 5 shown, bits 6 to 15 are reserved 202 * Bits 0 and 1 for wHubStatus and wHubChange 203 * Bits 2 to 15 are reserved for both 271 /* Transaction Translator Think Times, in bits */ [all...] |