/external/bison/lib/ |
vbitset.c | 505 bitset_word *src1p; local 518 src1p = VBITSET_WORDS (src1); 522 *dstp++ = *src1p++ & *src2p++; 533 bitset_word *src1p; local 546 src1p = VBITSET_WORDS (src1); 551 bitset_word tmp = *src1p++ & *src2p++; 562 src1p = src2p; 585 bitset_word *src1p; local 598 src1p = VBITSET_WORDS (src1); 602 *dstp++ = *src1p++ & ~(*src2p++) 626 bitset_word *src1p; local 690 bitset_word *src1p; local 727 bitset_word *src1p; local 781 bitset_word *src1p; local 818 bitset_word *src1p; local 875 bitset_word *src1p; local 906 bitset_word *src1p; local 942 bitset_word *src1p; local 973 bitset_word *src1p; local 1009 bitset_word *src1p; local 1040 bitset_word *src1p; local [all...] |
abitset.c | 430 bitset_word *src1p = ABITSET_WORDS (src1); local 436 *dstp++ = *src1p++ & *src2p++; 445 bitset_word *src1p = ABITSET_WORDS (src1); local 452 bitset_word tmp = *src1p++ & *src2p++; 468 bitset_word *src1p = ABITSET_WORDS (src1); local 474 *dstp++ = *src1p++ & ~(*src2p++); 483 bitset_word *src1p = ABITSET_WORDS (src1); local 490 bitset_word tmp = *src1p++ & ~(*src2p++); 506 bitset_word *src1p = ABITSET_WORDS (src1); local 512 *dstp++ = *src1p++ | *src2p++ 521 bitset_word *src1p = ABITSET_WORDS (src1); local 544 bitset_word *src1p = ABITSET_WORDS (src1); local 559 bitset_word *src1p = ABITSET_WORDS (src1); local 582 bitset_word *src1p = ABITSET_WORDS (src1); local 598 bitset_word *src1p = ABITSET_WORDS (src1); local 622 bitset_word *src1p = ABITSET_WORDS (src1); local 638 bitset_word *src1p = ABITSET_WORDS (src1); local 662 bitset_word *src1p = ABITSET_WORDS (src1); local 678 bitset_word *src1p = ABITSET_WORDS (src1); local [all...] |
/external/kernel-headers/original/linux/ |
cpumask.h | 125 static inline void __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, 128 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); 132 static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, 135 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); 139 static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, 142 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); 147 static inline void __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, 150 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); 161 static inline int __cpus_equal(const cpumask_t *src1p, 164 return bitmap_equal(src1p->bits, src2p->bits, nbits) [all...] |
nodemask.h | 127 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, 130 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); 135 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, 138 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); 143 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, 146 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); 151 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, 154 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); 167 static inline int __nodes_equal(const nodemask_t *src1p, 170 return bitmap_equal(src1p->bits, src2p->bits, nbits) [all...] |