Displaying 20 results from an estimated 50 matches for "e10".
Did you mean:
10
2014 Jan 16
2
[PATCH] drm/nv50/graph: add more trap names to print on error
...E_MISMATCH" },
+ { 0x00000800, "DST2D_LINEAR_MISMATCH" },
+ { 0x00001000, "RT_LINEAR_MISMATCH" },
+ {}
+};
+
+static u32
+nv50_priv_prop_trap(struct nv50_graph_priv *priv,
+ u32 ustatus_addr, u32 ustatus, u32 tp)
+{
+ u32 e0c = nv_rd32(priv, ustatus_addr + 0x04);
+ u32 e10 = nv_rd32(priv, ustatus_addr + 0x08);
+ u32 e14 = nv_rd32(priv, ustatus_addr + 0x0c);
+ u32 e18 = nv_rd32(priv, ustatus_addr + 0x10);
+ u32 e1c = nv_rd32(priv, ustatus_addr + 0x14);
+ u32 e20 = nv_rd32(priv, ustatus_addr + 0x18);
+ u32 e24 = nv_rd32(priv, ustatus_addr + 0x1c);
+ int i;
+
+ /* CUDA...
2014 Jan 16
0
[PATCH] drm/nv50/graph: add more trap names to print on error
...0x00001000, "RT_LINEAR_MISMATCH" },
> + {}
> +};
> +
> +static u32
> +nv50_priv_prop_trap(struct nv50_graph_priv *priv,
> + u32 ustatus_addr, u32 ustatus, u32 tp)
> +{
> + u32 e0c = nv_rd32(priv, ustatus_addr + 0x04);
> + u32 e10 = nv_rd32(priv, ustatus_addr + 0x08);
> + u32 e14 = nv_rd32(priv, ustatus_addr + 0x0c);
> + u32 e18 = nv_rd32(priv, ustatus_addr + 0x10);
> + u32 e1c = nv_rd32(priv, ustatus_addr + 0x14);
> + u32 e20 = nv_rd32(priv, ustatus_addr + 0x18);
> + u32 e24 = nv...
2006 Apr 12
1
yet another problem with S4 dispatch (with setClassUnion)
...hed on two arguments is
# not important for this example
setMethod("+", signature=c("C00","C00"), function(e1,e2){e1 at a+e2@a})
setMethod("+", signature=c("C01OrC02","C01OrC02"),
function(e1,e2){if(is(e1,"C01")) e10 <- e1
# else: explicit coercion from C02 to C01
else e10 <- new("C01", a=e1 at a, b=e1 at d)
if(is(e2,"C01")) e20 <- e2
# else: explicit coercion from C02 to C01...
2005 Sep 05
0
Re: Asterisk-Users Digest, Vol 14, Issue 22
Hi All
I have problem with LIBMFCR2 for once Exchange
I using Sangoma card, the firstly. my ssystem run successful with MFCR2, connected to E10 (Acatel Exchange), after that, i move connection connect to EWSD (Siemens), my system don't work. error protocol R2.
my system:
Asterisk CVS 1.1.X
LibMFCR2 pre.005 and unicall-pre.005
this's my setting
and my setting wanpipe1.conf
#================================================
#...
2005 Aug 31
1
Sangoma card problem with EWSD Exchange
Hello All.
I'm using sangoma card A-101. tested successful with E10 (ACATEL) Exchange, connection with E1, CAS, (using unicall-0.0.3pre4).
my system run success, incoming call and call out are good.
when i switch to EWSD (SIEMENS) R-15 . my asterisk faill, cannot connect with EWSD.
(E10 and EWSD exchange store in two provinces difference. in Vietnam)
this is my...
2012 Aug 21
2
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
...(add D0, D1, D2, D3, D4, D5, D6, D7,
> D8, D9, D10, D11, D12, D13, D14, D15)>;
>
> // Extended-size data register class
> def ER : RegisterClass<"TriCore", [i64], 32,
> (add E0, E2, E4, E6, E8, E10, E12, E14)> {
> let SubRegClasses = [(DR sub_even, sub_odd)];
> }
>
> And the DX and EX registers are defined this way:
The regclasses look fine... So, you need to figure out why
getRepRegClassFor() returns NULL in this case.
Side note: you can autogenerate register names :)
--
W...
2020 Feb 17
2
Question about noreplicate flag
...replication, as it will otherwise fail with "Error: sync: Unknown user in
remote".
I have added "userdb_noreplicate" (also tried "userdb_noreplicate=y") for
those users, but I still see the above error message in the logs.
Like:
reinob at bbmk.org:{SHA512-CRYPT}$6$e10...4c::::::userdb_noreplicate=y
If I run "doveadm user -u reinob at bbmk.org" I get the following:
userdb: reinob at bbmk.org
user : reinob at bbmk.org
uid : 5000
gid : 5000
home : /var/mail/bbmk.org/reinob
noreplicate: y
Note that I use "userdb...
2012 Aug 21
2
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
> This isn't really my area of expertise, but I think you're messing up
> your RegisterClass definition. Look at how ARM defines DTriple.
DTriple is untyped :) , because we do not have any valut type which
defines 3xi64.
However, the paired register needs to have type.
Fabian, what are the definitions of ER and DR register classes?
--
With best regards, Anton Korobeynikov
Faculty
2012 Aug 21
0
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
...e", [i32], 32,
(add D0, D1, D2, D3, D4, D5, D6, D7,
D8, D9, D10, D11, D12, D13, D14, D15)>;
// Extended-size data register class
def ER : RegisterClass<"TriCore", [i64], 32,
(add E0, E2, E4, E6, E8, E10, E12, E14)> {
let SubRegClasses = [(DR sub_even, sub_odd)];
}
And the DX and EX registers are defined this way:
def D0 : TriCoreReg<0, "d0">, DwarfRegNum<[0]>;
...
def D15 : TriCoreReg<15, "d15">, DwarfRegNum<[15]>;
def E0 : TriCoreRegWithSubr...
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...r,
+ nv_rd32(dev, r));
+ }
+ break;
+ case 7: /* MP error */
+ if (ustatus & 0x00010000) {
+ nv50_pgraph_mp_trap(dev, i, display);
+ ustatus &= ~0x00010000;
+ }
+ break;
+ case 8: /* TPDMA error */
+ {
+ uint32_t e0c = nv_rd32(dev, ustatus_addr + 4);
+ uint32_t e10 = nv_rd32(dev, ustatus_addr + 8);
+ uint32_t e14 = nv_rd32(dev, ustatus_addr + 0xc);
+ uint32_t e18 = nv_rd32(dev, ustatus_addr + 0x10);
+ uint32_t e1c = nv_rd32(dev, ustatus_addr + 0x14);
+ uint32_t e20 = nv_rd32(dev, ustatus_addr + 0x18);
+ uint32_t e24 = nv_rd32(dev, ustatus_addr + 0x1...
2016 Feb 16
2
iconv to UTF-16 encoding produces error due to embedded nulls (write.table with fileEncoding param)
...seems to be the iconv function:
iconv("foo", to="UTF-16")
produces
Error in iconv("foo", to = "UTF-16"):
embedded nul in string: '\xff\xfef\0o\0o\0'
In 2010 a (partial) patch for this problem was submitted:
http://tolstoy.newcastle.edu.au/R/e10/devel/10/06/0648.html
Are there chances to fix this problem since it prevents writing Windows
UTF-16LE text files?
PS: This problem can be reproduced on Windows and Linux.
---------------
> sessionInfo()
R version 3.2.3 (2015-12-10)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubu...
2012 Aug 22
2
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
...D4, D5, D6, D7,
>>> D8, D9, D10, D11, D12, D13, D14, D15)>;
>>>
>>> // Extended-size data register class
>>> def ER : RegisterClass<"TriCore", [i64], 32,
>>> (add E0, E2, E4, E6, E8, E10, E12, E14)> {
>>> let SubRegClasses = [(DR sub_even, sub_odd)];
>>> }
>>>
>>> And the DX and EX registers are defined this way:
>> The regclasses look fine... So, you need to figure out why
>> getRepRegClassFor() returns NULL in this case.
>...
2010 Feb 28
1
[PATCH 1/2] drm/nv50: Make ctxprog wait until interrupt handler is done.
This will fix races between generated ctxprogs and interrupt handler.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/nv50_grctx.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c
index d105fcd..9f909ab 100644
---
2011 May 26
1
dataframe - column value calculation in R
...7
3
5
=SQRT((D7-$D$3)*(D7-$D$3)+(E7-$E$3)*(E7-$E$3)+(F7-$F$3)*(F7-$F$3))
Treatment
2
1
29
2
2
=SQRT((D8-$D$4)*(D8-$D$4)+(E8-$E$4)*(E8-$E$4)+(F8-$F$4)*(F8-$F$4))
Treatment
2
2
30
3
2
=SQRT((D9-$D$5)*(D9-$D$5)+(E9-$E$5)*(E9-$E$5)+(F9-$F$5)*(F9-$F$5))
Treatment2
1
1
32
2
3
=SQRT((D10-$D$2)*(D10-$D$2)+(E10-$E$2)*(E10-$E$2)+(F10-$F$2)*(F10-$F$2))
Treatment2
1
2
35
1
3
=SQRT((D11-$D$3)*(D11-$D$3)+(E11-$E$3)*(E11-$E$3)+(F11-$F$3)*(F11-$F$3))
Treatment2
2
1
34
2
3
=SQRT((D12-$D$4)*(D12-$D$4)+(E12-$E$4)*(E12-$E$4)+(F12-$F$4)*(F12-$F$4))
Treatment2
2
2
28
2
1
=SQRT((D13-$D$5)*(D13-$D$5)+(E13-$E$5)*(E13-$E$...
2010 May 20
2
Sweave and uttf-8 under Windows XP
Hi list,
I need to process a Rnw file and and a csv file (both are encoded in
UTF-8) under Windows XP (R Version 2.11.0, i386, mingw32).
I can source and run the Rnw file:
> Stangle("Bericht.Rnw")
Writing to file Bericht.R
> source(file("Bericht.R", encoding="UTF-8"))
which runs fine, but running Sweave() failed:
> Sweave("Bericht.Rnw")
2005 May 25
2
Asterisk and Monwall - comments
Just got a net4501 board, installed cf card/Monowall. Does anyone have a
monowall firewall with Asterisk behind it, any problems, can external SIP
phones work?
What firewall rules are you using?
Chris Mason
Int: (305) 704-7249 Fax: (815)301-9759
2012 Aug 22
0
[LLVMdev] Passing return values on the stack & storing arbitrary sized integers
...add D0, D1, D2, D3, D4, D5, D6, D7,
>> D8, D9, D10, D11, D12, D13, D14, D15)>;
>>
>> // Extended-size data register class
>> def ER : RegisterClass<"TriCore", [i64], 32,
>> (add E0, E2, E4, E6, E8, E10, E12, E14)> {
>> let SubRegClasses = [(DR sub_even, sub_odd)];
>> }
>>
>> And the DX and EX registers are defined this way:
> The regclasses look fine... So, you need to figure out why
> getRepRegClassFor() returns NULL in this case.
Well, that's rather easy...
2011 Feb 14
4
sem problem - did not converge
...10, NA
F5 -> Item20, lam20, NA
F5 -> Item25, lam25, NA
F5 -> Item30, lam30, NA
F5 -> Item35, lam35, NA
F5 -> Item45, lam45, NA
Item3 <-> Item3, e3, NA
Item5 <-> Item5, e5, NA
Item8 <-> Item8, e8, NA
Item9 <-> Item9, e9, NA
Item10 <-> Item10, e10, NA
Item11 <-> Item11, e11, NA
Item12 <-> Item12, e12, NA
Item18 <-> Item18, e18, NA
Item20 <-> Item20, e20, NA
Item23 <-> Item23, e23, NA
Item25 <-> Item25, e25, NA
Item28 <-> Item28, e28, NA
Item30 <-> Item30, e30, NA
Item31 <-&...
2005 Mar 09
2
Structural equation models with R
...;, 'e4', NA,
'dendos<>dendos', 'e5', NA,
'raiz<>raiz', 'e6', NA,
'nsolo<>nsolo', 'e7', NA,
'psolo<>psolo', 'e8', NA,
'nfolha<>nfolha', 'e9', NA,
'pfolha<>pfolha', 'e10', NA,
'reg<>reg', NA, 1,
'solo<>solo', NA, 1,
'folha<>folha', NA, 1),
ncol=3, byrow=TRUE)
obs.vars.com=c('riqjov','denjov','litter','riqdos','dendos','raiz',
'nsolo','psolo','nfolha...
2020 Feb 17
2
Question about noreplicate flag
...ync: Unknown user
>> in remote".
>>
>> I have added "userdb_noreplicate" (also tried "userdb_noreplicate=y")
>> for those users, but I still see the above error message in the logs.
>>
>> Like:
>> reinob at bbmk.org:{SHA512-CRYPT}$6$e10...4c::::::userdb_noreplicate=y
>>
>> If I run "doveadm user -u reinob at bbmk.org" I get the following:
>>
>> userdb: reinob at bbmk.org
>> ? user????? : reinob at bbmk.org
>> ? uid?????? : 5000
>> ? gid?????? : 5000
>> ? home????? : /var/ma...