destination       312 libglibc/regex.c   (destination = (char *) alloca (nsize),				\
destination       313 libglibc/regex.c    memcpy (destination, source, osize))
destination       528 libglibc/regex.c #define STORE_NUMBER(destination, number)				\
destination       530 libglibc/regex.c     (destination)[0] = (number) & 0377;					\
destination       531 libglibc/regex.c     (destination)[1] = (number) >> 8;					\
destination       538 libglibc/regex.c #define STORE_NUMBER_AND_INCR(destination, number)			\
destination       540 libglibc/regex.c     STORE_NUMBER (destination, number);					\
destination       541 libglibc/regex.c     (destination) += 2;							\
destination       547 libglibc/regex.c #define EXTRACT_NUMBER(destination, source)				\
destination       549 libglibc/regex.c     (destination) = *(source) & 0377;					\
destination       550 libglibc/regex.c     (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8;		\
destination       575 libglibc/regex.c #define EXTRACT_NUMBER_AND_INCR(destination, source)			\
destination       577 libglibc/regex.c     EXTRACT_NUMBER (destination, source);				\
destination       582 libglibc/regex.c static void extract_number_and_incr _RE_ARGS ((int *destination,
destination       585 libglibc/regex.c extract_number_and_incr (destination, source)
destination       586 libglibc/regex.c     int *destination;
destination       589 libglibc/regex.c   extract_number (destination, *source);
destination      1303 libglibc/regex.c     char *destination;							\
destination      3205 libglibc/regex.c   char *destination;