Displaying 2 results from an estimated 2 matches for "cover_size".
2009 Mar 23
3
How to put a background image on a panel
Well I''ve made a lot of progress on my app, but I''m stuck on figuring
out how to add a bitmap. I have a notebook and a page panel. On this
panel I want to put a backdrop image and scale it to the size of the
panel. How do I do this? I looked at some of the samples related to
bitmaps and I could not see how to apply that to my situation.
Thanks,
T.
2019 Oct 21
0
[PATCH RFC 1/3] kcov: remote coverage support
...+ #define KCOV_ENABLE _IO('c', 100)
Same here and for few others below.
> + #define KCOV_DISABLE _IO('c', 101)
> + #define KCOV_REMOTE_ENABLE _IOW('c', 102, struct kcov_remote_arg)
> +
> + #define COVER_SIZE (64 << 10)
> +
> + #define KCOV_TRACE_PC 0
> + #define KCOV_TRACE_CMP 1
> +
> + #define KCOV_REMOTE_ID 0x42
> +
> + int main(int argc, char **argv)
> + {
> + int fd;
> + unsigned long *cover, n, i;
> + uint64_t han...