Searched refs:bits (Results 151 - 175 of 1594) sorted by relevance

1234567891011>>

/external/chromium_org/v8/src/arm64/
H A Dutils-arm64.h28 uint32_t bits = 0; local
29 memcpy(&bits, &value, 4);
30 return bits;
35 uint64_t bits = 0; local
36 memcpy(&bits, &value, 8);
37 return bits;
41 static inline float rawbits_to_float(uint32_t bits) { argument
43 memcpy(&value, &bits, 4);
48 static inline double rawbits_to_double(uint64_t bits) { argument
50 memcpy(&value, &bits,
[all...]
/external/deqp/framework/egl/
H A DegluConfigFilter.cpp69 FilterList ConfigColorBits::operator== (tcu::RGBA bits) const
72 list << (ConfigRedSize() == bits.getRed())
73 << (ConfigGreenSize() == bits.getGreen())
74 << (ConfigBlueSize() == bits.getBlue())
75 << (ConfigAlphaSize() == bits.getAlpha());
79 FilterList ConfigColorBits::operator>= (tcu::RGBA bits) const
82 list << (ConfigRedSize() >= bits.getRed())
83 << (ConfigGreenSize() >= bits.getGreen())
84 << (ConfigBlueSize() >= bits.getBlue())
85 << (ConfigAlphaSize() >= bits
[all...]
/external/jemalloc/src/
H A Drtree.c5 rtree_new(unsigned bits, rtree_alloc_t *alloc, rtree_dalloc_t *dalloc) argument
10 assert(bits > 0 && bits <= (sizeof(uintptr_t) << 3));
14 if (bits > bits_in_leaf) {
15 height = 1 + (bits - bits_in_leaf) / bits_per_level;
16 if ((height-1) * bits_per_level + bits_in_leaf != bits)
21 assert((height-1) * bits_per_level + bits_in_leaf >= bits);
39 if ((height-1) * bits_per_level + bits_in_leaf > bits) {
40 ret->level2bits[0] = (bits - bits_in_leaf) %
48 ret->level2bits[0] = bits;
[all...]
/external/flac/libFLAC/
H A Dbitwriter.c57 /* WATCHOUT: there are a few places where the code will not work unless bwword is >= 32 bits wide */
84 #define FLAC__TOTAL_BITS(bw) (FLAC__WORDS_TO_BITS((bw)->words) + (bw)->bits)
104 bwword accum; /* accumulator; bits are right-justified; when full, accum is appended to buffer */
107 unsigned bits; /* # of used bits in accum */ member in struct:FLAC__BitWriter
128 /* calculate total words needed to store 'bits_to_add' additional bits */
129 new_capacity = bw->words + ((bw->bits + bits_to_add + FLAC__BITS_PER_WORD - 1) / FLAC__BITS_PER_WORD);
143 FLAC__ASSERT(new_capacity >= bw->words + ((bw->bits + bits_to_add + FLAC__BITS_PER_WORD - 1) / FLAC__BITS_PER_WORD));
185 bw->words = bw->bits = 0;
202 bw->words = bw->bits
302 FLAC__bitwriter_write_zeroes(FLAC__BitWriter *bw, unsigned bits) argument
340 FLAC__bitwriter_write_raw_uint32(FLAC__BitWriter *bw, FLAC__uint32 val, unsigned bits) argument
379 FLAC__bitwriter_write_raw_int32(FLAC__BitWriter *bw, FLAC__int32 val, unsigned bits) argument
388 FLAC__bitwriter_write_raw_uint64(FLAC__BitWriter *bw, FLAC__uint64 val, unsigned bits) argument
[all...]
/external/pixman/test/
H A Dalphamap.c32 uint32_t *bits = pixman_image_get_data (image); local
34 fence_free (bits);
40 uint32_t *bits; local
44 bits = (uint32_t *)make_random_bytes (WIDTH * HEIGHT * bpp);
46 image = pixman_image_create_bits (format, WIDTH, HEIGHT, bits, WIDTH * bpp);
48 if (image && bits)
57 uint8_t *bits; local
76 bits = (uint8_t *)image->bits.bits;
108 uint8_t *bits; local
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1199401.js31 var ranges = [{min: -1073741824, max: 1073741823, bits: 31},
32 {min: -2147483648, max: 2147483647, bits: 32}];
38 var bits = range.bits;
39 var name = bits + "-bit";
68 var half_min_smi = -(1 << (bits >> 1));
69 var half_max_smi = 1 << ((bits - 1) >> 1);
/external/openssl/crypto/asn1/
H A Da_bitstr.c68 int ret,j,bits,len; local
79 bits=(int)a->flags&0x07;
88 if (j & 0x01) bits=0;
89 else if (j & 0x02) bits=1;
90 else if (j & 0x04) bits=2;
91 else if (j & 0x08) bits=3;
92 else if (j & 0x10) bits=4;
93 else if (j & 0x20) bits=5;
94 else if (j & 0x40) bits=6;
95 else if (j & 0x80) bits
[all...]
/external/pixman/pixman/
H A Dpixman-noop.c43 iter->buffer += iter->image->bits.rowstride;
51 iter->buffer += iter->image->bits.rowstride;
92 color = image->bits.fetch_pixel_32 (&image->bits, 0, 0);
106 color = image->bits.fetch_pixel_float (&image->bits, 0, 0);
118 iter->x + iter->width <= image->bits.width &&
119 iter->y + iter->height <= image->bits.height)
122 image->bits.bits
[all...]
/external/elfutils/0.153/backends/
H A Dppc_corenote.c48 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
69 { .offset = 0, .regno = 32, .count = 32, .bits = 64 }, /* f0-f31 */
70 { .offset = 32 * 8 + 4, .regno = 65, .count = 1, .bits = 32 } /* fpscr */
77 { .offset = 0, .regno = 1124, .count = 32, .bits = 128 },
79 { .offset = 32 * 16, .regno = 67, .count = 1, .bits = 32, .pad = 12 },
81 { .offset = 33 * 16, .regno = 356, .count = 1, .bits = 32, .pad = 12 }
87 { .offset = 0, .regno = ???, .count = 32, .bits = 32 },
89 { .offset = 32 * 4, .regno = ???, .count = 1, .bits = 64 }, */
91 { .offset = 34 * 4, .regno = 612, .count = 1, .bits = 32 }
H A Dx86_64_regs.c41 int *bits, int *type)
50 *bits = 64;
60 *bits = 128;
66 *bits = 80;
73 *bits = 16;
154 *bits = 64;
169 *bits = 16;
38 x86_64_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
H A Dia64_regs.c40 int *bits, int *type)
50 *bits = 64;
86 *bits = 128;
107 *bits = 128;
211 *bits = 1;
224 *bits = 1;
238 *bits = 1;
248 *bits = 1;
259 *bits = 1;
37 ia64_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
H A Darm_regs.c40 int *bits, int *type)
49 *bits = 32;
81 *bits = 96;
94 *bits = 64;
103 *bits = 64;
37 arm_register_info(Ebl *ebl __attribute__ ((unused)), int regno, char *name, size_t namelen, const char **prefix, const char **setname, int *bits, int *type) argument
H A Dsh_corenote.c43 { .offset = at * 4, .regno = dwreg, .count = n, .bits = 32 }
78 { .offset = 0, .regno = 25, .count = 16, .bits = 32 }, /* fr0-fr15 */
79 { .offset = 16, .regno = 87, .count = 16, .bits = 32 }, /* xf0-xf15 */
80 { .offset = 32, .regno = 24, .count = 1, .bits = 32 }, /* fpscr */
81 { .offset = 33, .regno = 23, .count = 1, .bits = 32 } /* fpul */
H A Darm_corenote.c42 { .offset = 0, .regno = 0, .count = 16, .bits = 32 }, /* r0..r15 */
43 { .offset = 16 * 4, .regno = 128, .count = 1, .bits = 32 }, /* cpsr */
56 { .offset = 0, .regno = 96, .count = 8, .bits = 96 }, /* f0..f7 */
/external/jemalloc/include/jemalloc/internal/
H A Drtree.h39 rtree_t *rtree_new(unsigned bits, rtree_alloc_t *alloc, rtree_dalloc_t *dalloc);
59 /* The least significant bits of the key are ignored. */ \
65 unsigned i, lshift, height, bits; \
71 i++, lshift += bits, node = child) { \
72 bits = rtree->level2bits[i]; \
74 3)) - bits); \
86 bits = rtree->level2bits[i]; \
88 bits); \
134 unsigned i, lshift, height, bits; local
140 i++, lshift += bits, nod
[all...]
/external/qemu/include/qemu/
H A Dbitmap.h35 * bitmap_empty(src, nbits) Are all bits zero in *src?
36 * bitmap_full(src, nbits) Are all bits set in *src?
64 #define DECLARE_BITMAP(name,bits) \
65 unsigned long name[BITS_TO_LONGS(bits)]
70 int slow_bitmap_empty(const unsigned long *bitmap, int bits);
71 int slow_bitmap_full(const unsigned long *bitmap, int bits);
73 const unsigned long *bitmap2, int bits);
75 int bits);
77 const unsigned long *src, int shift, int bits);
79 const unsigned long *src, int shift, int bits);
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dbit_cost.h95 // account for rle extra bits
100 int bits = 18 + 2 * max_depth; // huffman tree of huffman tree cost local
102 bits += histogram[i] * cost[i]; // huffman tree bit cost
105 return bits;
127 int bits = 0; local
129 bits += histogram.data_[i] * depth[i];
132 bits += 28;
134 bits += 37;
136 bits += HuffmanBitCost(depth, kSize);
138 return bits;
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dspeex.c73 int speex_encode_native(void *state, spx_word16_t *in, SpeexBits *bits) argument
75 return (*((SpeexMode**)state))->enc(state, in, bits);
78 int speex_decode_native(void *state, SpeexBits *bits, spx_word16_t *out) argument
80 return (*((SpeexMode**)state))->dec(state, bits, out);
88 EXPORT int speex_encode(void *state, float *in, SpeexBits *bits) argument
103 return (*((SpeexMode**)state))->enc(state, short_in, bits);
107 EXPORT int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) argument
111 return (mode)->enc(state, in, bits);
115 EXPORT int speex_decode(void *state, SpeexBits *bits, float *out) argument
121 ret = (*((SpeexMode**)state))->dec(state, bits, short_ou
128 speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) argument
136 speex_encode(void *state, float *in, SpeexBits *bits) argument
141 speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) argument
152 speex_decode(void *state, SpeexBits *bits, float *out) argument
157 speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) argument
[all...]
/external/openssl/crypto/bn/
H A Dbn_mpi.c65 int bits; local
70 bits=BN_num_bits(a);
71 num=(bits+7)/8;
72 if (bits > 0)
74 ext=((bits & 0x07) == 0);
/external/speex/libspeex/
H A Dspeex.c73 int speex_encode_native(void *state, spx_word16_t *in, SpeexBits *bits) argument
75 return (*((SpeexMode**)state))->enc(state, in, bits);
78 int speex_decode_native(void *state, SpeexBits *bits, spx_word16_t *out) argument
80 return (*((SpeexMode**)state))->dec(state, bits, out);
88 EXPORT int speex_encode(void *state, float *in, SpeexBits *bits) argument
103 return (*((SpeexMode**)state))->enc(state, short_in, bits);
107 EXPORT int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) argument
111 return (mode)->enc(state, in, bits);
115 EXPORT int speex_decode(void *state, SpeexBits *bits, float *out) argument
121 ret = (*((SpeexMode**)state))->dec(state, bits, short_ou
128 speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) argument
136 speex_encode(void *state, float *in, SpeexBits *bits) argument
141 speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits) argument
152 speex_decode(void *state, SpeexBits *bits, float *out) argument
157 speex_decode_int(void *state, SpeexBits *bits, spx_int16_t *out) argument
[all...]
/external/chromium_org/chrome/test/nacl_test_injection/
H A Dbuildbot_chrome_nacl_stage.py121 if options.bits == 64:
122 bits = 64
123 elif options.bits == 32:
124 bits = 32
127 bits = 64
129 bits = 32
143 if options.bits == 64:
144 bits = 64
145 elif options.bits == 32:
146 bits
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_node.h47 void SetStreamFlags(uint32_t bits);
48 void ClearStreamFlags(uint32_t bits);
50 bool TestStreamFlags(uint32_t bits);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DBitVector.h40 // of bits.
42 // - The bitvector remembers the bound of how many bits can be stored, but this
116 return !!(bits()[bit / bitsInPointer()] & (static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1))));
122 bits()[bit / bitsInPointer()] |= (static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1)));
128 bits()[bit / bitsInPointer()] &= ~(static_cast<uintptr_t>(1) << (bit & (bitsInPointer() - 1)));
191 static uintptr_t makeInlineBits(uintptr_t bits)
193 ASSERT(!(bits & (static_cast<uintptr_t>(1) << maxInlineBits())));
194 return bits | (static_cast<uintptr_t>(1) << maxInlineBits());
201 uintptr_t* bits() { return bitwise_cast<uintptr_t*>(this + 1); }
202 const uintptr_t* bits() cons
[all...]
/external/chromium_org/third_party/angle/tests/angle_tests/
H A DANGLETest.cpp125 void ANGLETest::setConfigRedBits(int bits) argument
127 mEGLWindow->setConfigRedBits(bits);
130 void ANGLETest::setConfigGreenBits(int bits) argument
132 mEGLWindow->setConfigGreenBits(bits);
135 void ANGLETest::setConfigBlueBits(int bits) argument
137 mEGLWindow->setConfigBlueBits(bits);
140 void ANGLETest::setConfigAlphaBits(int bits) argument
142 mEGLWindow->setConfigAlphaBits(bits);
145 void ANGLETest::setConfigDepthBits(int bits) argument
147 mEGLWindow->setConfigDepthBits(bits);
150 setConfigStencilBits(int bits) argument
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_report_build_id.c55 const unsigned char *bits, size_t len,
68 && !memcmp (bits, mod->build_id_bits, len))
90 memcpy (copy, bits, len);
54 dwfl_module_report_build_id(Dwfl_Module *mod, const unsigned char *bits, size_t len, GElf_Addr vaddr) argument

Completed in 8082 milliseconds

1234567891011>>