Searched refs:bits (Results 201 - 225 of 1594) sorted by relevance

1234567891011>>

/external/zlib/src/
H A Dinfback.c92 unsigned sym, bits; local
103 bits = 9;
104 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
110 bits = 5;
111 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
135 bits = state->bits; \
146 state->bits = bits; \
153 bits
262 unsigned bits; /* bits in bit buffer */ local
[all...]
/external/pixman/test/
H A Dstress-test.c106 if (image->type == BITS && image->bits.free_me != image->bits.bits)
108 uint32_t *bits; local
110 if (image->bits.bits != (void *)0x01)
112 bits = image->bits.bits;
114 if (image->bits
244 uint32_t *bits; local
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3bitset.c65 if (bitset->blist.bits != NULL)
67 ANTLR3_FREE(bitset->blist.bits);
68 bitset->blist.bits = NULL;
98 // No we need to allocate the memory for the number of bits asked for
103 bitset->blist.bits = (pANTLR3_BITWORD) ANTLR3_MALLOC((size_t)(numelements * sizeof(ANTLR3_BITWORD)));
104 memset(bitset->blist.bits, 0, (size_t)(numelements * sizeof(ANTLR3_BITWORD)));
107 if (bitset->blist.bits == NULL)
168 bitset->blist.bits = (pANTLR3_BITWORD)ANTLR3_MALLOC((size_t)(numElements * sizeof(ANTLR3_BITWORD)));
170 if (bitset->blist.bits == NULL)
176 ANTLR3_MEMCPY(bitset->blist.bits, blis
[all...]
/external/aac/libMpegTPEnc/src/
H A Dtpenc_asc.h133 * \return the amount of bits required for the PCE including the given bit offset.
138 int bits
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_value.cc15 : bits(input_bits), blob_info(input_blob_info) {
/external/chromium_org/printing/
H A Dimage_win.cc69 unsigned char* bits = NULL; local
72 reinterpret_cast<void**>(&bits), NULL, 0));
84 data_.assign(bits, bits + bytes);
/external/chromium_org/third_party/libva/va/
H A Dva_enc_mpeg2.h97 * A 14bits unsigned inter, the lower 12bits
99 * 2bits is \c horizontal_size_extension
105 * A 14bits unsigned inter, the lower 12bits
106 * is vertical_size_value, and the upper 2bits is
150 } bits; member in union:_VAEncSequenceParameterBufferMPEG2::__anon12938
165 } bits; member in union:_VAEncSequenceParameterBufferMPEG2::__anon12940
241 } bits; member in union:_VAEncPictureParameterBufferMPEG2::__anon12942
261 } bits; member in union:_VAEncPictureParameterBufferMPEG2::__anon12944
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_write_bit_buffer.h29 void vp9_wb_write_literal(struct vp9_write_bit_buffer *wb, int data, int bits);
/external/chromium_org/third_party/opus/src/celt/
H A Dcwrs.h42 void get_required_bits(opus_int16 *bits, int N, int K, int frac);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dmd5.h11 32 bits, merely 32 bits or more. Choosing a data type which is 32
12 bits instead of 64 is not important; speed is considerably more
18 unsigned long bits[2]; member in struct:yasm_md5_context
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Dopersize.asm0 [bits 32]
10 [bits 16]
H A Dpushnosize.asm0 [bits 16]
17 [bits 32]
33 [bits 64]
34 push 0 ; same as bits 32 output
35 push byte 0 ; 6A 00; 64 bits pushed onto stack
37 push dword 0 ; 6A 00 - optimized to byte; note 64 bits pushed onto stack
38 push strict byte 0 ; 6A 00; 64 bits pushed onto stack
40 push strict dword 0 ; 68 00000000; note 64 bits pushed onto stack
H A Dsse-prefix.asm0 [bits 32]
25 [bits 64]
H A Dsse5-basic.asm0 [bits 32]
6 [bits 64]
/external/chromium_org/v8/src/base/
H A Dbits.cc5 #include "src/base/bits.h"
10 namespace bits { namespace in namespace:v8::base
23 } // namespace bits
/external/deqp/framework/opengl/
H A DgluFboRenderContext.cpp40 const tcu::IVec4 bits = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(colorFormat)); local
41 return tcu::PixelFormat(bits[0], bits[1], bits[2], bits[3]);
46 const tcu::IVec4 bits = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(depthStencilFormat)); local
47 *depthBits = bits[0];
48 *stencilBits = bits[3];
68 const tcu::IVec4 bits = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(format)); local
71 config.redBits != bits[
107 const tcu::IVec4 bits = tcu::getTextureFormatBitDepth(glu::mapGLInternalFormat(format)); local
[all...]
/external/elfutils/0.153/backends/
H A Ds390_regs.c57 int *bits, int *type)
67 *bits = ebl->class == ELFCLASS64 ? 64 : 32;
78 *bits = 64;
85 *bits = 32;
54 s390_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_register_names.c58 int bits, int type);
82 int bits = -1; local
85 &prefix, &setname, &bits, &type);
95 result = (*func) (arg, regno, setname, prefix, name, bits, type);
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashFunctionsTest.java32 assertTrue(hasher.bits() >= i);
49 assertEquals(hashFunction.bits(), hashcode1.bits());
50 assertEquals(hashFunction.bits(), hashcode1.asBytes().length * 8);
/external/libopus/celt/
H A Dcwrs.h42 void get_required_bits(opus_int16 *bits, int N, int K, int frac);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_write_bit_buffer.h31 void vp9_wb_write_literal(struct vp9_write_bit_buffer *wb, int data, int bits);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpmu-bison.h58 DECLARE_BITMAP(bits, PERF_PMU_FORMAT_BITS);
/external/pixman/demos/
H A Dclip-in.c19 uint32_t *bits = malloc (WIDTH * HEIGHT * 4); local
28 pixman_image_t *dest_img = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, bits, 4 * WIDTH);
30 memset (bits, 0xff, WIDTH * HEIGHT * 4);
47 free (bits);
H A Dtrap-test.c18 uint32_t *bits = malloc (WIDTH * HEIGHT * 4); local
22 memset (bits, 0xff, WIDTH * HEIGHT * 4);
34 dest_img = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, bits, WIDTH * 4);
46 free (bits);
H A Dtri-test.c25 uint32_t *bits = malloc (WIDTH * HEIGHT * 4); local
29 bits[i] = (i / HEIGHT) * 0x01010000;
32 dest_img = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, bits, WIDTH * 4);
45 free (bits);

Completed in 2090 milliseconds

1234567891011>>