Home
last modified time | relevance | path

Searched refs:from_sb (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Dinput-scrub.c80 static sb from_sb; variable
119 sb from_sb; member
170 saved->from_sb = from_sb; in input_scrub_push()
197 from_sb = saved->from_sb; in input_scrub_pop()
285 sb_build (&from_sb, from->len + newline + 2 * sizeof (".linefile") + 30); in input_scrub_include_sb()
292 sb_add_char (&from_sb, '\n'); in input_scrub_include_sb()
294 sb_scrub_and_add_sb (&from_sb, from); in input_scrub_include_sb()
298 sb_terminate (&from_sb); in input_scrub_include_sb()
323 if (sb_index >= from_sb.len) in input_scrub_next_buffer()
325 sb_kill (&from_sb); in input_scrub_next_buffer()
[all …]
H A DChangeLog-20121018 allocate sufficient space for from_sb. Use sb_terminate to
H A DChangeLog-92951334 (sb_index, from_sb): New static variables.
1336 (struct input_save): Add sb_index and from_sb fields. Change
1340 Save sb_index and from_sb.
1342 Restore sb_index and from_sb.
1344 (input_scrub_next_buffer): Handle reading from from_sb.
1345 (bump_line_counters): Only increment lines if not using from_sb.
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dinput-scrub.c80 static sb from_sb; variable
123 sb from_sb; member
175 saved->from_sb = from_sb; in input_scrub_push()
203 from_sb = saved->from_sb; in input_scrub_pop()
290 sb_build (&from_sb, from->len + newline + 2 * sizeof (".linefile") + 30); in input_scrub_include_sb()
295 sb_add_char (&from_sb, '\n'); in input_scrub_include_sb()
297 sb_scrub_and_add_sb (&from_sb, from); in input_scrub_include_sb()
301 sb_terminate (&from_sb); in input_scrub_include_sb()
326 if (sb_index >= from_sb.len) in input_scrub_next_buffer()
328 sb_kill (&from_sb); in input_scrub_next_buffer()
[all …]
H A DChangeLog-20121018 allocate sufficient space for from_sb. Use sb_terminate to
H A DChangeLog-92951334 (sb_index, from_sb): New static variables.
1336 (struct input_save): Add sb_index and from_sb fields. Change
1340 Save sb_index and from_sb.
1342 Restore sb_index and from_sb.
1344 (input_scrub_next_buffer): Handle reading from from_sb.
1345 (bump_line_counters): Only increment lines if not using from_sb.
/netbsd-src/usr.bin/xinstall/
H A Dxinstall.c181 struct stat from_sb, to_sb; in main() local
414 if (stat(*argv, &from_sb)) in main()
418 if (to_sb.st_dev == from_sb.st_dev && in main()
419 to_sb.st_ino == from_sb.st_ino) in main()
668 struct stat from_sb; in install() local
677 /* ensure that from_sb & tv are sane if !dolink */ in install()
678 if (stat(from_name, &from_sb)) in install()
680 size = from_sb.st_size; in install()
682 TIMESPEC_TO_TIMEVAL(&tv[0], &from_sb.st_atimespec); in install()
683 TIMESPEC_TO_TIMEVAL(&tv[1], &from_sb in install()
[all...]