Lines Matching refs:width
46 int* width, int* height);
94 %feature("autodoc", #func "(uint8_t data) -> (rgb, width, height)") func;
103 %feature("autodoc", "WebPGetInfo(uint8_t data) -> (width, height)") WebPGetInfo;
109 %apply int* OUTPUT { int* width, int* height }
113 int* width, int* height);
127 int* width, int* height);
129 int* width, int* height);
131 int* width, int* height);
133 int* width, int* height);
135 int* width, int* height);
166 const char* function, int* width, int* height) {
208 size = *width * *height * p->size_multiplier;
219 int width, int height, int stride,
222 int width, int height, int stride,
226 int width, int height, int stride,
232 encfn(rgb, width, height, stride, quality_factor, &output);
234 // as 'width' and 'height' in the size calculation.
241 int width, int height, int stride,
245 const size_t image_size = encfn(rgb, width, height, stride, &output);
247 // ReturnedBufferSize() as 'width' and 'height' in the size calculation.
301 int width, int height, int stride, float quality_factor) { \
302 return EncodeLossy(rgb, width, height, stride, quality_factor, \
316 int width, int height, int stride) { \
317 return EncodeLossless(rgb, width, height, stride, \
340 func WebPGetInfo(webp []byte) (ok bool, width int, height int) {
344 width = w[0]
372 byte[] rgb, int width, int height, int stride, float quality_factor) {
374 rgb, UNUSED, UNUSED, outputSize, width, height, stride, quality_factor);
382 byte[] rgb, int width, int height, int stride) {
384 rgb, UNUSED, UNUSED, outputSize, width, height, stride);
406 def func(rgb, width, height, stride, quality_factor):
407 """func(uint8_t rgb, int width, int height, int stride, float quality_factor) -> lossy_webp"""
409 rgb, _UNUSED, _UNUSED, width, height, stride, quality_factor)
418 def func(rgb, width, height, stride):
419 """func(uint8_t rgb, int width, int height, int stride) -> lossless_webp"""
420 webp = wrap_##func(rgb, _UNUSED, _UNUSED, width, height, stride)