| /dragonfly/usr.bin/look/ |
| HD | look.c | 96 unsigned char *back, *front; in main() local 146 … if ((front = mmap(NULL, (size_t)sb.st_size, PROT_READ, MAP_SHARED, fd, (off_t)0)) == MAP_FAILED) in main() 148 back = front + sb.st_size; in main() 149 match *= (look(key, front, back)); in main() 188 look(wchar_t *string, unsigned char *front, unsigned char *back) in look() argument 190 front = binary_search(string, front, back); in look() 191 front = linear_search(string, front, back); in look() 193 if (front) in look() 194 print_from(string, front, back); in look() 195 return (front ? 0 : 1); in look() [all …]
|
| /dragonfly/contrib/openresolv/ |
| HD | dnsmasq.in | 97 SIFS=${IFS-y} OIFS=$IFS bytes= front= back= 117 front="$front byte:$byte1 byte:$byte2" 122 front="$front byte:0 byte:0" 124 front="${front}$back" 130 dbusdest="${dbusdest}$front string:$dn"
|
| /dragonfly/contrib/gcc-4.7/gcc/doc/ |
| HD | languages.texi | 8 The interface to front ends for languages in GCC, and in particular 12 procedural languages, and front ends for many such languages have been 15 Writing a compiler as a front end for GCC, rather than compiling 20 @item GCC front ends benefit from the support for many different 22 @item GCC front ends benefit from all the optimizations in GCC@. Some 31 Because of the advantages of writing a compiler as a GCC front end, 32 GCC front ends have also been created for languages very different 36 example, as part of a research project) as GCC front ends.
|
| HD | frontends.texi | 39 called the ``front end''. In addition to the front ends that are 40 integrated components of GCC, there are several other front ends that
|
| HD | sourcebuild.texi | 53 language front ends, and testsuites. @xref{gcc Directory, , The 120 The @code{zlib} compression library, used by the Java front end, as 148 * Front End:: Anatomy of a language front end. 236 front-end-specific configuration. @xref{Front End Config, , The Front 348 The manuals for GCC as a whole, and the C and C++ front ends, are in 349 files @file{doc/*.texi}. Other front ends have their own manuals in 465 Details of a few changes to the GCC front-end interface. FIXME: the 467 the front-end interface in this manual. 482 A front end for a language in GCC has the following parts: 487 files for that front end. @xref{Front End Directory, , The Front End [all …]
|
| HD | gccint.texi | 81 write front ends for new languages. It corresponds to the compilers 94 which GCC front ends are written (@pxref{Languages}). It then 96 interfaces to GCC front ends, and how support for a target system is 107 * Languages:: Languages for which GCC front ends are written.
|
| HD | makefile.texi | 176 miscompilation of a different stage2 front-end (for example, of the 177 Fortran front-end), you may want to have front-ends for other languages 182 front-end miscompilation caused by the stage1 compiler, you may need a
|
| HD | passes.texi | 17 some of the language front end interface, though this description is no 21 * Parsing pass:: The language front end turns text into bits. 32 The language front end is invoked only once, via 34 front end may use any intermediate language representation deemed 35 appropriate. The C front end uses GENERIC trees (@pxref{GENERIC}), plus 37 @file{c-common.def}. The Fortran front end uses a completely different 46 At some point the front end must translate the representation used in the 47 front end to a representation understood by the language-independent 49 The C front end manually invokes the gimplifier (@pxref{GIMPLE}) on each function, 52 The Fortran front end converts from a private representation to GENERIC, [all …]
|
| /dragonfly/contrib/file/magic/Magdir/ |
| HD | dolby | 29 >6 byte&0xe0 = 0x00 1+1 front, 31 >6 byte&0xe0 = 0x20 1 front/0 rear, 33 >6 byte&0xe0 = 0x40 2 front/0 rear, 40 >6 byte&0xe0 = 0x60 3 front/0 rear, 42 >6 byte&0xe0 = 0x80 2 front/1 rear, 44 >6 byte&0xe0 = 0xa0 3 front/1 rear, 46 >6 byte&0xe0 = 0xc0 2 front/2 rear, 48 >6 byte&0xe0 = 0xe0 3 front/2 rear,
|
| /dragonfly/contrib/nvi2/ex/ |
| HD | ex_tag.c | 1030 char *back, *front, *map, *p, *search, *t; in ctag_sfile() local 1050 front = map; in ctag_sfile() 1051 back = front + sb.st_size; in ctag_sfile() 1052 front = binary_search(tname, front, back); in ctag_sfile() 1053 front = linear_search(tname, front, back, tl); in ctag_sfile() 1054 if (front == NULL) in ctag_sfile() 1076 for (p = front; p < back && *p != '\n'; ++p); in ctag_sfile() 1083 p = front; in ctag_sfile() 1084 front = t; in ctag_sfile() 1237 binary_search(char *string, char *front, char *back) in binary_search() argument [all …]
|
| /dragonfly/contrib/wpa_supplicant/src/p2p/ |
| HD | p2p_build.c | 527 size_t front = remaining; in p2p_buf_add_service_info() local 528 size_t back = sizeof(u32) + sizeof(u16) + sizeof(u8) - front; in p2p_buf_add_service_info() 535 if (front) in p2p_buf_add_service_info() 536 wpabuf_put_data(buf, holder, front); in p2p_buf_add_service_info() 541 wpabuf_put_data(buf, &holder[front], back); in p2p_buf_add_service_info() 554 size_t front = remaining; in p2p_buf_add_service_info() local 555 size_t back = svc_len - front; in p2p_buf_add_service_info() 557 if (front) in p2p_buf_add_service_info() 558 wpabuf_put_data(buf, svc_name, front); in p2p_buf_add_service_info() 565 wpabuf_put_data(buf, &svc_name[front], 255 - 4); in p2p_buf_add_service_info() [all …]
|
| /dragonfly/contrib/gdb-7/bfd/ |
| HD | tekhex.c | 738 char front[6]; in out() local 741 front[0] = '%'; in out() 742 TOHEX (front + 1, end - start + 5); in out() 743 front[3] = type; in out() 748 sum += sum_block[(unsigned char) front[1]]; /* Length. */ in out() 749 sum += sum_block[(unsigned char) front[2]]; in out() 750 sum += sum_block[(unsigned char) front[3]]; /* Type. */ in out() 751 TOHEX (front + 4, sum); in out() 752 if (bfd_bwrite (front, (bfd_size_type) 6, abfd) != 6) in out()
|
| /dragonfly/contrib/binutils-2.27/bfd/ |
| HD | tekhex.c | 773 char front[6]; in out() local 776 front[0] = '%'; in out() 777 TOHEX (front + 1, end - start + 5); in out() 778 front[3] = type; in out() 783 sum += sum_block[(unsigned char) front[1]]; /* Length. */ in out() 784 sum += sum_block[(unsigned char) front[2]]; in out() 785 sum += sum_block[(unsigned char) front[3]]; /* Type. */ in out() 786 TOHEX (front + 4, sum); in out() 787 if (bfd_bwrite (front, (bfd_size_type) 6, abfd) != 6) in out()
|
| /dragonfly/contrib/binutils-2.34/bfd/ |
| HD | tekhex.c | 777 char front[6]; in out() local 780 front[0] = '%'; in out() 781 TOHEX (front + 1, end - start + 5); in out() 782 front[3] = type; in out() 787 sum += sum_block[(unsigned char) front[1]]; /* Length. */ in out() 788 sum += sum_block[(unsigned char) front[2]]; in out() 789 sum += sum_block[(unsigned char) front[3]]; /* Type. */ in out() 790 TOHEX (front + 4, sum); in out() 791 if (bfd_bwrite (front, (bfd_size_type) 6, abfd) != 6) in out()
|
| /dragonfly/share/termcap/ |
| HD | README | 13 common to most common, since the move commands will move them to the front 14 in that order, the effect will be to put the most common at the front of 16 although they don't have to go to the front, they are probably quite 17 common and really should go near the front.
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| D | stl_queue.h | 162 front() in _GLIBCXX_VISIBILITY() 165 return c.front(); in _GLIBCXX_VISIBILITY() 173 front() const in _GLIBCXX_VISIBILITY() 176 return c.front(); in _GLIBCXX_VISIBILITY() 478 return c.front(); in _GLIBCXX_VISIBILITY()
|
| /dragonfly/lib/libc/rpc/ |
| HD | rpcb_clnt.c | 104 static struct address_cache *front; variable 172 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) { in check_cache() 191 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) { in delete_cache() 202 front = cptr->ac_next; in delete_cache() 254 ad_cache->ac_next = front; in add_cache() 255 front = ad_cache; in add_cache() 259 cptr = front; in add_cache() 279 ad_cache->ac_next = front; in add_cache() 280 front = ad_cache; in add_cache() 282 front = ad_cache; in add_cache()
|
| /dragonfly/contrib/binutils-2.34/gold/ |
| HD | workqueue.cc | 152 Workqueue::add_to_queue(Task_list* queue, Task* t, bool front) in add_to_queue() argument 159 if (front) in add_to_queue() 167 if (front) in add_to_queue()
|
| HD | stringpool.cc | 168 bool front = true; in add_string() local 172 front = false; in add_string() 178 Stringdata* psd = this->strings_.front(); in add_string() 201 if (front) in add_string()
|
| /dragonfly/contrib/binutils-2.27/gold/ |
| HD | workqueue.cc | 152 Workqueue::add_to_queue(Task_list* queue, Task* t, bool front) in add_to_queue() argument 159 if (front) in add_to_queue() 167 if (front) in add_to_queue()
|
| HD | stringpool.cc | 168 bool front = true; in add_string() local 172 front = false; in add_string() 178 Stringdata* psd = this->strings_.front(); in add_string() 201 if (front) in add_string()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| D | stl_queue.h | 202 front() in _GLIBCXX_VISIBILITY() 205 return c.front(); in _GLIBCXX_VISIBILITY() 213 front() const in _GLIBCXX_VISIBILITY() 216 return c.front(); in _GLIBCXX_VISIBILITY() 595 return c.front(); in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/profile/ |
| D | deque | 252 front() 254 return _Base::front(); 258 front() const 260 return _Base::front();
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/ |
| D | deque | 307 front() 310 return _Base::front(); 314 front() const 317 return _Base::front();
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/ |
| D | deque | 337 front() _GLIBCXX_NOEXCEPT 340 return _Base::front(); 344 front() const _GLIBCXX_NOEXCEPT 347 return _Base::front(); 399 return front();
|