Searched refs:MASK (Results 1 - 12 of 12) sorted by relevance

/external/openssh/openbsd-compat/
H A Dpwcache.c44 #define MASK (NCACHE - 1) /* bits to store with */ macro
59 cp = c_uid + (uid & MASK);
94 cp = c_gid + (gid & MASK);
/external/skia/src/gpu/
H A DGrStencil.h355 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK) \
357 (FAIL_OP),(FAIL_OP), (FUNC), (FUNC), (MASK), (MASK), (REF), (REF), \
376 PASS_OP, FAIL_OP, FUNC, MASK, REF, WRITE_MASK) \
378 (FAIL_OP), (FUNC), (FUNC), (MASK), (MASK), (REF), (REF), (WRITE_MASK), \
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
H A DSHA1ImplTest.java204 final int MASK = 0x0000000F;
212 s = t & MASK;
216 tmp = bufW[ (s+13)&MASK ] ^ bufW[(s+8)&MASK ] ^ bufW[ (s+2)&MASK ] ^ bufW[s];
/external/skia/src/core/
H A DSkScan_AntiPath.cpp19 #define MASK (SCALE - 1) macro
218 int fb = start & MASK;
219 int fe = stop & MASK;
236 (1 << (8 - SHIFT)) - (((y & MASK) + 1) >> SHIFT),
240 fRuns.assertValid(y & MASK, (1 << (8 - SHIFT)));
286 while ((y & MASK)) {
319 int xleft = x & MASK;
324 int xrite = (x + width) & MASK;
371 SkASSERT(height <= MASK);
545 int fb = start & MASK;
[all...]
H A DSkFilterProc.cpp51 #define MASK 0xFF00FF macro
52 #define LO_PAIR(x) ((x) & MASK)
53 #define HI_PAIR(x) (((x) >> 8) & MASK)
/external/qemu/target-arm/
H A Diwmmxt_helper.c289 #define CMP(SHR, TYPE, OPER, MASK) ((((TYPE) ((a >> SHR) & MASK) OPER \
290 (TYPE) ((b >> SHR) & MASK)) ? (uint64_t) MASK : 0) << SHR)
295 #define CMP(SHR, TYPE, OPER, MASK) ((((TYPE) ((a >> SHR) & MASK) OPER \
296 (TYPE) ((b >> SHR) & MASK)) ? a : b) & ((uint64_t) MASK << SHR))
302 #define CMP(SHR, TYPE, OPER, MASK) ((uint64_t) (((TYPE) ((a >> SHR) & MASK) \
[all...]
/external/mdnsresponder/mDNSShared/
H A DCommonServices.h671 @abstract Inserts BITS (both 0 and 1 bits) into X, controlled by MASK and SHIFT, and returns the result.
675 MASK is the bitmask of the bits in the final position.
676 SHIFT is the number of bits to shift left for 1 to reach the first bit position of MASK.
683 #define InsertBits( X, BITS, MASK, SHIFT ) ( ( ( X ) & ~( MASK ) ) | ( ( ( BITS ) << ( SHIFT ) ) & ( MASK ) ) )
688 @abstract Extracts bits from X, controlled by MASK and SHIFT, and returns the result.
692 MASK is the bitmask of the bits in the final position.
693 SHIFT is the number of bits to shift right to right justify MASK.
700 #define ExtractBits( X, MASK, SHIF
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/v8/tools/
H A Dll_prof.py196 MASK = ~(SIZE - 1) variable in class:CodePage
200 return address & CodePage.MASK
/external/valgrind/main/memcheck/
H A Dmc_main.c3952 #define MASK(_szInBytes) \ macro
3955 /* MASK only exists so as to define this macro. */
3957 ((_a) & MASK((_szInBits>>3)))
3966 MASK(1) = ~ ( (0x10000 - 1) | 0xFFFF0000 )
3971 MASK(2) = ~ ( (0x10000 - 2) | 0xFFFF0000 )
3976 MASK(4) = ~ ( (0x10000 - 4) | 0xFFFF0000 )
3981 MASK(8) = ~ ( (0x10000 - 8) | 0xFFFF0000 )
3986 Hence in the 32-bit case, "a & MASK(1/2/4/8)" is a nonzero value
3988 the 1-byte alignment case, it is always a zero value, since MASK(1)
4000 MASK(
[all...]

Completed in 199 milliseconds