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

<<111213141516171819

  /external/compiler-rt/lib/sanitizer_common/
sanitizer_linux.cc 89 // Are we using 32-bit or 64-bit Linux syscalls?
91 // but it still needs to use 64-bit syscalls.
499 // 32-bit syscall here.
633 const uptr bit = signum % (sizeof(k_set->sig[0]) * 8); local
634 k_set->sig[idx] &= ~(1 << bit);
898 * if we are using 32-bit abi.
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboRenderTest.cpp 95 deUint32 buffers; //!< Buffer bit mask (GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT|...)
295 deUint32 bit = ndx ? GL_STENCIL_BUFFER_BIT : GL_DEPTH_BUFFER_BIT; local
298 if ((m_config.buffers & bit) == 0)
891 deUint32 bit = ndx ? GL_STENCIL_BUFFER_BIT : GL_DEPTH_BUFFER_BIT; local
894 if ((m_config.buffers & bit) == 0)
1332 deUint32 bit = ndx == 0 ? GL_COLOR_BUFFER_BIT local
1370 deUint32 bit = ndx == 0 ? GL_COLOR_BUFFER_BIT : local
    [all...]
  /external/fio/
client.c 1169 char bit[16]; local
1179 sprintf(bit, "%d-bit", probe->bpp * 8);
1183 probe->hostname, probe->bigendian, bit, os, arch,
    [all...]
  /external/lzma/C/
LzmaDec.c 52 bit = (matchByte & offs); \
53 probLit = prob + offs + bit + symbol; \
54 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit)
205 unsigned bit; local
212 unsigned bit; local
561 unsigned bit; local
564 bit = (matchByte & offs);
565 probLit = prob + offs + bit + symbol;
566 GET_BIT2_CHECK(probLit, symbol, offs &= ~bit, offs &= bit)
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 229 unsigned bit = rc->DecodeBit(&probs[m]); local
231 m += bit;
232 symbol |= (bit << i);
389 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]); local
390 symbol = (symbol << 1) | bit;
391 if (matchBit != bit)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoder.java 111 * This is like bit scan reverse (BSR) on x86 except that this also
112 * cares about the second highest bit.
255 // Literal i.e. eight-bit byte
546 int bit; local
550 bit = (symbol >>> 7) & 1;
551 rc.encodeBit(probs, subencoderIndex, bit);
560 int bit; local
566 bit = (symbol >>> 7) & 1;
567 rc.encodeBit(probs, subencoderIndex, bit);
579 int bit; local
599 int bit; local
    [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/opencv3/3rdparty/libtiff/
tif_fax3.c 72 const unsigned char* bitmap; /* bit reversal table */
74 int bit; /* current i/o bit in byte */ member in struct:__anon21823
108 uint32 BitAcc; /* bit accumulator */ \
116 const unsigned char* bitmap = sp->bitmap; /* input data bit reverser */ \
127 BitsAvail = sp->bit; \
136 sp->bit = BitsAvail; \
153 sp->bit = 0; /* force initial read */
157 * Decoder assumes lsb-to-msb bit order. Note that we select
291 is1D = GetBits(1); /* 1D/2D-encoding tag bit */
605 unsigned int bit = sp->bit; local
640 unsigned int bit = sp->bit; local
683 unsigned int bit = sp->bit; local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_fax3.c 72 const unsigned char* bitmap; /* bit reversal table */
74 int bit; /* current i/o bit in byte */ member in struct:__anon23102
108 uint32 BitAcc; /* bit accumulator */ \
116 const unsigned char* bitmap = sp->bitmap; /* input data bit reverser */ \
127 BitsAvail = sp->bit; \
136 sp->bit = BitsAvail; \
153 sp->bit = 0; /* force initial read */
157 * Decoder assumes lsb-to-msb bit order. Note that we select
291 is1D = GetBits(1); /* 1D/2D-encoding tag bit */
606 unsigned int bit = sp->bit; local
641 unsigned int bit = sp->bit; local
684 unsigned int bit = sp->bit; local
    [all...]
  /external/selinux/libsepol/src/
write.c 58 uint32_t buf[32], bit, count; local
75 bit = cpu_to_le32(n->startbit);
76 items = put_entry(&bit, sizeof(uint32_t), 1, fp);
    [all...]
  /external/toybox/lib/
lib.c 851 mode_t bit = 0; local
858 // suid/sticky bit.
860 if ((dowhat & 8) && (dowho&(8|(1<<i)))) bit++;
861 } else if (dowhat & 16) bit++;
864 if (dowhat&(1<<j)) bit++;
867 // When selection active, modify bit
869 if (dohow == '=' || (bit && dohow == '-')) mode &= ~where;
870 if (bit && dohow != '-') mode |= where;
886 int i, bit; local
890 bit = mode & (1<<i)
    [all...]
  /external/v8/src/ppc/
macro-assembler-ppc.h 73 // These exist to provide portability between 32 and 64bit
546 // These exist to provide portability between 32 and 64bit
1108 uintptr_t bit = (1L << start); 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...]
  /libcore/ojluni/src/main/java/java/awt/font/
NumericShaper.java 77 * <p><b>Bit mask- and enum-based Unicode ranges</b></p>
80 * represent Unicode ranges for script-specific digits: bit
83 * Multiple ranges can be specified by ORing bit mask-based constants,
93 * The enum-based ranges are a super set of the bit mask-based ones.
143 * <p>The <code>Range</code> enum replaces the traditional bit
145 * supports more Unicode ranges than the bit mask-based ones. For
146 * example, the following code using the bit mask:
373 /** flag indicating whether to shape contextually (high bit) and which
380 * Range} for non-contextual shaping. {@code null} for the bit
389 * shape. {@code null} for the bit mask-based API
1431 int bit = 0; local
    [all...]
  /libcore/ojluni/src/main/native/
NetworkInterface.c 658 int byte, bit, plen = 0; local
664 for (bit = 7; bit > 0; bit--) {
665 if (val[byte] & (1 << bit)) plen++;
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 230 int bit = *idx % 8; local
237 old &= ~((~0 >> (8 - bit - size)) & ((1 << size) - 1));
239 old |= (val & ((1 << size) - 1)) << (8 - bit - size);
    [all...]
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/0.13.2/
grpc-okhttp-0.13.2.jar 
  /art/runtime/
dex_file_verifier.cc 378 uint32_t bit = MapTypeToBitMask(item->type_); local
380 if (UNLIKELY(bit == 0)) {
385 if (UNLIKELY((used_bits & bit) != 0)) {
390 used_bits |= bit;
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 231 * Set the given bit in pDefinedClassBits, returning its former value.
235 u4 bit = 1 << (typeIdx & 0x1f); local
237 bool result = (*element & bit) != 0;
239 *element |= bit;
316 * one-bit-on integer, suitable for use in an int-sized bit set.
375 u4 usedBits = 0; // Bit set: one bit per section
422 u4 bit = mapTypeToBitMask(item->type); local
424 if (bit == 0)
    [all...]
  /external/clang/test/CodeGenCXX/
mangle.cpp 712 enum { bit }; enumerator in enum:test28::A::__anon9026
715 template <class T> void foo(decltype(A<T>::A::bit) x);
718 foo<char>(A<char>::bit);
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp 273 deUint32 bit; member in struct:vkt::ubo::__anon10479::__anon10480
285 if (remBits & bitDesc[descNdx].bit)
290 remBits &= ~bitDesc[descNdx].bit;
600 // \note Random bit pattern is used for true values. Spec states that all non-zero values are
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.cpp 87 deUint32 bit; member in struct:deqp::gls::ub::__anon11356
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/iw/
scan.c 1097 int i, base, bit; local
1104 for (bit = 0; bit < 8; bit++) {
1105 if (!(data[i] & (1 << bit)))
1113 #define CAPA(bit, name) case bit: printf(" " name); break
1115 switch (bit + base) {
1163 printf(" %d", bit);
1313 [0] = { "SSID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), }
    [all...]

Completed in 1118 milliseconds

<<111213141516171819