Home
last modified time | relevance | path

Searched refs:front (Results 1 – 25 of 175) sorted by relevance

1234567

/dragonfly/usr.bin/look/
H A Dlook.c190 front = binary_search(string, front, back); in look()
191 front = linear_search(string, front, back); in look()
193 if (front) in look()
245 p = front + (back - front) / 2; in binary_search()
254 front = p; in binary_search()
257 p = front + (back - front) / 2; in binary_search()
260 return (front); in binary_search()
277 while (front < back) { in linear_search()
280 return (front); in linear_search()
297 for (; front < back && compare(string, front, back) == EQUAL; ++front) { in print_from()
[all …]
/dragonfly/contrib/openresolv/
H A Ddnsmasq.in97 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/
H A Dlanguages.texi8 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.
H A Dfrontends.texi39 called the ``front end''. In addition to the front ends that are
40 integrated components of GCC, there are several other front ends that
H A Dsourcebuild.texi53 language front ends, and testsuites. @xref{gcc Directory, , The
148 * Front End:: Anatomy of a language front end.
467 the front-end interface in this manual.
482 A front end for a language in GCC has the following parts:
500 Details of contributors to that front end in
510 link to such information in the front end's own manual.
541 Normally, one or more maintainers of that front end listed in
552 The front end's manuals should be mentioned in
622 Java front end depends on the C++ front end, so sets
627 the Objective-C++ front end uses source files from the C++ and
[all …]
H A Dgccint.texi81 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.
H A Dmakefile.texi176 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
H A Dpasses.texi17 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
47 front end to a representation understood by the language-independent
59 and nested function lowering must be done by the front end before
72 have the front end gimplify always; in most cases it's only one
75 The front end needs to pass all function definitions and top level
89 In any case, the front end needs each complete top-level function or
98 cgraph from the front ends and move back to rest_of_compilation
[all …]
/dragonfly/contrib/file/magic/Magdir/
H A Ddolby29 >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/
H A Dex_tag.c1050 front = map; in ctag_sfile()
1052 front = binary_search(tname, front, back); in ctag_sfile()
1053 front = linear_search(tname, front, back, tl); in ctag_sfile()
1083 p = front; in ctag_sfile()
1084 front = t; in ctag_sfile()
1241 p = front + (back - front) / 2; in binary_search()
1246 front = p; in binary_search()
1249 p = front + (back - front) / 2; in binary_search()
1252 return (front); in binary_search()
1271 end = tl && back-front > tl ? front+tl : back; in linear_search()
[all …]
/dragonfly/contrib/wpa_supplicant/src/p2p/
H A Dp2p_build.c527 size_t front = remaining; in p2p_buf_add_service_info() local
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()
567 front += 255 - 4; in p2p_buf_add_service_info()
[all …]
/dragonfly/contrib/gdb-7/bfd/
H A Dtekhex.c738 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.34/bfd/
H A Dtekhex.c777 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/contrib/binutils-2.27/bfd/
H A Dtekhex.c773 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/share/termcap/
H A DREADME13 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/
H A Dstl_queue.h162 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/
H A Drpcb_clnt.c104 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/
H A Dworkqueue.cc152 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()
H A Dstringpool.cc168 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/
H A Dworkqueue.cc152 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()
H A Dstringpool.cc168 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/
H A Dstl_queue.h202 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/
H A Ddeque252 front()
254 return _Base::front();
258 front() const
260 return _Base::front();
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/
H A Ddeque307 front()
310 return _Base::front();
314 front() const
317 return _Base::front();
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/
H A Ddeque337 front() _GLIBCXX_NOEXCEPT
340 return _Base::front();
344 front() const _GLIBCXX_NOEXCEPT
347 return _Base::front();
399 return front();

1234567