HomeSort by relevance Sort by last modified time
    Searched refs:GET_BITS (Results 1 - 17 of 17) sorted by null

  /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/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...]
brw_defines.h 44 #define GET_BITS(data, high, low) ((data & INTEL_MASK((high), (low))) >> (low))
    [all...]
  /external/libjpeg-turbo/
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.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); \
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/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);
  /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/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...]
  /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)
  /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...]
  /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...]
ihevc_intra_pred_filters_sse42_intr.c 75 #define GET_BITS(y,x) ((y) & (1 << x)) && (1 << x)
    [all...]

Completed in 1309 milliseconds