HomeSort by relevance Sort by last modified time
    Searched defs:bits (Results 676 - 700 of 1014) sorted by null

<<21222324252627282930>>

  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jdmarker.c 457 UINT8 bits[17]; local
471 bits[0] = 0;
474 INPUT_BYTE(cinfo, bits[i], return FALSE);
475 count += bits[i];
481 bits[1], bits[2], bits[3], bits[4],
482 bits[5], bits[6], bits[7], bits[8]);
    [all...]
  /external/pixman/pixman/
pixman-access.c 169 uint32_t *bits = __bits_image->bits; \
185 ((uint8_t *) ((bits) + (stride) * (line)))
188 ((uint8_t *) ((bits) + offset1 + \
192 ((uint8_t *) ((bits) + offset0 + \
304 return image->bits.indexed->rgba[pixel];
320 return image->bits.indexed->ent[pixel & 0x7fff];
326 return image->bits.indexed->ent[pixel & 0x7fff];
336 const uint8_t * bits,
345 pixel = FETCH_1 (image, bits, offset)
593 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
622 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
653 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
683 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
714 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
743 const uint32_t *bits = image->bits.bits + image->bits.rowstride * line; local
813 uint32_t *bits = image->bits + line * image->rowstride; local
833 uint32_t *bits = image->bits + line * image->rowstride; local
854 uint32_t *bits = image->bits + line * image->rowstride; local
875 uint32_t *bits = image->bits + line * image->rowstride; local
895 uint32_t *bits = image->bits + line * image->rowstride; local
913 const uint32_t *bits = image->bits + image->rowstride * line; local
972 uint32_t *bits = image->bits + image->rowstride * y; local
998 uint32_t *bits = image->bits + image->rowstride * y; local
1023 uint32_t *bits = image->bits + image->rowstride * y; local
1049 uint32_t *bits = image->bits + image->rowstride * y; local
1074 uint32_t *bits = image->bits + image->rowstride * y; local
1147 const uint32_t *bits = image->bits.bits + y * image->bits.rowstride; local
1176 uint32_t *bits = image->bits + line * image->rowstride; local
1199 uint32_t *bits = image->bits + image->rowstride * y; local
    [all...]
pixman-bits-image.c 151 bits_image_t *bits = &ima->bits; local
171 if (!pixman_transform_point_3d (bits->common.transform, &v))
174 ux = ux_top = ux_bottom = bits->common.transform->matrix[0][0];
194 if (y1 < 0 || y1 >= bits->height)
202 top_row = bits->bits + y1 * bits->rowstride;
207 if (y2 < 0 || y2 >= bits->height)
215 bottom_row = bits->bits + y2 * bits->rowstride
737 bits_image_t *bits = &image->bits; local
886 bits_image_t *bits = &image->bits; local
1040 bits_image_t *bits = &image->bits; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jdmarker.c 423 UINT8 bits[17]; local
437 bits[0] = 0;
440 INPUT_BYTE(cinfo, bits[i], return FALSE);
441 count += bits[i];
447 bits[1], bits[2], bits[3], bits[4],
448 bits[5], bits[6], bits[7], bits[8])
    [all...]
  /external/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 189 static int pathsDrawTheSame(SkBitmap& bits, const SkPath& scaledOne, const SkPath& scaledTwo,
191 if (bits.width() == 0) {
192 bits.setConfig(SkBitmap::kARGB_8888_Config, bitWidth * 2, bitHeight);
193 bits.allocPixels();
195 SkCanvas canvas(bits);
210 uint32_t* addr1 = bits.getAddr32(0, y);
211 uint32_t* addr2 = bits.getAddr32(0, y + 1);
212 uint32_t* addr3 = bits.getAddr32(bitWidth, y);
213 uint32_t* addr4 = bits.getAddr32(bitWidth, y + 1);
231 static int pathsDrawTheSame(const SkPath& one, const SkPath& two, SkBitmap& bits, SkPath& scaledOne
248 SkBitmap bits; local
354 SkBitmap bits; local
    [all...]
  /external/vixl/src/a64/
instructions-a64.h 168 inline uint32_t Bits(int msb, int lsb) const {
173 int32_t bits = *(reinterpret_cast<const int32_t*>(this)); local
174 return signed_bitextract_32(msb, lsb, bits);
  /external/webp/src/demux/
demux.c 303 int bits; local
315 bits = ReadByte(mem);
317 (bits & 1) ? WEBP_MUX_DISPOSE_BACKGROUND : WEBP_MUX_DISPOSE_NONE;
318 frame->blend_method_ = (bits & 2) ? WEBP_MUX_NO_BLEND : WEBP_MUX_BLEND;
    [all...]
  /external/wpa_supplicant_8/src/ap/
hostapd.c 468 unsigned int i = iface->conf->num_bss, bits = 0, j; local
476 /* Determine the bits necessary to cover the number of BSSIDs. */
478 bits++;
480 /* Determine the bits necessary to any configured BSSIDs,
511 if (bits < j)
512 bits = j;
514 if (bits > 40) {
515 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
516 bits);
521 j = bits / 8
    [all...]
  /frameworks/av/media/libstagefright/
OggExtractor.cpp 73 // Returns an approximate bitrate in bits per second.
413 // Only bits 0-2 are defined in version 0.
712 oggpack_buffer bits; local
713 oggpack_readinit(&bits, &ref);
715 CHECK_EQ(oggpack_read(&bits, 8), type);
717 oggpack_read(&bits, 8); // skip 'vorbis'
723 CHECK_EQ(0, _vorbis_unpack_info(&mVi, &bits));
746 if (0 != _vorbis_unpack_comment(&mVc, &bits)) {
756 if (0 != _vorbis_unpack_books(&mVi, &bits)) {
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
motion_est.cpp 77 int bits, imax, imin, i; local
101 for (bits = 3; bits <= max_mv_bits; bits += 2)
103 imax = 1 << (bits >> 1);
106 for (i = imin; i < imax; i++) mvbits[-i] = mvbits[i] = bits;
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
XmlUtils.java 142 long bits; local
    [all...]
  /frameworks/native/include/input/
Input.h 192 uint64_t bits __attribute__((aligned(8))); member in struct:android::PointerCoords
195 // for each axis that is present in the structure according to 'bits'.
199 BitSet64::clear(bits);
203 return BitSet64::isEmpty(bits);
  /hardware/intel/common/libva/va/
va_dec_hevc.h 174 } bits; member in union:_VADecPictureParameterBufferHEVC::__anon39553
240 } bits; member in union:_VADecPictureParameterBufferHEVC::__anon39555
255 * \brief number of bits that structure
va_enc_h264.h 196 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon39572
247 } bits; member in union:_VAEncSequenceParameterBufferH264::__anon39574
369 } bits; member in union:_VAEncPictureParameterBufferH264::__anon39576
511 * @name Macroblock neighbour availability bits
514 * Definitions for macroblock neighbour availability bits used in
556 * availability bits from VME stage.
559 * availability bits from the VME stage are overriden
573 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon39578::__anon39579
582 } bits; member in struct:_VAEncMacroblockParameterBufferH264::__anon39578::__anon39581
757 * @return the number of bits written, or a negative value to indicate an erro
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_bitstream.c 152 int bits = v >> (n - len); local
153 vp9_write_tree(w, vp9_coef_tree, p->context_tree, bits, len, i);
167 int n = l; /* number of bits in v, assumed nonzero */
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-internal.h 220 // For float, there are 8 exponent bits and 23 fraction bits.
222 // For double, there are 11 exponent bits and 52 fraction bits.
235 typedef typename TypeWithSize<sizeof(RawType)>::UInt Bits;
239 // # of bits in a number.
242 // # of fraction bits in a number.
246 // # of exponent bits in a number.
250 static const Bits kSignBitMask = static_cast<Bits>(1) << (kBitCount - 1)
300 const Bits &bits() const { return u_.bits_; } function in class:testing::internal::FloatingPoint
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
telephony.h 204 * frame type is encoded in the least significant two bits of the first
207 * bits 1-0 Frame Type Data Rate Significant Words
211 * 11 3 Repeat last CNG 2 bits
229 * and f3 bits indicate that the filter has been triggered by detecting the
232 * The remaining bits should be set to zero. They will become defined over time
256 struct phone_except bits; member in union:telephony_exception
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
telephony.h 204 * frame type is encoded in the least significant two bits of the first
207 * bits 1-0 Frame Type Data Rate Significant Words
211 * 11 3 Repeat last CNG 2 bits
229 * and f3 bits indicate that the filter has been triggered by detecting the
232 * The remaining bits should be set to zero. They will become defined over time
256 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
telephony.h 167 struct phone_except bits; member in union:telephony_exception

Completed in 1776 milliseconds

<<21222324252627282930>>