Home
last modified time | relevance | path

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

12345678910>>...19

/trueos/usr.bin/look/
HDlook.c97 unsigned char *back, *front; in main() local
144 if ((front = mmap(NULL, (size_t)sb.st_size, PROT_READ, MAP_SHARED, fd, (off_t)0)) == MAP_FAILED) in main()
146 back = front + sb.st_size; in main()
147 match *= (look(key, front, back)); in main()
186 look(wchar_t *string, unsigned char *front, unsigned char *back) in look() argument
189 front = binary_search(string, front, back); in look()
190 front = linear_search(string, front, back); in look()
192 if (front) in look()
193 print_from(string, front, back); in look()
194 return (front ? 0 : 1); in look()
[all …]
/trueos/contrib/openresolv/
HDdnsmasq.in98 SIFS=${IFS-y} OIFS=$IFS bytes= front= back=
118 front="$front byte:$byte1 byte:$byte2"
123 front="$front byte:0 byte:0"
125 front="${front}$back"
131 dbusdest="${dbusdest}$front string:$dn"
/trueos/contrib/gcc/doc/
HDlanguages.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.
HDsourcebuild.texi42 front end.
47 language front ends, and testsuites. @xref{gcc Directory, , The
85 The @code{zlib} compression library, used by the Java front end and as
112 * Front End:: Anatomy of a language front end.
212 front-end-specific configuration. @xref{Front End Config, , The Front
321 The manuals for GCC as a whole, and the C and C++ front ends, are in
322 files @file{doc/*.texi}. Other front ends have their own manuals in
434 Details of a few changes to the GCC front-end interface. FIXME: the
436 the front-end interface in this manual.
453 A front end for a language in GCC has the following parts:
[all …]
HDfrontends.texi36 called the ``front end''. In addition to the front ends that are
37 integrated components of GCC, there are several other front ends that
/trueos/contrib/unbound/services/
HDlisten_dnsport.c825 listen_cp_insert(struct comm_point* c, struct listen_dnsport* front) in listen_cp_insert() argument
832 item->next = front->cps; in listen_cp_insert()
833 front->cps = item; in listen_cp_insert()
842 struct listen_dnsport* front = (struct listen_dnsport*) in listen_create() local
844 if(!front) in listen_create()
846 front->cps = NULL; in listen_create()
847 front->udp_buff = sldns_buffer_new(bufsize); in listen_create()
848 if(!front->udp_buff) { in listen_create()
849 free(front); in listen_create()
858 front->udp_buff, cb, cb_arg); in listen_create()
[all …]
/trueos/contrib/llvm/include/llvm/MC/
HDMCFunction.h117 const MCBasicBlock *getEntryBlock() const { return front(); } in getEntryBlock()
118 MCBasicBlock *getEntryBlock() { return front(); } in getEntryBlock()
129 const MCBasicBlock* front() const { return Blocks.front(); } in front() function
130 MCBasicBlock* front() { return Blocks.front(); } in front() function
/trueos/contrib/binutils/bfd/doc/
HDbfd.texinfo88 * BFD front end:: BFD front end
94 @node Overview, BFD front end, Top, Top
103 BFD is split into two parts: the front end, and the back ends (one for
106 @item The front end of BFD provides the interface to the user. It manages
107 memory and various canonical data structures. The front end also
110 end provides a set of calls which the BFD front end can use to maintain
198 @node BFD front end, BFD back ends, Overview, Top
221 @node Memory Usage, Initialization, BFD front end, BFD front end
244 @node Initialization, Sections, Memory Usage, BFD front end
247 @node Sections, Symbols, Initialization, BFD front end
[all …]
/trueos/contrib/file/magic/Magdir/
HDdolby29 >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,
/trueos/contrib/nvi/ex/
HDex_tag.c1036 char *back, *front, *map, *p, *search, *t; in ctag_sfile() local
1056 front = map; in ctag_sfile()
1057 back = front + sb.st_size; in ctag_sfile()
1058 front = binary_search(tname, front, back); in ctag_sfile()
1059 front = linear_search(tname, front, back, tl); in ctag_sfile()
1060 if (front == NULL) in ctag_sfile()
1082 for (p = front; p < back && *p != '\n'; ++p); in ctag_sfile()
1089 p = front; in ctag_sfile()
1090 front = t; in ctag_sfile()
1244 binary_search(register char *string, register char *front, register char *back) in binary_search() argument
[all …]
/trueos/contrib/bmake/lst.lib/
HDlstAtFront.c72 LstNode front; in Lst_AtFront() local
74 front = Lst_First(l); in Lst_AtFront()
75 return (Lst_InsertBefore(l, front, d)); in Lst_AtFront()
/trueos/contrib/llvm/include/llvm/CodeGen/
HDMachineFunction.h326 const MachineBasicBlock &front() const { return BasicBlocks.front(); }
327 MachineBasicBlock &front() { return BasicBlocks.front(); }
474 return &F->front();
486 return &F->front();
511 return &G.Graph->front();
517 return &G.Graph->front();
/trueos/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
HDUnwindMacOSXFrameBackchain.cpp132 lldb::addr_t first_frame_pc = m_cursors.front().pc; in GetStackFrameData_i386()
162 cursor.fp = m_cursors.front().fp; in GetStackFrameData_i386()
168 m_cursors.front().fp = first_frame_sp; in GetStackFrameData_i386()
231 lldb::addr_t first_frame_pc = m_cursors.front().pc; in GetStackFrameData_x86_64()
261 cursor.fp = m_cursors.front().fp; in GetStackFrameData_x86_64()
267 m_cursors.front().fp = first_frame_sp; in GetStackFrameData_x86_64()
/trueos/contrib/libstdc++/include/bits/
Dstl_queue.h154 front() in _GLIBCXX_BEGIN_NAMESPACE()
157 return c.front(); in _GLIBCXX_BEGIN_NAMESPACE()
165 front() const in _GLIBCXX_BEGIN_NAMESPACE()
168 return c.front(); in _GLIBCXX_BEGIN_NAMESPACE()
401 return c.front(); in top()
/trueos/contrib/llvm/include/llvm/ADT/
HDMapVector.h67 std::pair<KeyT, ValueT> &front() { return Vector.front(); } in front() function
68 const std::pair<KeyT, ValueT> &front() const { return Vector.front(); } in front() function
HDTinyPtrVector.h57 Val = RHS.front();
66 Val.template get<VecTy*>()->push_back(RHS.front());
91 V->push_back(RHS.front());
166 EltTy front() const { in front() function
170 return Val.template get<VecTy*>()->front(); in front()
/trueos/contrib/llvm/tools/lldb/source/Core/
HDValueObjectChild.cpp83 …::snprintf (&bitfield_type_name.front(), bitfield_type_name.size(), "%s:%u", clang_type_name, m_bi… in GetTypeName()
84 m_type_name.SetCString(&bitfield_type_name.front()); in GetTypeName()
104 …::snprintf (&bitfield_type_name.front(), bitfield_type_name.size(), "%s:%u", clang_type_name, m_bi… in GetQualifiedTypeName()
105 qualified_name.SetCString(&bitfield_type_name.front()); in GetQualifiedTypeName()
/trueos/contrib/llvm/tools/clang/include/clang/AST/
HDCXXInheritance.h190 CXXBasePath& front() { return Paths.front(); } in front() function
191 const CXXBasePath& front() const { return Paths.front(); } in front() function
/trueos/contrib/llvm/include/llvm/IR/
HDFunction.h380 const BasicBlock &getEntryBlock() const { return front(); }
381 BasicBlock &getEntryBlock() { return front(); }
402 const BasicBlock &front() const { return BasicBlocks.front(); }
403 BasicBlock &front() { return BasicBlocks.front(); }
HDBasicBlock.h205 inline const Instruction &front() const { return InstList.front(); }
206 inline Instruction &front() { return InstList.front(); }
/trueos/sys/netpfil/ipfw/
HDdn_sched_qfq.c219 unsigned int front; /* Index of the front slot. */ member
426 unsigned int i = (grp->front + slot) % QFQ_MAX_SLOTS; in qfq_slot_insert()
439 struct qfq_class **h = &grp->slots[grp->front]; in qfq_front_slot_remove()
462 grp->front = (grp->front + i) % QFQ_MAX_SLOTS; in qfq_slot_scan()
466 return grp->slots[grp->front]; in qfq_slot_scan()
484 grp->front = (grp->front - i) % QFQ_MAX_SLOTS; in qfq_slot_rotate()
550 cl = grp->slots[grp->front]; in qfq_dequeue()
703 i = (grp->front + offset) % QFQ_MAX_SLOTS;
758 } else if (!grp->slots[grp->front]) {
/trueos/contrib/binutils/bfd/
HDtekhex.c731 char front[6]; in out() local
734 front[0] = '%'; in out()
735 TOHEX (front + 1, end - start + 5); in out()
736 front[3] = type; in out()
741 sum += sum_block[(unsigned char) front[1]]; /* Length. */ in out()
742 sum += sum_block[(unsigned char) front[2]]; in out()
743 sum += sum_block[(unsigned char) front[3]]; /* Type. */ in out()
744 TOHEX (front + 4, sum); in out()
745 if (bfd_bwrite (front, (bfd_size_type) 6, abfd) != 6) in out()
/trueos/share/termcap/
HDREADME15 common to most common, since the move commands will move them to the front
16 in that order, the effect will be to put the most common at the front of
18 although they don't have to go to the front, they are probably quite
19 common and really should go near the front.
/trueos/sys/xen/xenbus/
HDxenbusb_if.m46 * \param _dev NewBus device_t for this XenBus (front/back) bus instance.
70 * \param _dev NewBus device_t for this XenBus (front/back) bus instance.
86 * \param _bus NewBus device_t for this XenBus (front/back) bus instance.
101 * \param _bus NewBus device_t for this XenBus (front/back) bus instance.
/trueos/sys/gnu/dts/arm/
HDimx6qdl-cubox-i.dtsi20 front {
22 label = "imx6:red:front";
125 pinctrl_cubox_i_pwm1: cubox-i-pwm1-front-led {

12345678910>>...19