Lines Matching refs:dest

186 bitset_and(BitSetRef dest, BitSetRef bs)  in bitset_and()  argument
189 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] &= bs[i]; } in bitset_and()
193 bitset_or(BitSetRef dest, BitSetRef bs) in bitset_or() argument
196 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] |= bs[i]; } in bitset_or()
200 bitset_copy(BitSetRef dest, BitSetRef bs) in bitset_copy() argument
203 for (i = 0; i < (int )BITSET_SIZE; i++) { dest[i] = bs[i]; } in bitset_copy()
219 onig_strcpy(UChar* dest, const UChar* src, const UChar* end) in onig_strcpy() argument
223 xmemcpy(dest, src, len); in onig_strcpy()
224 dest[len] = (UChar )0; in onig_strcpy()
280 strcat_capa(UChar* dest, UChar* dest_end, const UChar* src, const UChar* src_end, in strcat_capa() argument
285 if (dest) in strcat_capa()
286 r = (UChar* )xrealloc(dest, capa + 1); in strcat_capa()
291 onig_strcpy(r + (dest_end - dest), src, src_end); in strcat_capa()
297 strcat_capa_from_static(UChar* dest, UChar* dest_end, in strcat_capa_from_static() argument
304 onig_strcpy(r, dest, dest_end); in strcat_capa_from_static()
305 onig_strcpy(r + (dest_end - dest), src, src_end); in strcat_capa_from_static()
1984 and_cclass(CClassNode* dest, CClassNode* cc, OnigEncoding enc) in and_cclass() argument
1991 not1 = IS_NCCLASS_NOT(dest); in and_cclass()
1992 bsr1 = dest->bs; in and_cclass()
1993 buf1 = dest->mbuf; in and_cclass()
2007 if (bsr1 != dest->bs) { in and_cclass()
2008 bitset_copy(dest->bs, bsr1); in and_cclass()
2009 bsr1 = dest->bs; in and_cclass()
2012 bitset_invert(dest->bs); in and_cclass()
2034 dest->mbuf = pbuf; in and_cclass()
2042 or_cclass(CClassNode* dest, CClassNode* cc, OnigEncoding enc) in or_cclass() argument
2049 not1 = IS_NCCLASS_NOT(dest); in or_cclass()
2050 bsr1 = dest->bs; in or_cclass()
2051 buf1 = dest->mbuf; in or_cclass()
2065 if (bsr1 != dest->bs) { in or_cclass()
2066 bitset_copy(dest->bs, bsr1); in or_cclass()
2067 bsr1 = dest->bs; in or_cclass()
2070 bitset_invert(dest->bs); in or_cclass()
2092 dest->mbuf = pbuf; in or_cclass()