search for: defcount

Displaying 6 results from an estimated 6 matches for "defcount".

Did you mean: refcount
2009 Dec 18
0
Samba4 Provisioning Segfault
...(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=<value optimized out>) at ../Python/ceval.c:3792 #17 0x000a0970 in P...
2017 Feb 26
2
samba-tool domain classicupgrade smb_krb5_context_init_basic failed (Invalid argument)
...nsts = <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 __init__ (self=<Ldb at remote 0xacf2d0>, url='ldaps://ldap.motec.com.au', lp=None, modules_d...
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:
2014 Sep 01
0
[PATCH] nv50/ir: use unordered_set instead of list to keep track of var defs
...heck def instruction can store - Instruction *di = st->getSrc(1)->defs.front()->getInsn(); + Instruction *di =(*st->getSrc(1)->defs.begin())->getInsn(); // TODO: move exports (if beneficial) in common opt pass if (di->isPseudo() || isTextureOp(di->op) || di->defCount(0xff, true) > 1) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp index 5ab6570..7bb28c6 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp @@ -834,7 +834,7 @...
2014 Dec 02
0
[PATCH RESEND] nv50/ir: use unordered_set instead of list to keep track of var defs
...heck def instruction can store - Instruction *di = st->getSrc(1)->defs.front()->getInsn(); + Instruction *di =(*st->getSrc(1)->defs.begin())->getInsn(); // TODO: move exports (if beneficial) in common opt pass if (di->isPseudo() || isTextureOp(di->op) || di->defCount(0xff, true) > 1) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp index 9c06d04..ab28f3a 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp +++ b/src/gallium/drivers/nouveau/codegen/...
2014 Jan 13
20
[PATCH 00/19] nv50: add sampler2DMS/GP support to get OpenGL 3.2
OK, so there's a bunch of stuff in here. The geometry stuff is based on the work started by Bryan Cain and Christoph Bumiller. Patches 01-12: Add support for geometry shaders and fix related issues Patches 13-14: Make it possible for fb clears to operate on texture attachments with an explicit layer set (as is allowed in gl 3.2). Patches 15-17: Make ARB_texture_multisample work