Searched refs:front (Results 26 - 50 of 236) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DCommentParser.h81 *B = &Toks.front();
/freebsd-10.0-release/sys/netpfil/ipfw/
H A Ddn_sched_qfq.c219 unsigned int front; /* Index of the front slot. */ member in struct:qfq_group
426 unsigned int i = (grp->front + slot) % QFQ_MAX_SLOTS;
439 struct qfq_class **h = &grp->slots[grp->front];
462 grp->front = (grp->front + i) % QFQ_MAX_SLOTS;
466 return grp->slots[grp->front];
484 grp->front = (grp->front - i) % QFQ_MAX_SLOTS;
550 cl = grp->slots[grp->front];
[all...]
/freebsd-10.0-release/lib/libc/rpc/
H A Drpcb_clnt.c112 static struct address_cache *front; variable in typeref:struct:address_cache
183 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
203 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
214 front = cptr->ac_next;
268 ad_cache->ac_next = front;
269 front = ad_cache;
273 cptr = front;
293 ad_cache->ac_next = front;
294 front = ad_cache;
296 front
[all...]
/freebsd-10.0-release/sys/rpc/
H A Drpcb_clnt.c104 static struct address_cache *front;
175 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
195 for (cptr = front; cptr != NULL; cptr = cptr->ac_next) {
206 front = cptr->ac_next;
260 ad_cache->ac_next = front;
261 front = ad_cache;
265 cptr = front;
285 ad_cache->ac_next = front;
286 front = ad_cache;
288 front
[all...]
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DRegAllocBase.cpp122 RegClassInfo.getOrder(MRI->getRegClass(VirtReg->reg)).front());
H A DDFAPacketizer.cpp150 MachineInstr *MIFirst = CurrentPacketMIs.front();
H A DDwarfEHPrepare.cpp140 ResumeInst *RI = Resumes.front();
/freebsd-10.0-release/contrib/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp30 MachineBasicBlock &MBB = MF.front();
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp125 const CFGElement &CE = Exit->front();
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DBlock.h262 return m_children.front().get();
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DCTagsEmitter.cpp69 return Locs.front();
/freebsd-10.0-release/sys/dev/pci/
H A Dpci_pci.c1176 u_long align, start_free, end_free, front, back, wmask; local
1220 * amount of address space needed on both the front and back
1252 front = end_free - (count - 1);
1255 * The resource would now be allocated at (front,
1257 * bounds. end_free is checked above. If 'front' is
1261 if (front >= start && front <= end_free) {
1264 front, end_free);
1265 front &= ~wmask;
1266 front
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DArrayRef.h104 /// front - Get the first element.
105 const T &front() const { function in class:llvm::ArrayRef
215 /// front - Get the first element.
216 T &front() const { function in class:llvm::ArrayRef
/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFCompileUnit.cpp118 DWARFDebugInfoEntryMinimal *die_array_begin = &DieArray.front();
232 DieArray.push_back(tmpArray.front());
H A DDWARFDebugAranges.cpp215 // We checked for empty at the start of function so front() will be valid.
216 LoPC = Aranges.front().LoPC;
225 // We checked for empty at the start of function so front() will be valid.
226 LoPC = Aranges.front().LoPC;
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp223 PHINode *APN = dyn_cast<PHINode>(&front());
250 while (PHINode *PN = dyn_cast<PHINode>(&front())) {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBumpVector.h107 reference front() { function in class:clang::BumpVector
110 const_reference front() const { function in class:clang::BumpVector
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp144 LHS->getLoc().front().getPointer() < RHS->getLoc().front().getPointer();
149 return beforeThanCompare(LHS->DiagsInGroup.front(),
150 RHS->DiagsInGroup.front());
244 SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(),
251 SrcMgr.PrintMessage((*I)->ExplicitDef->getLoc().front(),
266 SrcMgr.PrintMessage(NextDiagGroup->getLoc().front(),
275 SrcMgr.PrintMessage(GroupInit->getDef()->getLoc().front(),
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCXXInheritance.cpp31 Decls.insert(Path->Decls.front());
403 if (Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
421 if (Path.Decls.front()->isInIdentifierNamespace(IDNS))
440 if (isa<TypedefNameDecl>(Path.Decls.front()) ||
441 Path.Decls.front()->isInIdentifierNamespace(IDNS_Tag))
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_rlock.c220 * returning the *front* proxy.
225 rl_t *front, *rear; local
243 front = zfs_range_proxify(tree, rl);
244 front->r_len = off - rl->r_off;
246 avl_insert_here(tree, rear, front, AVL_AFTER);
247 return (front);
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h222 MachineInstr& front() { return Insts.front(); } function in class:llvm::MachineBasicBlock
224 const MachineInstr& front() const { return Insts.front(); } function in class:llvm::MachineBasicBlock
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DIntervalMap.cpp21 path.front() = Entry(Root, Size, Offsets.first);
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/
H A DARMInstrInfo.cpp118 MachineBasicBlock &FirstMBB = MF.front();
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DTypoCorrection.h158 CorrectionDecls.front() == 0;
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DPseudoConstantAnalysis.cpp85 const Stmt *Head = WorkList.front();

Completed in 405 milliseconds

12345678910