HomeSort by relevance Sort by last modified time
    Searched defs:MASK (Results 1 - 25 of 47) sorted by null

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_modfl.c 46 #define MASK ((uint64_t)-1)
48 #define MASK ((uint32_t)-1)
51 #define GETFRAC(bits, n) ((bits) & ~(MASK << (n)))
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
prm2bits.cpp 73 #define MASK 0x0001
139 bit = value & MASK;
191 *(pt_bitstream--) = value & MASK;
  /external/chromium_org/third_party/skia/third_party/lua/src/
lctype.h 46 #define MASK(B) (1 << (B))
57 #define lislalpha(c) testprop(c, MASK(ALPHABIT))
58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT)))
59 #define lisdigit(c) testprop(c, MASK(DIGITBIT))
60 #define lisspace(c) testprop(c, MASK(SPACEBIT))
61 #define lisprint(c) testprop(c, MASK(PRINTBIT))
62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))
  /external/smack/src/com/kenai/jbosh/
RequestIDSequence.java 53 * Max bits mask.
55 private static final long MASK = ~(Long.MAX_VALUE << MAX_BITS);
112 result = RAND.nextLong() & MASK;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 45 MASK EQU 0x80808080 ;// Mask is used to implement (a+b+1)/2
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.s 45 MASK EQU 0x80808080 ;// Mask is used to implement (a+b+1)/2
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h 69 #define MASK PyLong_MASK
82 0 <= ob_digit[i] <= MASK.
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
longintrepr.h 69 #define MASK PyLong_MASK
82 0 <= ob_digit[i] <= MASK.
  /external/lzma/C/
Ppmd7Dec.c 77 #define MASK(sym) ((signed char *)charMask)[sym]
116 MASK(s->Symbol) = 0;
118 do { MASK((--s)->Symbol) = 0; } while (--i);
134 MASK(Ppmd7Context_OneState(p->MinContext)->Symbol) = 0;
157 int k = (int)(MASK(s->Symbol));
185 do { MASK(ps[--i]->Symbol) = 0; } while (i != 0);
Ppmd7Enc.c 75 #define MASK(sym) ((signed char *)charMask)[sym]
110 MASK(s->Symbol) = 0;
112 do { MASK((--s)->Symbol) = 0; } while (--i);
133 MASK(s->Symbol) = 0;
166 sum += (s->Freq & (int)(MASK(s->Symbol)));
176 sum += (s->Freq & (int)(MASK(cur)));
177 MASK(cur) = 0;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1ImplTest.java 202 final int MASK = 0x0000000F;
210 s = t & MASK;
214 tmp = bufW[(s + 13) & MASK] ^ bufW[(s + 8) & MASK] ^ bufW[(s + 2) & MASK] ^ bufW[s];
  /external/pixman/pixman/
pixman-combine32.h 2 #define MASK 0xff
18 #define RED_8(x) (((x) >> R_SHIFT) & MASK)
19 #define GREEN_8(x) (((x) >> G_SHIFT) & MASK)
20 #define BLUE_8(x) ((x) & MASK)
71 (((uint16_t) (a) * MASK + ((b) / 2)) / (b))
118 t = (x & MASK) * (a & MASK); \
119 t |= (x & R_MASK) * ((a >> R_SHIFT) & MASK); \
pixman-arm-neon-asm.h 29 * Any combinations of source, destination and mask images with 8bpp,
59 * Offset in stack where mask and source pointer/stride can be accessed
60 * from 'init' macro. This is useful for doing special handling for solid mask.
445 pld [MASK, #(PREFETCH_DISTANCE_SIMPLE * mask_bpp / 8)]
452 (mask_basereg - pixblock_size * mask_bpp / 64), MASK
475 pixld (lowbit * 8 / dst_w_bpp), mask_bpp, mask_basereg, MASK
537 pixld chunk_size, mask_bpp, mask_basereg, MASK
591 add MASK, MASK, MASK_STRIDE, lsl #mask_bpp_shift
600 sub MASK, MASK, W, lsl #mask_bpp_shif
    [all...]
pixman-arm-simd-asm.h 81 * Offset into stack where mask and source pointer/stride can be accessed.
270 * "bpp" - number of bits per pixel in the channel (source, mask or
274 * "base" - base address register of channel to preload (SRC, MASK or DST)
412 preload_middle mask_bpp, MASK, 1
415 preload_middle mask_bpp, MASK, 0
451 preload_trailing mask_bpp, mask_bpp_shift, MASK
484 tst MASK, #3
531 add MASK, MASK, STRIDE_M
614 .error "requested mask bpp (mask_bpp) is not supported
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkFilterProc.cpp 51 #define MASK 0xFF00FF
52 #define LO_PAIR(x) ((x) & MASK)
53 #define HI_PAIR(x) (((x) >> 8) & MASK)
SkScan_AntiPath.cpp 19 #define MASK (SCALE - 1)
23 - SUPERMASK, which records a large mask-bitmap
34 they were before the fix that unified the output of the RLE and MASK
211 int fb = start & MASK;
212 int fe = stop & MASK;
229 (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT),
233 fRuns.assertValid(y & MASK, (1 << (8 - SHIFT)));
281 while ((y & MASK)) {
314 int xleft = x & MASK;
319 int xrite = (x + width) & MASK;
    [all...]
  /external/skia/src/core/
SkFilterProc.cpp 51 #define MASK 0xFF00FF
52 #define LO_PAIR(x) ((x) & MASK)
53 #define HI_PAIR(x) (((x) >> 8) & MASK)
SkScan_AntiPath.cpp 19 #define MASK (SCALE - 1)
23 - SUPERMASK, which records a large mask-bitmap
34 they were before the fix that unified the output of the RLE and MASK
211 int fb = start & MASK;
212 int fe = stop & MASK;
229 (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT),
233 fRuns.assertValid(y & MASK, (1 << (8 - SHIFT)));
281 while ((y & MASK)) {
314 int xleft = x & MASK;
319 int xrite = (x + width) & MASK;
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1PRNG_SecureRandomImpl.java 62 // MASK - mask to select counter's bytes after shift to right
72 private static final int[] MASK = { 0xFFFFFFFF, 0x00FFFFFF, 0x0000FFFF,
376 seed[lastWord] |= (int) ((counter >>> RIGHT1[n]) & MASK[n]);
  /ndk/sources/android/support/src/wcstox/
floatscan.c 50 #define MASK (KMAX-1)
206 a = (a+1 & MASK);
218 for (k=(z-1 & MASK); ; k=(k-1 & MASK)) {
227 if (k==(z-1 & MASK) && k!=a && !x[k]) z = k;
232 a = (a-1 & MASK);
234 z = (z-1 & MASK);
235 x[z-1 & MASK] |= x[z];
246 k = (a+i & MASK);
251 if (x[a+i & MASK] > th[i]) break
    [all...]
  /external/libcap-ng/libcap-ng-0.7/src/
cap-ng.c 57 #define MASK(x) (1U << (x))
355 *data |= MASK(capability);
357 *data &= ~(MASK(capability));
364 m.data.v3[idx].effective |= MASK(capability);
366 m.data.v3[idx].effective &= ~(MASK(capability));
373 m.data.v3[idx].permitted |= MASK(capability);
375 m.data.v3[idx].permitted &= ~(MASK(capability));
382 m.data.v3[idx].inheritable |= MASK(capability);
384 m.data.v3[idx].inheritable &= ~(MASK(capability));
392 m.bounds[idx] |= MASK(capability)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
afilter.h 45 typedef ULONG MASK, *PMASK;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_long.py 21 MASK = BASE - 1
119 answer = (answer << SHIFT) | random.randint(0, MASK)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_long.py 21 MASK = BASE - 1
119 answer = (answer << SHIFT) | random.randint(0, MASK)
    [all...]
  /external/chromium_org/v8/tools/
ll_prof.py 212 MASK = ~(SIZE - 1)
216 return address & CodePage.MASK
    [all...]

Completed in 2158 milliseconds

1 2