Lines Matching refs:srcp
174 bitset_word *srcp = VBITSET_WORDS (src); local
197 word = srcp[windex] << (BITSET_WORD_BITS - 1 - bitcnt);
236 bitset_word *srcp = VBITSET_WORDS (src); local
245 for (windex = 0; windex < size && !srcp[windex]; windex++)
271 word = srcp[windex] >> bitno;
292 if (!(word = srcp[windex]))
383 bitset_word *srcp; in vbitset_copy1() local
393 srcp = VBITSET_WORDS (src); in vbitset_copy1()
398 memcpy (dstp, srcp, sizeof (bitset_word) * ssize); in vbitset_copy1()
409 bitset_word *srcp; in vbitset_not() local
416 srcp = VBITSET_WORDS (src); in vbitset_not()
422 *dstp++ = ~(*srcp++); in vbitset_not()
434 bitset_word *srcp = VBITSET_WORDS (src); in vbitset_equal_p() local
440 if (*srcp++ != *dstp++) in vbitset_equal_p()
446 if (*srcp++) in vbitset_equal_p()
464 bitset_word *srcp = VBITSET_WORDS (src); in vbitset_subset_p() local
469 for (i = 0; i < min (ssize, dsize); i++, dstp++, srcp++) in vbitset_subset_p()
470 if (*dstp != (*srcp | *dstp)) in vbitset_subset_p()
476 if (*srcp++) in vbitset_subset_p()
488 bitset_word *srcp = VBITSET_WORDS (src); in vbitset_disjoint_p() local
494 if (*srcp++ & *dstp++) in vbitset_disjoint_p()