Searched defs:src1p (Results 1 - 4 of 4) sorted by relevance
/external/bison/lib/ |
H A D | 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 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...] |
H A D | 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 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...] |
/external/kernel-headers/original/linux/ |
H A D | cpumask.h | 125 static inline void __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, argument 128 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); 132 static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, argument 135 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); 139 static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, argument 142 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); 147 static inline void __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, argument 150 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); 161 static inline int __cpus_equal(const cpumask_t *src1p, argument 164 return bitmap_equal(src1p 168 __cpus_intersects(const cpumask_t *src1p, const cpumask_t *src2p, int nbits) argument 175 __cpus_subset(const cpumask_t *src1p, const cpumask_t *src2p, int nbits) argument [all...] |
H A D | nodemask.h | 127 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, argument 130 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); 135 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, argument 138 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); 143 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, argument 146 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); 151 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, argument 154 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); 167 static inline int __nodes_equal(const nodemask_t *src1p, argument 170 return bitmap_equal(src1p 175 __nodes_intersects(const nodemask_t *src1p, const nodemask_t *src2p, int nbits) argument 183 __nodes_subset(const nodemask_t *src1p, const nodemask_t *src2p, int nbits) argument [all...] |
Completed in 60 milliseconds