search for: argcount

Displaying 5 results from an estimated 5 matches for "argcount".

Did you mean: arg_count
2009 Dec 18
0
Samba4 Provisioning Segfault
...../Objects/methodobject.c:116 #13 0x0009ed50 in PyEval_EvalFrameEx (f=0xab8ed8, throwflag=<value optimized out>) at ../Python/ceval.c:3706 #14 0x000a0970 in PyEval_EvalCodeEx (co=0x4030f848, globals=<value optimized out>, locals=<value optimized out>, args=0x4032a780, argcount=2, kws=0xac7cd8, kwcount=1165320760, defs=0x4032a77c, defcount=1, closure=0x0) at ../Python/ceval.c:2968 #15 0x0009f184 in PyEval_EvalFrameEx (f=0xab8900, throwflag=<value optimized out>) at ../Python/ceval.c:3802 #16 0x0009f7b0 in PyEval_EvalFrameEx (f=0x35ae80, throwflag=<val...
2017 Feb 26
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
...mized out> first_instr = <optimized out> names = <optimized out> consts = <optimized out> #9 0x00007ffff7af8e3d in PyEval_EvalCodeEx (co=<optimized out>, globals=<optimized out>, locals=locals at entry=0x0, args=args at entry=0x7ffff7ecee78, argcount=2, kws=kws at entry=0x9d97b8, kwcount=kwcount at entry=1, defs=defs at entry=0x7ffff7ec1688, defcount=defcount at entry=7, closure=0x0) at /usr/src/debug/Python-2.7.5/Python/ceval.c:3640 f = Frame 0xd316b0, for file /usr/lib64/python2.7/site-packages/samba/__init__.py, line 115, in...
2017 Feb 16
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
On Fri, 2017-02-17 at 07:48 +1100, Tom Robinson via samba wrote: > Anyone? Can you please post a gdb backtrace --full? -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 862 bytes Desc: This is a digitally signed message part URL:
2017 Jun 11
0
[RFC 4/9] tgsi: populate precise
...SI_SWIZZLE_Z); - ureg_insn(t->ureg, TGSI_OPCODE_ADD, dst, 1, src, 2); + ureg_insn(t->ureg, TGSI_OPCODE_ADD, dst, 1, src, 2, 0); } } @@ -249,7 +249,7 @@ emit_arith_inst(struct st_translate *t, return; } - ureg_insn(t->ureg, desc->TGSI_opcode, dst, 1, args, argcount); + ureg_insn(t->ureg, desc->TGSI_opcode, dst, 1, args, argcount, 0); } static void @@ -292,7 +292,7 @@ emit_dstmod(struct st_translate *t, if (dstMod & GL_SATURATE_BIT_ATI) { dst = ureg_saturate(dst); } - ureg_insn(t->ureg, TGSI_OPCODE_MUL, &dst, 1, src, 2);...
2017 Jun 11
14
[RFC 0/9] Add precise/invariant semantics to TGSI
Running Tomb Raider on Nouveau I found some flicker caused by ignoring precise modifiers on variables inside Nouveau. This series add precise/invariant handling to TGSI, which can be then used by drivers to disable certain unsafe optimisations which may otherwise alter calculations, which depend on having the same result across shaders. This series fixes this bug in Tomb Raider and one CTS test