Displaying 20 results from an estimated 40 matches for "omnia".
Did you mean:
omnis
2006 Mar 06
1
complex; ifb, masq et omnia
Hi all.
I''m using Jamal''s ifb virtual interface from new kernel. Redirecting incoming
traffic from external interface like that:
# tc [blahbla] match u32 0 0 flowid 1:0 action mirred egress redirect dev ifb0
to ifb to shape it.
The problem is that I''m using MASQUERADE by netfilter also. That redirected
traffic coming from internet gets to ifb _before_ DNAT is done.
2013 Jun 18
0
[LLVMdev] Getting the memory address of all operands on an expression
On Mon, Jun 17, 2013 at 11:49 PM, Abhinash Jain <omnia at mailinator.com>wrote:
>
> But before becoming part of the expressions, the registers will actually
> fetch some value from memory, through Load operations.
>
This is not true; the virtual registers need not be loaded from memory. You
may find <
http://llvm.org/docs/FAQ.html#wh...
2013 Jun 18
3
[LLVMdev] Getting the memory address of all operands on an expression
> in LLVM IR, the operands of most expression are registers, so don't have a
memory address.
Yes I agree with your this statement,
But before becoming part of the expressions, the registers will actually
fetch some value from memory, through Load operations.
as shown in example "r3=r1+r2" will be the expression, where registers such
as r1 and r2 contains (fetch) the values from
2002 Dec 26
2
XP keeps disconnecting
...g on and access samba shares, but the XP box keeps
losing these connections. Log file just tell me that:
[2002/12/26 16:49:22, 2] smbd/server.c:exit_server(461)
Closing connections
[2002/12/26 16:49:22, 1] smbd/service.c:close_cnum(677)
jose (192.168.1.100) closed connection to service omnia
When the connection is lost it takes a while to reconnect
(10/20 seconds).
Maybe this is an XP and not a Samba problem? Can anybody tell
me what can I do?
This is my "global" configuration section
[global]
workgroup = MACONDO
netbios name = SUPERPIPPO
server string = Samba v%v...
2013 Jul 26
2
[LLVMdev] LLVM ERROR : Invalid instruction
@Jim Grosbach,
Is there anyway to resolve it???
--
View this message in context: http://llvm.1065342.n5.nabble.com/LLVM-ERROR-Invalid-instruction-tp59856p59865.html
Sent from the LLVM - Dev mailing list archive at Nabble.com.
2013 Jul 26
0
[LLVMdev] LLVM ERROR : Invalid instruction
On Jul 26, 2013, at 6:48 PM, Abhinash Jain <omnia at mailinator.com> wrote:
> Is there anyway to resolve it???
1. Teach the cpp backend how to handle it.
2. Compile with -fno-exceptions to turn off exceptions.
--
Stephen Checkoway
2018 Jul 01
2
No run cmd /usbhid-ups -k !
Good day.
Can not perform shutdowns Ups. Please help.
Details of our installation are:
OS: Turris Omnia (TO)
NUT version: 2.7.4-5
Installation method: from package
UPS device: EATON UPS 5SC 500i , 230V, 350W, 500VA, USB bought in jun 2018
If you connect to TO UPS via USB, the /dev/hidraw0 device will be created.
No any programs from NUT package is not running.
When I run:
/lib/nut/usbhid-ups -a qna...
2016 Mar 08
5
Syslinux 6.04-pre1
On 03/08/16 09:19, poma wrote:
>
> You don't seem to understand how the packages distribution works,
> in this particular case, for Fedora 22.
>
I know far too well, which is exactly why I'm none too happy to
encourage these particular practices.
-hpa
2013 May 02
1
multivariate, hierarchical model
...ppears better.
Should I group (merge) treatment code and location code?
Also, cl2free has a very positively skewed distribution, should I transform it?
I want to incorporate seasons, possibly as a random slope, but R doesn't seem to like it.
Help greatly appreciated (and sorry for long email).
Omnia
[[alternative HTML version deleted]]
2018 Dec 06
3
https stream play 1 second and stop
Thanks for your response Michel. I encode with Omnia AX/E Software so that it can be processed a bit and it has built in MP3 Encoders. I believe it is happening to all my streams, but I only use the mp3 codec. Was encouraged to hear that I wasn’t the only one having an issue and look forward to some trouble shooting thoughts. I do not build my...
2013 Jul 25
2
[LLVMdev] Passing String to an external function in llvm
Hi All,
On my llvm pass I have some variable named "expr" which is being declared as
:-
string expr; // or char *expr; //
Now I want to pass this "expr" to some external function.
How can I do this??
Similarly, How can I pass variable "var" to an external function which is
being decalred as :-
Vector<int> var;
Any help will be
2013 Jul 25
0
[LLVMdev] Passing String to an external function in llvm
On Thu, Jul 25, 2013 at 9:07 AM, Abhinash Jain <omnia at mailinator.com> wrote:
> Hi All,
>
> On my llvm pass I have some variable named "expr" which is being declared as
> :-
> string expr; // or char *expr; //
I don't understand this question - these are C++ declarations, not
LLVM declarations (not to mention...
2013 Jul 25
0
[LLVMdev] Passing String to an external function in llvm
On Thu, Jul 25, 2013 at 10:12 AM, Abhinash Jain <omnia at mailinator.com> wrote:
> I did some computation through llvm pass, and store those computed values on
> string. eg. :-
>
> stringstream lhs;
> lhs << instr->getOperand(1); // 'instr' is some instruction
> string lhsvar=lhs.str();
>
> Now I want to...
2013 Jul 26
2
[LLVMdev] LLVM ERROR : Invalid instruction
#include <string>
#include <string.h>
#include <iostream>
#include <stdio.h>
using namespace std;
void foo(string str)
{
}
int main()
{
string str="aa";
foo(str);
return 0;
}
1. clang++ -c -emit-llvm foo.cpp -o foo.ll
2. llc -march=cpp -o foo.ll.cpp foo.ll (at the execution of this command
its giving an error as "Invalid Instruction")
May I know why
2013 Jul 26
0
[LLVMdev] LLVM ERROR : Invalid instruction
Looks like the CPP backend doesn’t know how to deal with exception handling. It’s complaining that it can’t handle a landingpad instruction.
-Jim
On Jul 26, 2013, at 1:49 PM, Abhinash Jain <omnia at mailinator.com> wrote:
> #include <string>
> #include <string.h>
> #include <iostream>
> #include <stdio.h>
> using namespace std;
>
> void foo(string str)
> {
> }
> int main()
> {
> string str="aa";
> foo(str);
> r...
2013 Sep 01
0
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
Check it's type to see if it's a pointer or not?
On 1 September 2013 12:31, Abhinash Jain <omnia at mailinator.com> wrote:
> C Code :-
> int main()
> {
> int a=10,c;
> int *b;
> c=20;
> *b=a;
> return 0;
> }
>
> IR of above code :-
> define i32 @main() #0 {
> entry:
> 1. %retval = alloca i32, align 4
> 2. %a = alloca i32, align 4
> 3....
2013 Sep 01
2
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
Sorry I have actually edited the post.
I did check its type by using
isa<PointerType>(cast<AllocaInst>(instr->getOperand(1))->getAllocatedType())
but it is only detecting i32** %b on line 8 of IR as a pointer type.
Whereas I also want to detect the i32* %1 on line 11 of IR as a pointer
type. So how can I do this??
--
View this message in context:
2013 Sep 01
0
[LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
Hi,
On 1 September 2013 15:47, Abhinash Jain <omnia at mailinator.com> wrote:
> Sorry I have actually edited the post.
This is primarily an e-mail list; the vast majority of us won't see
any edits (on some web mirror?).
> I did check its type by using
> isa<PointerType>(cast<AllocaInst>(instr->getOperand(1))->getA...
2018 Jul 01
0
No run cmd /usbhid-ups -k !
On 01/07/2018 11.53, icingaj at gmail.com wrote:
> Good day.
>
> Can not perform shutdowns Ups. Please help.
>
> Details of our installation are:
> OS: Turris Omnia (TO)
> NUT version: 2.7.4-5
> Installation method: from package
> UPS device: EATON UPS 5SC 500i , 230V, 350W, 500VA, USB bought in jun 2018
>
> If you connect to TO UPS via USB, the /dev/hidraw0 device will be created.
> No any programs from NUT package is not running.
>
>...
2016 Mar 09
0
Syslinux 6.04-pre1
...; You don't seem to understand how the packages distribution works,
>> in this particular case, for Fedora 22.
>>
>
> I know far too well, which is exactly why I'm none too happy to
> encourage these particular practices.
>
> -hpa
>
>
Multi multa, nemo omnia novit.
You are the first, which defines cherry-pick-ing as "behavior that should not be encouraged".
Quite awkward definition, may I say.
http://pkgs.fedoraproject.org/cgit/rpms/binutils.git/tree/
Should we consider as "behavior that should not be encouraged" some or all of th...