Home
last modified time | relevance | path

Searched refs:aoffset (Results 1 – 12 of 12) sorted by relevance

/third_party/gstreamer/gstreamer/gst/
Dgstallocator.c426 gsize aoffset, slice_size, padding; in _sysmem_new_block() local
443 if ((aoffset = ((guintptr) data & align))) { in _sysmem_new_block()
444 aoffset = (align + 1) - aoffset; in _sysmem_new_block()
445 data += aoffset; in _sysmem_new_block()
446 maxsize -= aoffset; in _sysmem_new_block()
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/
Dgstcudamemory.c262 gsize aoffset; in gst_cuda_memory_device_memory_map() local
297 if ((aoffset = ((guintptr) align_data & align))) { in gst_cuda_memory_device_memory_map()
298 aoffset = (align + 1) - aoffset; in gst_cuda_memory_device_memory_map()
299 align_data += aoffset; in gst_cuda_memory_device_memory_map()
/third_party/ffmpeg/libavfilter/
Dvf_colorbalance.c278 const uint8_t aoffset = s->rgba_map[A]; in color_balance8() local
306 dst[j + aoffset] = src[j + aoffset]; in color_balance8()
329 const uint8_t aoffset = s->rgba_map[A]; in color_balance16() local
358 dst[j + aoffset] = src[j + aoffset]; in color_balance16()
Dvf_colorchannelmixer.c409 const uint8_t aoffset = s->rgba_map[A]; in filter_slice_rgba_packed() local
422 const uint8_t ain = src[j + aoffset]; in filter_slice_rgba_packed()
460 dst[j + aoffset] = av_clip_uint8(s->lut[A][R][rin] + in filter_slice_rgba_packed()
465 dst[j + aoffset] = 0; in filter_slice_rgba_packed()
491 const uint8_t aoffset = s->rgba_map[A]; in filter_slice_rgba16_packed() local
504 const uint16_t ain = src[j + aoffset]; in filter_slice_rgba16_packed()
542 dst[j + aoffset] = av_clip_uint16(s->lut[A][R][rin] + in filter_slice_rgba16_packed()
Dvf_selectivecolor.c333 …const uint8_t aoffset = s->rgba_map[A]; …
389 … dst[x + aoffset] = src[x + aoffset]; \
/third_party/gstreamer/gstplugins_base/gst-libs/gst/gl/
Dgstglbasememory.c196 gsize aoffset; in _align_data() local
200 if ((aoffset = ((guintptr) ret & align))) { in _align_data()
201 aoffset = (align + 1) - aoffset; in _align_data()
202 ret += aoffset; in _align_data()
/third_party/gstreamer/gstplugins_bad/sys/shm/
Dgstshmsink.c268 gsize aoffset, padding; in gst_shm_sink_allocator_alloc_locked() local
281 if ((aoffset = ((guintptr) mymem->data & align))) { in gst_shm_sink_allocator_alloc_locked()
282 aoffset = (align + 1) - aoffset; in gst_shm_sink_allocator_alloc_locked()
283 mymem->data += aoffset; in gst_shm_sink_allocator_alloc_locked()
284 maxsize -= aoffset; in gst_shm_sink_allocator_alloc_locked()
/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtph265.c49 gsize aoffset, padding; in custom_sysmem_new() local
64 if ((aoffset = ((guintptr) mem->data & align))) { in custom_sysmem_new()
65 aoffset = (align + 1) - aoffset; in custom_sysmem_new()
66 mem->data += aoffset; in custom_sysmem_new()
67 maxsize -= aoffset; in custom_sysmem_new()
Drtph264.c46 gsize aoffset, padding; in custom_sysmem_new() local
61 if ((aoffset = ((guintptr) mem->data & align))) { in custom_sysmem_new()
62 aoffset = (align + 1) - aoffset; in custom_sysmem_new()
63 mem->data += aoffset; in custom_sysmem_new()
64 maxsize -= aoffset; in custom_sysmem_new()
/third_party/skia/third_party/externals/libjpeg-turbo/
Dtjunittest.c189 int aoffset = tjAlphaOffset[pf]; in checkBuf() local
231 a = aoffset >= 0 ? buf[index * ps + aoffset] : 0xFF; in checkBuf()
732 int aoffset = tjAlphaOffset[pf]; in cmpBitmap() local
768 if (aoffset >= 0 && buf[row * pitch + i * ps + aoffset] != 0xFF) in cmpBitmap()
/third_party/skia/third_party/externals/libpng/contrib/gregbook/
Drpng2-x.c1229 double angle=0.0, aoffset=0.0, maxDist, dist; in rpng2_x_load_bg_image() local
1267 hue = (angle + PI) * INV_PI_360 + aoffset; in rpng2_x_load_bg_image()
2001 double angle=0.0, aoffset=0.0, maxDist, dist; in rpng2_x_reload_bg_image() local
2035 hue = (angle + PI) * INV_PI_360 + aoffset; in rpng2_x_reload_bg_image()
Drpng2-win.c977 double angle=0.0, aoffset=0.0, maxDist, dist;
1015 hue = (angle + PI) * INV_PI_360 + aoffset;