| /mirbsd/src/usr.bin/look/ |
| D | look.c | 102 char *back, *file, *front, *string, *p; in main() local 147 back = front + sb.st_size; in main() 148 exit(look(string, front, back)); in main() 152 look(char *string, char *front, char *back) in look() argument 168 front = binary_search(string, front, back); in look() 169 front = linear_search(string, front, back); in look() 172 print_from(string, front, back); in look() 215 #define SKIP_PAST_NEWLINE(p, back) \ argument 216 while (p < back && *p++ != '\n'); 219 binary_search(char *string, char *front, char *back) in binary_search() argument [all …]
|
| /mirbsd/src/usr.bin/spell/ |
| D | look.c | 55 look(u_char *string, u_char *front, u_char *back) in look() argument 65 front = binary_search(string, front, back); in look() 66 front = linear_search(string, front, back); in look() 109 #define SKIP_PAST_NEWLINE(p, back) \ argument 110 while (p < back && *p++ != '\n'); 113 binary_search(u_char *string, u_char *front, u_char *back) in binary_search() argument 117 p = front + (back - front) / 2; in binary_search() 118 SKIP_PAST_NEWLINE(p, back); in binary_search() 124 while (p < back && back > front) { in binary_search() 125 if (compare(string, p, back) > 0) in binary_search() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Test/t/ |
| D | multiline.t | 33 Get back, get back 34 Get back to where you once belonged 35 Get back, get back 36 Get back to where you once belonged 37 Get back Loretta Go home 38 Get back, get back 39 Get back to where you once belonged 40 Get back, get back 41 Get back to where you once belonged
|
| /mirbsd/src/libexec/login_radius/ |
| D | login_radius.c | 88 FILE *back; in main() local 94 back = NULL; in main() 103 back = stdout; in main() 153 if (back == NULL && (back = fdopen(3, "a")) == NULL) { in main() 183 (void)fprintf(back, BI_AUTH "\n"); in main() 185 (void)fprintf(back, BI_VALUE " challenge %s\n", in main() 187 (void)fprintf(back, BI_CHALLENGE "\n"); in main() 194 (void)fprintf(back, "value errormsg %s\n", auth_mkvalue(emsg)); in main() 196 (void)fprintf(back, BI_SILENT "\n"); in main() 199 (void)fprintf(back, BI_REJECT "\n"); in main()
|
| /mirbsd/src/libexec/login_skey/ |
| D | login_skey.c | 58 FILE *back = NULL; in main() local 75 back = stdout; in main() 118 if (back == NULL && (back = fdopen(3, "r+")) == NULL) { in main() 156 fprintf(back, BI_VALUE " challenge %s\n", in main() 158 fprintf(back, BI_CHALLENGE "\n"); in main() 160 fprintf(back, BI_FDPASS "\n"); in main() 161 fflush(back); in main() 163 send_fd(fileno(back)); in main() 171 while (cp < ep && read(fileno(back), cp, 1) == 1) { in main() 186 while (cp < ep && read(fileno(back), cp, 1) == 1) { in main() [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/pod/ |
| D | perltoc.pod | 40 =back 60 =back 104 =back 108 =back 132 =back 146 =back 148 =back 188 =back 201 =back 214 =back [all …]
|
| D | perl588delta.pod | 25 =back 41 =back 53 =back 65 =back 78 =back 90 =back 102 =back 133 been added to turn automatic indexes back on 151 =back 163 =back [all …]
|
| D | perlcompile.pod | 16 ("back ends") do things with the tree. Some write it out as 20 your code for dubious constructs. Yet another back end dumps the 21 parse tree back out as Perl source, acting as a source code beautifier 26 C<B> module and its associated back ends are known as "the 33 it comprises, how to use the most important of the back end modules, 38 The compiler back ends are in the C<B::> hierarchy, and the front-end 40 interact with) is the O module. Some back ends (e.g., C<B::C>) have 43 Here are the important back ends to know about, with their status 89 =back 93 The following sections describe how to use the various compiler back [all …]
|
| /mirbsd/src/sys/dev/pci/ |
| D | if_em_osdep.h | 87 bus_space_read_4( ((struct em_osdep *)(a)->back)->mem_bus_space_tag, \ 88 ((struct em_osdep *)(a)->back)->mem_bus_space_handle, \ 92 bus_space_write_4( ((struct em_osdep *)(a)->back)->mem_bus_space_tag, \ 93 ((struct em_osdep *)(a)->back)->mem_bus_space_handle, \ 98 bus_space_read_4( ((struct em_osdep *)(a)->back)->mem_bus_space_tag, \ 99 ((struct em_osdep *)(a)->back)->mem_bus_space_handle, \ 105 bus_space_write_4( ((struct em_osdep *)(a)->back)->mem_bus_space_tag, \ 106 ((struct em_osdep *)(a)->back)->mem_bus_space_handle, \ 113 bus_space_read_4(((struct em_osdep *)(hw)->back)->em_iobtag, \ 114 ((struct em_osdep *)(hw)->back)->em_iobhandle, (port)) [all …]
|
| /mirbsd/src/libexec/login_token/ |
| D | login_token.c | 58 FILE *back = NULL; in main() local 95 back = stdout; in main() 128 if (back == NULL && (back = fdopen(3, "r+")) == NULL) { in main() 152 fprintf(back, BI_VALUE " challenge %s\n", in main() 154 fprintf(back, BI_CHALLENGE "\n"); in main() 174 fprintf(back, BI_AUTH "\n"); in main() 179 fprintf(back, BI_ROOTOKAY "\n"); in main() 181 fprintf(back, BI_SECURE "\n"); in main() 185 fprintf(back, BI_REJECT "\n"); in main()
|
| /mirbsd/src/lib/libutil/ |
| D | check_expire.c | 57 login_check_expire(FILE *back, struct passwd *pwd, char *class, int lastchance) in login_check_expire() argument 77 fprintf(back, BI_VALUE " expire %qd\n", expire); in login_check_expire() 112 fprintf(back, BI_VALUE in login_check_expire() 114 fprintf(back, BI_REJECT "\n"); in login_check_expire() 136 fprintf(back, BI_VALUE " errormsg %s", in login_check_expire() 138 fprintf(back, BI_REJECT "\n"); in login_check_expire() 143 fprintf(back, BI_VALUE in login_check_expire() 145 fprintf(back, BI_PWEXPIRED "\n"); in login_check_expire() 154 fprintf(back, BI_VALUE in login_check_expire()
|
| /mirbsd/src/libexec/login_passwd/ |
| D | login.c | 39 FILE *back = NULL; variable 60 back = stdout; in main() 105 if (back == NULL && (back = fdopen(3, "r+")) == NULL) { in main() 140 fprintf(back, BI_AUTH "\n"); in main() 162 fprintf(back, BI_REJECT "\n"); in main()
|
| D | login_passwd.c | 40 fprintf(back, BI_VALUE " errormsg %s\n", in pwd_login() 42 fprintf(back, BI_REJECT "\n"); in pwd_login() 70 if (login_check_expire(back, pwd, class, lastchance) == 0) in pwd_login() 71 fprintf(back, BI_AUTH "\n"); in pwd_login()
|
| /mirbsd/src/libexec/login_tis/ |
| D | login_tis.c | 80 FILE *back = NULL; in main() local 107 back = stdout; in main() 158 if (back == NULL && (back = fdopen(3, "r+")) == NULL) { in main() 200 (void)fprintf(back, "value errormsg %s\n", in main() 204 fprintf(back, BI_SILENT "\n"); in main() 208 fprintf(back, BI_VALUE " challenge %s\n", in main() 210 fprintf(back, BI_CHALLENGE "\n"); in main() 212 fprintf(back, BI_FDPASS "\n"); in main() 213 fflush(back); in main() 214 send_fd(&tc, fileno(back)); in main() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/ |
| D | elfcore.h | 156 const struct elf_backend_data *back; in elf_core_file_p() local 160 back = (const struct elf_backend_data *) (*target_ptr)->backend_data; in elf_core_file_p() 161 if (back->elf_machine_code == i_ehdrp->e_machine in elf_core_file_p() 162 || (back->elf_machine_alt1 != 0 in elf_core_file_p() 163 && i_ehdrp->e_machine == back->elf_machine_alt1) in elf_core_file_p() 164 || (back->elf_machine_alt2 != 0 in elf_core_file_p() 165 && i_ehdrp->e_machine == back->elf_machine_alt2)) in elf_core_file_p()
|
| /mirbsd/src/usr.bin/vi/ex/ |
| D | ex_tag.c | 1044 char *back, *cname, *dname, *front, *map, *name, *p, *search, *t; local 1076 back = front + sb.st_size; 1077 front = binary_search(tname, front, back); 1078 front = linear_search(tname, front, back); 1101 for (p = front; p < back && *p != '\n'; ++p); 1102 if (p == back || *p != '\n') 1247 #define SKIP_PAST_NEWLINE(p, back) while ((p) < (back) && *(p)++ != '\n'); argument 1250 binary_search(string, front, back) in binary_search() argument 1251 char *string, *front, *back; in binary_search() 1255 p = front + (back - front) / 2; [all …]
|
| /mirbsd/src/libexec/login_reject/ |
| D | login_reject.c | 58 FILE *back; in main() local 101 if (!(back = fdopen(3, "r+"))) { in main() 106 fprintf(back, BI_SILENT "\n"); in main() 125 fprintf(back, BI_REJECT "\n"); in main()
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Text/TabsWrap/t/ |
| D | tabs.t | 117 my $back = &$f($in); 119 if ($back eq $out) { 123 foreach ($in, $back, $out) { 130 print $back; 135 my $back = &$f($in);
|
| D | fill.t | 72 my $back = fill(' ', ' ', $in); 74 if ($back eq $out) { 78 write_file("#o", $back); 80 foreach ($in, $back, $out) { 87 print $back;
|
| D | wrap.t | 153 my $back = wrap(' ', ' ', $in); 155 if ($back eq $out) { 159 foreach ($in, $back, $out) { 166 print $back; 193 my $back = wrap(' ', ' ', @in); 195 if ($back eq $out) { 199 foreach ($in, $back, $out) { 206 print $back;
|
| /mirbsd/src/gnu/usr.bin/perl/t/pod/ |
| D | poderrs.t | 55 =head2 back without over 57 =back 59 =head2 over without back 131 =back 200 161 =back 163 All empty over/back: 167 =back 189 =back
|
| /mirbsd/src/lib/libncurses/src/menu/ |
| D | m_post.c | 70 wattron(menu->win, menu->back); in NCURSES_EXPORT() 96 wattroff(menu->win, menu->back); in NCURSES_EXPORT() 116 wattron(menu->win, menu->back); in NCURSES_EXPORT() 164 wattron(menu->win, menu->back); in NCURSES_EXPORT() 178 wattroff(menu->win, menu->back); in NCURSES_EXPORT() 186 wattroff(menu->win, menu->back); in NCURSES_EXPORT() 211 wbkgdset(menu->win, menu->back); in _nc_Draw_Menu() 228 wattron(menu->win, menu->back); in _nc_Draw_Menu() 247 wattroff(menu->win, menu->back); in _nc_Draw_Menu()
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | README.mpeix | 141 =back 143 =back 158 =back 168 =back 231 =back 257 =back 333 =back 376 =back 417 =back 492 =back [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/bfd/doc/ |
| D | bfd.texinfo | 99 * BFD back ends:: BFD back ends 111 creating a new BFD back end and adding it to the library. 113 BFD is split into two parts: the front end, and the back ends (one for 118 decides which back end to use and when to call back end routines. 119 @item The back ends provide BFD its view of the real world. Each back 121 its canonical form. The back ends also may keep around information for 208 @node BFD front end, BFD back ends, Overview, Top 296 @node BFD back ends, GNU Free Documentation License, BFD front end, Top 297 @chapter BFD back ends 310 @node What to Put Where, aout, BFD back ends, BFD back ends [all …]
|
| /mirbsd/src/gnu/usr.bin/perl/lib/Pod/t/ |
| D | basic.pod | 144 =back 167 =back 189 =back 191 =back 215 =back 225 =back 228 back properly. 236 =back 250 =back 252 Should be back to the single level of indentation. [all …]
|