search for: newbbi

Displaying 4 results from an estimated 4 matches for "newbbi".

Did you mean: newbb
2002 Dec 09
1
QOS
Hi all, I''m a newbbie in this kind of things. I need an example to configure QOS over a WAN for http, telnet and ftp or a web-interface aplication to start working with QOS. (such as webmin with iptables, but for tc). Thanks in advance Alem.
2013 May 17
1
DTLS
Hi all, I am looking for a secured communication between web clients and my servers. tinc looks great. I understand it uses UDP for data. But does it use DTLS (newbbie question) ? As someone tryed to use 0MQ with it ? Cheers, Laurent. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://www.tinc-vpn.org/pipermail/tinc/attachments/20130517/d28319c9/attachment.html>
2008 Apr 16
0
[LLVMdev] Being able to know the jitted code-size before emitting
...signed NewBBSize = 0; > for (MachineBasicBlock::iterator I = NewBB->begin(), E = NewBB- > >end(); > I != E; ++I) > - NewBBSize += ARM::GetInstSize(I); > + NewBBSize += TII->GetInstSize(I); > > unsigned OrigBBI = OrigBB->getNumber(); > unsigned NewBBI = NewBB->getNumber(); > @@ -968,9 +968,9 @@ > MachineBasicBlock::iterator MI = UserMI; > ++MI; > unsigned CPUIndex = CPUserIndex+1; > - for (unsigned Offset = UserOffset+ARM::GetInstSize(UserMI); > + for (unsigned Offset = UserOffset+TII->GetInstSize(UserMI...
2008 Apr 15
4
[LLVMdev] Being able to know the jitted code-size before emitting
OK, here's a new patch that adds the infrastructure and the implementation for X86, ARM and PPC of GetInstSize and GetFunctionSize. Both functions are virtual functions defined in TargetInstrInfo.h. For X86, I moved some commodity functions from X86CodeEmitter to X86InstrInfo. What do you think? Nicolas Evan Cheng wrote: > > I think both of these belong to TargetInstrInfo. And