/external/linux-kselftest/tools/testing/selftests/x86/ |
mpx-hw.h | 74 static inline unsigned long GET_BITS(unsigned long val, int bottombit, int topbit) 83 return GET_BITS((unsigned long)vaddr, MPX_BOUNDS_TABLE_BOTTOM_BIT, 89 return GET_BITS((unsigned long)vaddr, MPX_BOUNDS_DIR_BOTTOM_BIT,
|
/external/libhevc/common/arm/ |
ihevc_intra_ref_substitution_a9q.c | 64 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) 116 WORD32 get_bits; local 304 get_bits = GET_BIT(nbr_flags_temp, 8); 307 if(!get_bits) 315 get_bits = GET_BIT(nbr_flags_temp, frwd_nbr_flag); 316 if(!get_bits) 371 get_bits = GET_BIT(nbr_flags, 16); 373 if(!get_bits) 381 get_bits = GET_BIT(nbr_flags, frwd_nbr_flag); 382 if(!get_bits) 413 WORD32 get_bits; local [all...] |
ihevc_intra_pred_filters_neon_intr.c | 70 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) 131 WORD32 get_bits; local 341 get_bits = GET_BITS(nbr_flags_temp, 8); 344 if(!get_bits) 349 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); 350 if(!get_bits) 401 get_bits = GET_BITS(nbr_flags, 16) [all...] |
/external/toybox/toys/other/ |
bzcat.c | 110 static unsigned int get_bits(struct bunzip_data *bd, char bits_wanted) function 168 ii = get_bits(bd, 24); 169 jj = get_bits(bd, 24); 170 bw->headerCRC = get_bits(bd,32); 179 if (get_bits(bd,1)) return RETVAL_OBSOLETE_INPUT; 180 if ((bw->origPtr = get_bits(bd,24)) > bd->dbufSize) return RETVAL_DATA_ERROR; 187 hh = get_bits(bd, 16); 191 kk = get_bits(bd, 16); 199 bd->groupCount = get_bits(bd,3); 209 if (!(bd->nSelectors = get_bits(bd, 15))) return RETVAL_DATA_ERROR [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_state_dump.c | 272 float n = GET_BITS(data, integer_start, fractional_end); 287 bool msrt = GET_BITS(surf[4], 5, 3) > 0; 305 1 << (GET_BITS(surf[0], 17, 16) + 1), /* VALIGN */ 306 1 << (GET_BITS(surf[0], 15, 14) + 1), /* HALIGN */ 307 surface_tiling[GET_BITS(surf[0], 13, 12)]); 323 1 << GET_BITS(surf[4], 5, 3)); 339 GET_BITS(surf[7], 31, 31) ? 'R' : '-', 340 GET_BITS(surf[7], 30, 30) ? 'G' : '-', 341 GET_BITS(surf[7], 29, 29) ? 'B' : '-', 342 GET_BITS(surf[7], 28, 28) ? 'A' : '-') [all...] |
/external/libjpeg-turbo/ |
jdhuff.h | 63 * by the macros CHECK_BIT_BUFFER and GET_BITS. When there aren't enough 137 * before using GET_BITS, PEEK_BITS, or DROP_BITS. 142 * val = GET_BITS(n); 158 #define GET_BITS(nbits) \ 221 /* Don't use GET_BITS() here because we don't want to modify bits_left */ \ 225 s |= GET_BITS(1); \
|
jdphuff.c | 334 r = GET_BITS(s); 407 r = GET_BITS(s); 418 r = GET_BITS(r); 477 if (GET_BITS(1)) 551 if (GET_BITS(1)) 560 r = GET_BITS(r); 575 if (GET_BITS(1)) { 609 if (GET_BITS(1)) {
|
jdhuff.c | 460 code = GET_BITS(l); 468 code |= GET_BITS(1); 579 r = GET_BITS(s); 607 r = GET_BITS(s); 675 r = GET_BITS(s); 697 r = GET_BITS(s);
|
/external/libhevc/common/ |
ihevc_intra_pred_filters.c | 77 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) 216 WORD32 get_bits; local 457 get_bits = GET_BITS(nbr_flags_temp, 8); 460 if(!get_bits) 465 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); 466 if(!get_bits) 597 get_bits = GET_BITS(nbr_flags, 16) [all...] |
ihevc_chroma_intra_pred_filters.c | 147 WORD32 get_bits; local 335 get_bits = GET_BIT(nbr_flags_temp, 8); 338 if(!get_bits) 346 get_bits = GET_BIT(nbr_flags_temp, frwd_nbr_flag); 347 if(!get_bits) 402 get_bits = GET_BIT(nbr_flags, 16); 404 if(!get_bits) 412 get_bits = GET_BIT(nbr_flags, frwd_nbr_flag); 413 if(!get_bits) [all...] |
/external/bzip2/ |
decompress.c | 43 #define GET_BITS(lll,vvv,nnn) \ 68 GET_BITS(lll,uuu,8) 71 GET_BITS(lll,uuu,1) 89 GET_BITS(label1, zvec, zn); \ 206 GET_BITS(BZ_X_MAGIC_4, s->blockSize100k, 8) 251 GET_BITS(BZ_X_RANDBIT, s->blockRandomised, 1); 287 GET_BITS(BZ_X_SELECTOR_1, nGroups, 3); 289 GET_BITS(BZ_X_SELECTOR_2, nSelectors, 15); 318 GET_BITS(BZ_X_CODING_1, curr, 5);
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/ |
test-example.c | 38 unsigned val = get_bits (2u);
|
test-gen.c | 303 #define get_bits(N) get_bits_from (_get_bits_var (N)) macro
|
/external/dng_sdk/source/ |
dng_lossless_jpeg.cpp | 471 int32 get_bits (int32 nbits); 1570 inline int32 dng_lossless_decoder::get_bits (int32 nbits) function in class:dng_lossless_decoder [all...] |
/external/mesa3d/src/compiler/glsl/tests/ |
array_refcount_test.cpp | 63 const BITSET_WORD *get_bits(const ir_array_refcount_entry &entry) function in class:array_refcount_test 214 ASSERT_NE((void *)0, get_bits(entry)); 228 ASSERT_NE((void *)0, get_bits(entry)); 242 ASSERT_NE((void *)0, get_bits(entry)); 259 ASSERT_NE((void *)0, get_bits(entry));
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
bthdef.h | 600 #define GET_BITS(X,Y,Z) (((X)>>(Y))&Z) 601 #define GET_BIT(X,Y) GET_BITS(X,Y,0x1) 622 #define LMP_FLOW_CONTROL_LAG(X) GET_BITS(X, 20, 0x3)
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/ |
maverick.c | 68 unsigned val = get_bits (4u); 95 val = get_bits (9s); 127 int val = get_bits (7s);
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/mn10300/ |
am33-2.c | 58 unsigned val = get_bits (5u); 75 unsigned val = get_bits (3u); 92 unsigned val = 2 * get_bits (4u);
|
/external/v8/src/ |
deoptimizer.h | 29 uint32_t get_bits() const { return bit_pattern_; } function in class:v8::internal::Float32 44 uint64_t get_bits() const { return bit_pattern_; } function in class:v8::internal::Float64 [all...] |
/external/libhevc/common/x86/ |
ihevc_intra_pred_filters_ssse3_intr.c | 78 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x) 148 WORD32 get_bits; local 290 get_bits = GET_BITS(nbr_flags_temp, 8); 293 if(!get_bits) 298 get_bits = GET_BITS(nbr_flags_temp, frwd_nbr_flag); 299 if(!get_bits) 352 get_bits = GET_BITS(nbr_flags, 16) [all...] |
/external/valgrind/exp-sgcheck/tests/ |
hackedbz2.c | [all...] |
/external/valgrind/memcheck/tests/ |
origin5-bz2.c | [all...] |
varinfo6.c | [all...] |
/external/valgrind/perf/ |
bz2.c | [all...] |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/mp2/parser/ |
viddec_mpeg2_metadata.c | 190 /* The return value from get_bits() function is accumulated. If the return value is not 1, */ [all...] |