HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 251 - 275 of 336) sorted by null

<<11121314

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
evsel.c 128 enum perf_event_sample_format bit)
130 if (!(evsel->attr.sample_type & bit)) {
131 evsel->attr.sample_type |= bit;
138 enum perf_event_sample_format bit)
140 if (evsel->attr.sample_type & bit) {
141 evsel->attr.sample_type &= ~bit;
1838 int bit; member in struct:bit_names
    [all...]
  /external/lzma/C/
LzmaDec.c 184 unsigned bit; local
187 bit = (matchByte & offs);
188 probLit = prob + offs + bit + symbol;
189 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
528 unsigned bit; local
531 bit = (matchByte & offs);
532 probLit = prob + offs + bit + symbol;
533 GET_BIT2_CHECK(probLit, symbol, offs &= ~bit, offs &= bit)
    [all...]
  /external/lzma/xz-embedded/
xz_dec_lzma2.c 149 * LZMA properties or related bit masks (number of literal
158 /* If 1, it's a match. Otherwise it's a single 8-bit literal. */
487 * Decode one bit. In some versions, this function has been splitted in three
500 int bit; local
507 bit = 0;
512 bit = 1;
515 return bit;
518 /* Decode a bittree starting from the most significant bit. */
534 /* Decode a bittree starting from the least significant bit. */
580 /* Decode a literal (one 8-bit byte) *
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_vbuf.c 55 uint32_t incompatible_elem_mask; /* each bit describes a corresp. attrib */
120 uint32_t user_vb_mask; /* each bit describes a corresp. buffer */
122 uint32_t incompatible_vb_mask; /* each bit describes a corresp. buffer */
124 uint32_t nonzero_stride_vb_mask; /* each bit describes a corresp. buffer */
386 /* Set the bit for each buffer which is incompatible, or isn't set. */
482 unsigned bit, vb_index = mgr->ve->ve[i].vertex_buffer_index; local
483 bit = 1 << vb_index;
487 (!unroll_indices || !(mask[VB_VERTEX] & bit))) {
494 if (mask[type] & bit) {
    [all...]
  /external/tcpdump/
print-802_11.c 2215 enum ieee80211_radiotap_type bit; local
    [all...]
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
WapPushTest.java 838 int bit = 1; local
845 if ((bit & uint32Val) > 0) topbit = i;
846 bit = (bit << 1);
997 int bit = 1; local
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 257 * Set the given bit in pDefinedClassBits, returning its former value.
261 u4 bit = 1 << (typeIdx & 0x1f); local
263 bool result = (*element & bit) != 0;
265 *element |= bit;
342 * one-bit-on integer, suitable for use in an int-sized bit set.
401 u4 usedBits = 0; // Bit set: one bit per section
448 u4 bit = mapTypeToBitMask(item->type); local
450 if (bit == 0)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
ffvertex_prog.c 381 int bit = ffs( ~p->temp_in_use ); local
382 if (!bit) {
387 if ((GLuint) bit > p->program->Base.NumTemporaries)
388 p->program->Base.NumTemporaries = bit;
390 p->temp_in_use |= 1<<(bit-1);
391 return make_ureg(PROGRAM_TEMPORARY, bit-1);
518 /* This is a bit sad as the support is there to pull the whole
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 139 int bit() const { function in struct:v8::internal::Register
212 // to number of 32-bit FPU regs, but kNumAllocatableRegisters refers to
213 // number of Double regs (64-bit regs, or FPU-reg-pairs).
261 int bit() const { function in struct:v8::internal::FPURegister
274 // 32-bit registers, f0 through f31. When used as 'double' they are used
277 // (Modern mips hardware also supports 32 64-bit registers, via setting
278 // (priviledged) Status Register FR bit to 1. This is used by the N32 ABI,
281 // For O32 ABI, Floats and Doubles refer to same set of 32 32-bit registers.
341 int bit() const { function in struct:v8::internal::FPUControlRegister
543 // Number of consecutive instructions used to store 32bit constant
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.cpp 87 deUint32 bit; member in struct:deqp::gls::ub::__anon24227
101 if (remBits & bitDesc[descNdx].bit)
106 remBits &= ~bitDesc[descNdx].bit;
653 // \note Random bit pattern is used for true values. Spec states that all non-zero values are
    [all...]
  /external/e2fsprogs/debugfs/
debugfs.c 2170 int compat, bit, ret; local
    [all...]
  /external/mesa3d/src/mesa/main/
ffvertex_prog.c 381 int bit = ffs( ~p->temp_in_use ); local
382 if (!bit) {
387 if ((GLuint) bit > p->program->Base.NumTemporaries)
388 p->program->Base.NumTemporaries = bit;
390 p->temp_in_use |= 1<<(bit-1);
391 return make_ureg(PROGRAM_TEMPORARY, bit-1);
518 /* This is a bit sad as the support is there to pull the whole
    [all...]
  /external/ppp/pppd/
auth.c 910 int bit; local
914 bit = CHAP_PEER;
917 bit |= CHAP_MD5_PEER;
921 bit |= CHAP_MS_PEER;
924 bit |= CHAP_MS2_PEER;
930 bit = PAP_PEER;
933 bit = EAP_PEER;
950 auth_done[unit] |= bit;
956 if ((auth_pending[unit] &= ~bit) == 0)
986 int bit; local
    [all...]
  /external/qemu/
block.c 923 unsigned long val, idx, bit; local
930 bit = start % (sizeof(unsigned long) * 8);
933 if (!(val & (1 << bit))) {
935 val |= 1 << bit;
938 if (val & (1 << bit)) {
940 val &= ~(1 << bit);
    [all...]
  /external/qemu-pc-bios/vgabios/
vgabios.c 827 {// mode: Bit 7 is 1 if no clear screen
872 // if palette loading (bit 3 of modeset ctl = 0)
2913 ; reset modeset ctl bit 7 and set bit 4 variable
2923 ; reset modeset ctl bit 7 and bit 4 variable
2932 ; set modeset ctl bit 7 and reset bit 4 variable
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.c 534 if (wpa_s->keys_cleared & BIT(i))
539 if (!(wpa_s->keys_cleared & BIT(0)) && addr &&
3006 le16 bit = host_to_le16(HT_CAP_INFO_40MHZ_INTOLERANT); local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1645 uint32 bit, mask; local
1673 uint32 bit; local
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 178 uint32 bit; member in class:RbspParser
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 183 uint32 bit; member in class:RbspParser
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 80 public ImageFetch(int offset, int bit) {
82 imageBit = bit;
670 int bit = sImageFetchSeq[i].imageBit; local
671 if (bit == BIT_FULL_IMAGE && !mNeedFullImage) continue;
672 task = startTaskIfNeeded(currentIndex + offset, bit);
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndbdic.c 214 NJ_UINT16 bit; local
307 bit = BIT_CANDIDATE_LEN(hdl);
309 stem_set->candidate_size = GET_BITFIELD_16(data, j, bit);
310 bit_all += bit;
323 bit = BIT_YOMI_LEN(hdl);
325 stem_set->yomi_size = GET_BITFIELD_16(data, j, bit);
326 bit_all += bit;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msasn1.h 221 ASN1uint32_t bit; member in struct:ASN1encoding_s
236 ASN1uint32_t bit; member in struct:ASN1decoding_s
  /external/blktrace/
blkparse.c 225 struct blk_io_trace *bit; member in struct:trace
573 static void handle_notify(struct blk_io_trace *bit)
575 void *payload = (caddr_t) bit + sizeof(*bit);
578 switch (bit->action) {
580 add_ppm_hash(bit->pid, payload);
584 if (bit->pdu_len != sizeof(two32))
591 start_timestamp = bit->time;
602 if (bit->pdu_len > 0) {
603 char msg[bit->pdu_len+1]
766 struct blk_io_trace *bit = bit_alloc_list; local
1917 struct blk_io_trace *bit = t->bit; local
1992 struct blk_io_trace *bit = t->bit; local
2043 struct blk_io_trace *bit; local
2160 struct blk_io_trace *bit; local
2318 struct blk_io_trace *bit = NULL; local
2457 struct blk_io_trace *bit; local
    [all...]
  /external/chromium_org/third_party/freetype/src/raster/
ftraster.c 336 /* values for the `flags' bit field */
361 unsigned flags; /* Bit 0-2: drop-out mode */
362 /* Bit 3: profile orientation (up/down) */
363 /* Bit 4: is top profile? */
364 /* Bit 5: is bottom profile? */
507 FT_Bitmap target; /* description of target bit/pixmap */
2764 PByte bit, bit2; local
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 672 UInt32 bit; local
674 bit = (symbol >> i) & 1;
675 RangeEnc_EncodeBit(rc, probs + m, bit);
676 m = (m << 1) | bit;
686 UInt32 bit = symbol & 1; local
687 RangeEnc_EncodeBit(rc, probs + m, bit);
688 m = (m << 1) | bit;
712 UInt32 bit = symbol & 1; local
714 price += GET_PRICEa(probs[m], bit);
715 m = (m << 1) | bit;
    [all...]

Completed in 3059 milliseconds

<<11121314