similar to: Strange local variable cv::VideoCapture allocated

Displaying 9 results from an estimated 9 matches similar to: "Strange local variable cv::VideoCapture allocated"

2011 Jul 01
1
[79030.229547] motion: page allocation failure: order:6, mode:0xd4
Hi Konrad, In one of my domU''s to which I pci passthrough USB cards with a videograbber connected to it, the videocapture bails out after running for quite some time with the stacktrace below. I guess i''m interpreting the mem-info below wrong, but i fail to see why it can''t allocate those 185088 bytes. Could you shed some light ? it''s probably the coherent
2020 May 08
0
Wine release 5.8
The Wine development release 5.8 is now available. What's new in this release (see below for details): - Support for Plug & Play device notifications. - More support for building with Clang in MSVC mode. - Still more progress on the WineD3D Vulkan backend. - Initial implementation of a GIF encoder. - Vulkan spec update. - Various bug fixes. The source is available from the
2020 May 22
0
Wine release 5.9
The Wine development release 5.9 is now available. What's new in this release (see below for details): - Major progress on the WineD3D Vulkan backend. - Initial support for splitting dlls into PE and Unix parts. - Support for generating PDB files when building PE dlls. - Timestamp updates in the Kernel User Shared Data. - Various bug fixes. The source is available from the
2013 Jul 22
0
[LLVMdev] Libclang get class name from DeclRefExpr
Hi guys, I am trying to extract the class name of a parameter to a method call in objective-C. The code I am parsing is: - (void)testAddConcreteDataModel:(DFDemoDataModelOne*)helpmeh { [self.dataModels addObject:helpmeh]; } And the result I need is the type of class of helpmeh, which is "DFDemoDataModelOne". So far I have the following code, which outputs:
2016 Mar 15
2
[cfe-dev] GSoC AST->XML project still open?
2015 Apr 23
2
[LLVMdev] Get precise line/column debug info from LLVM IR
I am trying to locate instructions in an LLVM Pass by line and column number (reported by an third-party tool) to instrument them. To achieve this, I am compiling my source files with `clang -g -O0 -emit-llvm` and looking for the information in the metadata using this code: const DebugLoc &location = instruction->getDebugLoc(); // location.getLine() // location.getCol()
2016 Nov 28
2
Looking for help with an ast matcher
Hi Piotr, Thanks. Yeah, it seemed a little weird, but it was what got me closest. I found out that the matcher I supplied here was working for clang-query 3.8.1. I'm working on a clang-tidy module for 4.0.0 - it's not working there. Could you elaborate on the "onImplicitObjectArgument"? There is no document on it on the clang page. So I wouldn't know how it works or what it
2013 Feb 06
1
[LLVMdev] Process the initializers of a C++ class properly
Hi, I have been trying to get information from the initializers of a C++ class. For example if I have something like this: classA { }; classB :public A { float f; public: B(A& a) : A(a), f(3.14159) { } }; I wold like to get the initialization values for each member. In this example the values a and 3.14159 for the members A and f respectively. What I have done so far is
2016 Nov 28
2
Looking for help with an ast matcher
Hi Piotr, I think I found a working matcher: match ifStmt(hasCondition(implicitCastExpr(hasImplicitDestinationType(isInteger()), has(cxxMemberCallExpr(callee(cxxMethodDecl(hasName("compare"))), hasArgument(0, declRefExpr().bind("str2")), callee(memberExpr(has(declRefExpr().bind("str1"))))))))).bind("case1") This one bind to both str1 and str2 in