Home
last modified time | relevance | path

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

/external/bison/lib/
Dvbitset.c506 bitset_word *src2p; in vbitset_and() local
519 src2p = VBITSET_WORDS (src2); in vbitset_and()
522 *dstp++ = *src1p++ & *src2p++; in vbitset_and()
534 bitset_word *src2p; in vbitset_and_cmp() local
547 src2p = VBITSET_WORDS (src2); in vbitset_and_cmp()
551 bitset_word tmp = *src1p++ & *src2p++; in vbitset_and_cmp()
562 src1p = src2p; in vbitset_and_cmp()
586 bitset_word *src2p; in vbitset_andn() local
599 src2p = VBITSET_WORDS (src2); in vbitset_andn()
602 *dstp++ = *src1p++ & ~(*src2p++); in vbitset_andn()
[all …]
Dabitset.c431 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and() local
436 *dstp++ = *src1p++ & *src2p++; in abitset_and()
446 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_and_cmp() local
452 bitset_word tmp = *src1p++ & *src2p++; in abitset_and_cmp()
469 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn() local
474 *dstp++ = *src1p++ & ~(*src2p++); in abitset_andn()
484 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_andn_cmp() local
490 bitset_word tmp = *src1p++ & ~(*src2p++); in abitset_andn_cmp()
507 bitset_word *src2p = ABITSET_WORDS (src2); in abitset_or() local
512 *dstp++ = *src1p++ | *src2p++; in abitset_or()
[all …]
/external/kernel-headers/original/linux/
Dnodemask.h128 const nodemask_t *src2p, int nbits) in __nodes_and() argument
130 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_and()
136 const nodemask_t *src2p, int nbits) in __nodes_or() argument
138 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_or()
144 const nodemask_t *src2p, int nbits) in __nodes_xor() argument
146 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_xor()
152 const nodemask_t *src2p, int nbits) in __nodes_andnot() argument
154 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __nodes_andnot()
168 const nodemask_t *src2p, int nbits) in __nodes_equal() argument
170 return bitmap_equal(src1p->bits, src2p->bits, nbits); in __nodes_equal()
[all …]
Dcpumask.h126 const cpumask_t *src2p, int nbits) in __cpus_and() argument
128 bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_and()
133 const cpumask_t *src2p, int nbits) in __cpus_or() argument
135 bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_or()
140 const cpumask_t *src2p, int nbits) in __cpus_xor() argument
142 bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_xor()
148 const cpumask_t *src2p, int nbits) in __cpus_andnot() argument
150 bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); in __cpus_andnot()
162 const cpumask_t *src2p, int nbits) in __cpus_equal() argument
164 return bitmap_equal(src1p->bits, src2p->bits, nbits); in __cpus_equal()
[all …]