source 1342 gtags-parser/asm_scan.c register char *source = yytext_ptr; source 1375 gtags-parser/asm_scan.c *(dest++) = *(source++); source 1549 gtags-parser/asm_scan.c register char *source = source 1552 gtags-parser/asm_scan.c while ( source > yy_current_buffer->yy_ch_buf ) source 1553 gtags-parser/asm_scan.c *--dest = *--source; source 1555 gtags-parser/asm_scan.c yy_cp += (int) (dest - source); source 1556 gtags-parser/asm_scan.c yy_bp += (int) (dest - source); source 1381 gtags-parser/php.c register char *source = yytext_ptr; source 1414 gtags-parser/php.c *(dest++) = *(source++); source 1588 gtags-parser/php.c register char *source = source 1591 gtags-parser/php.c while ( source > yy_current_buffer->yy_ch_buf ) source 1592 gtags-parser/php.c *--dest = *--source; source 1594 gtags-parser/php.c yy_cp += (int) (dest - source); source 1595 gtags-parser/php.c yy_bp += (int) (dest - source); source 1086 htags/asm.c register char *source = yytext_ptr; source 1119 htags/asm.c *(dest++) = *(source++); source 1299 htags/asm.c register char *source = source 1302 htags/asm.c while ( source > yy_current_buffer->yy_ch_buf ) source 1303 htags/asm.c *--dest = *--source; source 1305 htags/asm.c yy_cp += (int) (dest - source); source 1306 htags/asm.c yy_bp += (int) (dest - source); source 1217 htags/c.c register char *dest = yy_current_buffer->yy_ch_buf; source 1250 htags/c.c for ( i = 0; i < number_to_move; ++i ) source 1430 htags/c.c yy_current_buffer->yy_buf_size + 2]; source 1433 htags/c.c source 1434 htags/c.c while ( source > yy_current_buffer->yy_ch_buf ) source 1436 htags/c.c source 1437 htags/c.c yy_cp += (int) (dest - source); source 1084 htags/cpp.c register char *source = yytext_ptr; source 1117 htags/cpp.c *(dest++) = *(source++); source 1297 htags/cpp.c register char *source = source 1300 htags/cpp.c while ( source > yy_current_buffer->yy_ch_buf ) source 1301 htags/cpp.c *--dest = *--source; source 1303 htags/cpp.c yy_cp += (int) (dest - source); source 1304 htags/cpp.c yy_bp += (int) (dest - source); source 990 htags/java.c register char *source = yytext_ptr; source 1023 htags/java.c *(dest++) = *(source++); source 1203 htags/java.c register char *source = source 1206 htags/java.c while ( source > yy_current_buffer->yy_ch_buf ) source 1207 htags/java.c *--dest = *--source; source 1209 htags/java.c yy_cp += (int) (dest - source); source 1210 htags/java.c yy_bp += (int) (dest - source); source 1233 htags/php.c register char *source = yytext_ptr; source 1266 htags/php.c *(dest++) = *(source++); source 1446 htags/php.c register char *source = source 1449 htags/php.c while ( source > yy_current_buffer->yy_ch_buf ) source 1450 htags/php.c *--dest = *--source; source 1452 htags/php.c yy_cp += (int) (dest - source); source 1453 htags/php.c yy_bp += (int) (dest - source); source 289 libglibc/regex.c # define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize) source 311 libglibc/regex.c # define REGEX_REALLOCATE(source, osize, nsize) \ source 313 libglibc/regex.c memcpy (destination, source, osize)) source 326 libglibc/regex.c # define REGEX_REALLOCATE_STACK(source, osize, nsize) \ source 336 libglibc/regex.c # define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize) source 343 libglibc/regex.c # define REGEX_REALLOCATE_STACK(source, osize, nsize) \ source 344 libglibc/regex.c REGEX_REALLOCATE (source, osize, nsize) source 547 libglibc/regex.c #define EXTRACT_NUMBER(destination, source) \ source 549 libglibc/regex.c (destination) = *(source) & 0377; \ source 550 libglibc/regex.c (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \ source 554 libglibc/regex.c static void extract_number _RE_ARGS ((int *dest, unsigned char *source)); source 556 libglibc/regex.c extract_number (dest, source) source 558 libglibc/regex.c unsigned char *source; source 560 libglibc/regex.c int temp = SIGN_EXTEND_CHAR (*(source + 1)); source 561 libglibc/regex.c *dest = *source & 0377; source 575 libglibc/regex.c #define EXTRACT_NUMBER_AND_INCR(destination, source) \ source 577 libglibc/regex.c EXTRACT_NUMBER (destination, source); \ source 578 libglibc/regex.c (source) += 2; \ source 583 libglibc/regex.c unsigned char **source)); source 585 libglibc/regex.c extract_number_and_incr (destination, source) source 587 libglibc/regex.c unsigned char **source; source 589 libglibc/regex.c extract_number (destination, *source); source 590 libglibc/regex.c *source += 2; source 37 libutil/strlimcpy.c strlimcpy(char *dest, const char *const source, const int limit) source 40 libutil/strlimcpy.c const char *s = source; source 45 libutil/strlimcpy.c die("buffer overflow. strlimcpy(dest, '%s', %d).", source, limit);