search for: framewidth

Displaying 2 results from an estimated 2 matches for "framewidth".

Did you mean: frame_width
2012 Sep 22
2
[LLVMdev] Typedef struct types
...ile rightly defines this type in the beginning so that it can be used later. (for example below) %struct.DEBLOCK_UNIT = type { i8*, i8*, i8*, i8, i32, i32, %struct.DEBLOCK_UNIT*, %struct.DEBLOCK_UNIT*, %struct.DEBLOCK_UNIT* } ..... define void @DeblockAreaFetch(i8* %SrcY, i8* %SrcU, i8* %SrcV, i32 %FrameWidth, %struct.DEBLOCK_UNIT* nocapture %DeblockUnit, i32 %TransferWidth) nounwind { entry: }   How to I get information about "%struct.DEBLOCK_UNIT" from the 'Module' of this file ? The approach I tried was to iterate through the "global variable list" and extract type from th...
2012 Sep 22
0
[LLVMdev] Typedef struct types
...type in the beginning so that it can be used > later. (for example below) > %struct.DEBLOCK_UNIT = type { i8*, i8*, i8*, i8, i32, i32, > %struct.DEBLOCK_UNIT*, %struct.DEBLOCK_UNIT*, %struct.DEBLOCK_UNIT* } > ..... > define void @DeblockAreaFetch(i8* %SrcY, i8* %SrcU, i8* %SrcV, i32 %FrameWidth, > %struct.DEBLOCK_UNIT* nocapture %DeblockUnit, i32 %TransferWidth) nounwind { > entry: > } > How to I get information about "%struct.DEBLOCK_UNIT" from the 'Module' of this > file ? > The approach I tried was to iterate through the "global variable list&qu...