• Home
  • Raw
  • Download

Lines Matching refs:src1p

430   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()
521 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_cmp() local
528 bitset_word tmp = *src1p++ | *src2p++; in abitset_or_cmp()
544 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_xor() local
550 *dstp++ = *src1p++ ^ *src2p++; in abitset_xor()
559 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_xor_cmp() local
566 bitset_word tmp = *src1p++ ^ *src2p++; in abitset_xor_cmp()
582 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_or() local
589 *dstp++ = (*src1p++ & *src2p++) | *src3p++; in abitset_and_or()
598 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_and_or_cmp() local
606 bitset_word tmp = (*src1p++ & *src2p++) | *src3p++; in abitset_and_or_cmp()
622 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_or() local
629 *dstp++ = (*src1p++ & ~(*src2p++)) | *src3p++; in abitset_andn_or()
638 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_andn_or_cmp() local
646 bitset_word tmp = (*src1p++ & ~(*src2p++)) | *src3p++; in abitset_andn_or_cmp()
662 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_and() local
669 *dstp++ = (*src1p++ | *src2p++) & *src3p++; in abitset_or_and()
678 bitset_word *src1p = ABITSET_WORDS (src1); in abitset_or_and_cmp() local
686 bitset_word tmp = (*src1p++ | *src2p++) & *src3p++; in abitset_or_and_cmp()