Home
last modified time | relevance | path

Searched refs:src1p (Results 1 – 4 of 4) sorted by relevance

/external/bison/lib/
Dvbitset.c505 bitset_word *src1p; in vbitset_and() local
518 src1p = VBITSET_WORDS (src1); in vbitset_and()
522 *dstp++ = *src1p++ & *src2p++; in vbitset_and()
533 bitset_word *src1p; in vbitset_and_cmp() local
546 src1p = VBITSET_WORDS (src1); in vbitset_and_cmp()
551 bitset_word tmp = *src1p++ & *src2p++; in vbitset_and_cmp()
562 src1p = src2p; in vbitset_and_cmp()
585 bitset_word *src1p; in vbitset_andn() local
598 src1p = VBITSET_WORDS (src1); in vbitset_andn()
602 *dstp++ = *src1p++ & ~(*src2p++); in vbitset_andn()
[all …]
Dabitset.c430 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and() local
436 *dstp++ = *src1p++ & *src2p++; in abitset_and()
445 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_cmp() local
452 bitset_word tmp = *src1p++ & *src2p++; in abitset_and_cmp()
468 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn() local
474 *dstp++ = *src1p++ & ~(*src2p++); in abitset_andn()
483 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_cmp() local
490 bitset_word tmp = *src1p++ & ~(*src2p++); in abitset_andn_cmp()
506 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or() local
512 *dstp++ = *src1p++ | *src2p++; in abitset_or()
[all …]
/external/kernel-headers/original/linux/
Dnodemask.h127 static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_and() argument
130 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
135 static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_or() argument
138 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
143 static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_xor() argument
146 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
151 static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, in __nodes_andnot() argument
154 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
167 static inline int __nodes_equal(const nodemask_t *src1p, in __nodes_equal() argument
170 return bitmap_equal(src1p->bits, src2p->bits, nbits); in __nodes_equal()
[all …]
Dcpumask.h125 static inline void __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, in __cpus_and() argument
128 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_and()
132 static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, in __cpus_or() argument
135 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_or()
139 static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, in __cpus_xor() argument
142 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_xor()
147 static inline void __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, in __cpus_andnot() argument
150 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_andnot()
161 static inline int __cpus_equal(const cpumask_t *src1p, in __cpus_equal() argument
164 return bitmap_equal(src1p->bits, src2p->bits, nbits); in __cpus_equal()
[all …]