HomeSort by relevance Sort by last modified time
    Searched defs:bit (Results 301 - 325 of 455) sorted by null

<<111213141516171819

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.cpp 472 unsigned bit=0; local
475 node=sort(node,m_root)->childs[(m_opath>>bit)&1];
476 bit=(bit+1)&(sizeof(unsigned)*8-1);
    [all...]
  /external/libgdx/extensions/gdx-freetype/src/com/badlogic/gdx/graphics/g2d/freetype/
FreeTypeFontGenerator.java 580 int bit = (buf.get(idx + (w / 8)) >>> (7 - (w % 8))) & 1; local
581 mainPixmap.drawPixel(w, h, ((bit == 1) ? whiteIntBits : clearIntBits));
  /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 937 int bit; local
941 bit = CHAP_PEER;
944 bit |= CHAP_MD5_PEER;
948 bit |= CHAP_MS_PEER;
951 bit |= CHAP_MS2_PEER;
957 bit = PAP_PEER;
960 bit = EAP_PEER;
977 auth_done[unit] |= bit;
983 if ((auth_pending[unit] &= ~bit) == 0)
1013 int bit; local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
bcmutils.c 1645 uint32 bit, mask; local
1673 uint32 bit; local
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
h264_utils.h 178 uint32 bit; member in class:RbspParser
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
h264_utils.h 183 uint32 bit; member in class:RbspParser
  /hardware/qcom/media/msm8996/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
  /toolchain/binutils/binutils-2.25/gas/config/
tc-mep.c 624 1. The instruction is a 32 bit core or coprocessor insn and
642 as_fatal ("Cannot use 48- or 64-bit insns with a 32 bit datapath.");
653 /* At this point we know that we have a single 16-bit insn that has
663 saved insns arrary and insert a 16 bit core nope into the
693 /* Use 32 bit branches and skip the nop. */
699 /* Insert a 16-bit coprocessor nop. Note that at the time */
700 /* this was done, no 16-bit coprocessor nop was defined. */
761 1. The instruction is a 64 bit coprocessor insn and can be
780 in case 64 bit coprocessor insns are added later. *
1621 int addend, rn, bit = 0; local
    [all...]
  /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/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 74 deUint32 bit; member in struct:vkt::ssbo::__anon10472
87 if (remBits & bitDesc[descNdx].bit)
92 remBits &= ~bitDesc[descNdx].bit;
684 // \note Random bit pattern is used for true values. Spec states that all non-zero values are
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp 74 deUint32 bit; member in struct:deqp::gles31::bb::__anon11222
89 if (remBits & bitDesc[descNdx].bit)
94 remBits &= ~bitDesc[descNdx].bit;
769 // \note Random bit pattern is used for true values. Spec states that all non-zero values are
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
Encoder.java 81 int bit = ((symbol >> i) & 1); local
82 rangeEncoder.Encode(m_Encoders, context, bit);
83 context = (context << 1) | bit;
92 int bit = ((symbol >> i) & 1); local
97 same = (matchBit == bit);
99 rangeEncoder.Encode(m_Encoders, state, bit);
100 context = (context << 1) | bit;
111 int bit = (symbol >> i) & 1; local
113 + context], bit);
114 context = (context << 1) | bit;
122 int bit = (symbol >> i) & 1; local
    [all...]
  /external/lzma/C/
LzmaEnc.c 682 UInt32 bit; local
684 bit = (symbol >> i) & 1;
685 RangeEnc_EncodeBit(rc, probs + m, bit);
686 m = (m << 1) | bit;
696 UInt32 bit = symbol & 1; local
697 RangeEnc_EncodeBit(rc, probs + m, bit);
698 m = (m << 1) | bit;
722 UInt32 bit = symbol & 1; local
724 price += GET_PRICEa(probs[m], bit);
725 m = (m << 1) | bit;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 83 int bit = ((symbol >> i) & 1); local
84 rangeEncoder.Encode(m_Encoders, context, bit);
85 context = (context << 1) | bit;
95 int bit = ((symbol >> i) & 1); local
101 same = (matchBit == bit);
103 rangeEncoder.Encode(m_Encoders, state, bit);
104 context = (context << 1) | bit;
118 int bit = (symbol >> i) & 1; local
119 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + context], bit);
120 context = (context << 1) | bit;
130 int bit = (symbol >> i) & 1; local
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 2515 GLint bit; local
    [all...]
  /external/toybox/toys/pending/
xzcat.c 328 /* Inline functions to access unaligned unsigned 32-bit integers */
608 * The local variables take a little bit stack space, but it's less
617 /* Instruction slot (0, 1, or 2) in the 128-bit instruction word */
623 /* bit_pos split into byte and bit parts */
633 /* 41-bit instruction stored somewhere in the lowest 48 bits */
1015 * - Literal: One 8-bit byte
1081 * - 0x101-0x1FF: With match byte; match bit is 0
1082 * - 0x201-0x2FF: With match byte; match bit is 1
1135 * The highest two bits of a 32-bit match distance are encoded using six bits.
1136 * This six-bit value is called a distance slot. This way encoding a 32-bi
1648 int bit; local
    [all...]
  /external/v8/src/ppc/
simulator-ppc.cc 433 intptr_t words; // likely inaccurate variable name for 64bit
1858 uintptr_t bit = 0x80000000; local
1873 uintptr_t bit = 0x8000000000000000UL; local
2156 uintptr_t bit = 0x80000000; local
2182 uintptr_t bit = 0x8000000000000000UL; local
3213 uintptr_t bit = 0x8000000000000000 >> mb; local
3221 uintptr_t bit = 0x8000000000000000 >> (me + 1); \/\/ needs to be tested local
3427 int bit = 0x80000000 >> mb; local
3435 int bit = 0x80000000 >> (me + 1); \/\/ needs to be tested local
3469 int bit = 0x80000000 >> mb; local
3477 int bit = 0x80000000 >> (me + 1); \/\/ needs to be tested local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.c 599 if (wpa_s->keys_cleared & BIT(i))
604 if (!(wpa_s->keys_cleared & BIT(0)) && addr &&
3753 le16 bit = host_to_le16(HT_CAP_INFO_40MHZ_INTOLERANT); local
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 655 /* bit map related macros */
661 extern void setbit(void *array, uint bit);
662 extern void clrbit(void *array, uint bit);
663 extern bool isset(const void *array, uint bit);
664 extern bool isclr(const void *array, uint bit);
733 /* bcm_format_flags() bit description structure */
735 uint32 bit; member in struct:bcm_bit_desc
760 /* 128-bit xor: *dst = *src1 xor *src2. dst1, src1 and src2 may have any alignment */
820 #define mboolset(mb, bit) ((mb) |= (bit)) /* set one bool *
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /external/ImageMagick/MagickCore/
xwindow.c 5881 bit, local
6497 bit, local
    [all...]

Completed in 1031 milliseconds

<<111213141516171819