Home
last modified time | relevance | path

Searched refs:ABS (Results 1 – 25 of 235) sorted by relevance

12345678910

/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/tomsmocomp/
DStrangeBob.inc332 if (ABS (pBob[-2] - pBob[src_pitch2 - 4]) < DiffThres &&
333 ABS (pBob[-4] - pBob[src_pitch2 + 4]) > DiffThres) {
335 diff[0] = ABS (pBob[-2] - pBob[src_pitch2 - 4]);
337 if (ABS (pBob[-1] - pBob[src_pitch2 - 3]) < DiffThres &&
338 ABS (pBob[-3] - pBob[src_pitch2 + 5]) > DiffThres) {
340 diff[1] = ABS (pBob[-1] - pBob[src_pitch2 - 3]);
344 if (ABS (pBob[2] - pBob[src_pitch2 + 4]) < DiffThres &&
345 ABS (pBob[4] - pBob[src_pitch2 - 4]) > DiffThres) {
347 diff[0] = ABS (pBob[4] - pBob[src_pitch2 - 4]);
350 if (ABS (pBob[3] - pBob[src_pitch2 + 5]) < DiffThres &&
[all …]
DWierdBob.inc196 diff[0] = ABS (pBob[-2] - pBob[src_pitch2 + 2]);
198 diff[1] = ABS (pBob[-1] - pBob[src_pitch2 + 3]);
201 if (ABS (pBob[2] - pBob[src_pitch2 - 2]) < diff[0]) {
203 diff[0] = ABS (pBob[2] - pBob[src_pitch2 - 2]);
206 if (ABS (pBob[3] - pBob[src_pitch2 - 1]) < diff[1]) {
208 diff[1] = ABS (pBob[3] - pBob[src_pitch2 - 1]);
212 if (ABS (pBob[-4] - pBob[src_pitch2 + 4]) < diff[0]) {
214 diff[0] = ABS (pBob[-4] - pBob[src_pitch2 + 4]);
217 if (ABS (pBob[-3] - pBob[src_pitch2 + 5]) < diff[1]) {
219 diff[1] = ABS (pBob[-3] - pBob[src_pitch2 + 5]);
[all …]
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/
Dgstaudiostreamalign.c361 gst_util_uint64_scale (start_time, ABS (align->rate), GST_SECOND); in gst_audio_stream_align_process()
365 gst_util_uint64_scale_int (end_offset, GST_SECOND, ABS (align->rate)); in gst_audio_stream_align_process()
383 ABS (align->rate), GST_SECOND); in gst_audio_stream_align_process()
426 ABS (align->rate)); in gst_audio_stream_align_process()
433 ABS (align->rate)) - timestamp; in gst_audio_stream_align_process()
445 ABS (align->rate)); in gst_audio_stream_align_process()
449 ABS (align->rate)) - timestamp; in gst_audio_stream_align_process()
/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/
Dgreedyh.c131 l2_diff = ABS (l2 - avg_sc); in greedyh_scanline_C_ayuv()
133 lp2_diff = ABS (lp2 - avg_sc); in greedyh_scanline_C_ayuv()
159 mov = ABS (l2 - lp2); in greedyh_scanline_C_ayuv()
256 l2_l_diff = ABS (l2_l - avg_sc_l); in greedyh_scanline_C_yuy2()
257 l2_c_diff = ABS (l2_c - avg_sc_c); in greedyh_scanline_C_yuy2()
259 lp2_l_diff = ABS (lp2_l - avg_sc_l); in greedyh_scanline_C_yuy2()
260 lp2_c_diff = ABS (lp2_c - avg_sc_c); in greedyh_scanline_C_yuy2()
304 mov_l = ABS (l2_l - lp2_l); in greedyh_scanline_C_yuy2()
400 l2_l_diff = ABS (l2_l - avg_sc_l); in greedyh_scanline_C_uyvy()
401 l2_c_diff = ABS (l2_c - avg_sc_c); in greedyh_scanline_C_uyvy()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/render/software/
DSDL_drawline.c51 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_DrawLine1()
66 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_DrawLine2()
96 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_DrawLine4()
DSDL_blendline.c81 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGB2()
172 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGB555()
263 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGB565()
355 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGB4()
447 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGBA4()
538 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_RGB888()
629 } else if (ABS(x1 - x2) == ABS(y1 - y2)) { in SDL_BlendLine_ARGB8888()
/third_party/giflib/
Dquantize.c21 #define ABS(x) ((x) > 0 ? (x) : (-(x))) macro
171 if (MaxRGBError[0] < ABS(OutputColorMap[Index].Red - RedInput[i])) in GifQuantizeBuffer()
172 MaxRGBError[0] = ABS(OutputColorMap[Index].Red - RedInput[i]); in GifQuantizeBuffer()
173 if (MaxRGBError[1] < ABS(OutputColorMap[Index].Green - GreenInput[i])) in GifQuantizeBuffer()
174 MaxRGBError[1] = ABS(OutputColorMap[Index].Green - GreenInput[i]); in GifQuantizeBuffer()
175 if (MaxRGBError[2] < ABS(OutputColorMap[Index].Blue - BlueInput[i])) in GifQuantizeBuffer()
176 MaxRGBError[2] = ABS(OutputColorMap[Index].Blue - BlueInput[i]); in GifQuantizeBuffer()
/third_party/elfio/tests/elf_examples/
Dtest_ppc.txt177 28: 00000000 0 FILE LOCAL DEFAULT ABS init.c
178 29: 00000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
188 39: 00000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
194 45: 00000000 0 FILE LOCAL DEFAULT ABS test_ppc.cpp
198 49: 00000000 0 FILE LOCAL DEFAULT ABS elf-init.c
221 72: 10010c0c 0 NOTYPE GLOBAL DEFAULT ABS __bss_start
222 73: 10010ca4 0 NOTYPE GLOBAL DEFAULT ABS _end
225 76: 10010c0c 0 NOTYPE GLOBAL DEFAULT ABS _edata
Dhello_64.txt192 27: 0000000000000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
200 35: 0000000000000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
205 40: 0000000000000000 0 FILE LOCAL DEFAULT ABS hello.c
227 62: 000000000060085c 0 NOTYPE GLOBAL DEFAULT ABS __bss_start
228 63: 0000000000600870 0 NOTYPE GLOBAL DEFAULT ABS _end
229 64: 000000000060085c 0 NOTYPE GLOBAL DEFAULT ABS _edata
Dhello_32.txt151 26: 00000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
159 34: 00000000 0 FILE LOCAL DEFAULT ABS crtstuff.c
164 39: 00000000 0 FILE LOCAL DEFAULT ABS hello.c
186 61: 08049588 0 NOTYPE GLOBAL DEFAULT ABS __bss_start
187 62: 08049590 0 NOTYPE GLOBAL DEFAULT ABS _end
189 64: 08049588 0 NOTYPE GLOBAL DEFAULT ABS _edata
/third_party/mesa3d/src/mesa/swrast/
Ds_blit.c36 #define ABS(X) ((X) < 0 ? -(X) : (X)) macro
121 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_nearest()
122 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_nearest()
123 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_nearest()
124 const GLint dstHeight = ABS(dstY1 - dstY0); in blit_nearest()
522 const GLint srcWidth = ABS(srcX1 - srcX0); in blit_linear()
523 const GLint dstWidth = ABS(dstX1 - dstX0); in blit_linear()
524 const GLint srcHeight = ABS(srcY1 - srcY0); in blit_linear()
525 const GLint dstHeight = ABS(dstY1 - dstY0); in blit_linear()
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/
DNV_vertex_program1_1.txt51 RCC, SUB, and ABS).
84 Should this extension provide SUB and ABS instructions even though
87 RESOLUTION: Yes. SUB and ABS provide no functionality that could
88 not be accomplished in VP1.0 with ADD and MAX idioms, SUB and ABS
161 ABS v v absolute value
167 Add four new sections describing the DPH, RCC, SUB, and ABS
279 2.14.1.10.21 ABS: Absolute Value
281 The ABS instruction assigns the component-wise absolute value of a
298 and ABS instructions (see sections 2.14.1.10.18 through 2.14.1.10.21).
320 | "ABS"
[all …]
/third_party/openGLES/extensions/NV/
DNV_vertex_program1_1.txt51 RCC, SUB, and ABS).
84 Should this extension provide SUB and ABS instructions even though
87 RESOLUTION: Yes. SUB and ABS provide no functionality that could
88 not be accomplished in VP1.0 with ADD and MAX idioms, SUB and ABS
161 ABS v v absolute value
167 Add four new sections describing the DPH, RCC, SUB, and ABS
279 2.14.1.10.21 ABS: Absolute Value
281 The ABS instruction assigns the component-wise absolute value of a
298 and ABS instructions (see sections 2.14.1.10.18 through 2.14.1.10.21).
320 | "ABS"
[all …]
/third_party/gstreamer/gstreamer/gst/
Dgstclock.h273 (guint) (((GstClockTime)(ABS(t))) / (GST_SECOND * 60 * 60)) : 99, \
275 (guint) ((((GstClockTime)(ABS(t))) / (GST_SECOND * 60)) % 60) : 99, \
277 (guint) ((((GstClockTime)(ABS(t))) / GST_SECOND) % 60) : 99, \
279 (guint) (((GstClockTime)(ABS(t))) % GST_SECOND) : 999999999
Dgstdatetime.c740 tzhour = (gint) ABS (tzoffset); in gst_date_time_new()
741 tzminute = (gint) ((ABS (tzoffset) - tzhour) * 60); in gst_date_time_new()
828 tzhour = (guint) ABS (gmt_offset); in __gst_date_time_serialize()
829 tzminute = (guint) ((ABS (gmt_offset) - tzhour) * 60); in __gst_date_time_serialize()
/third_party/gettext/libtextstyle/gnulib-local/lib/glib/
Dgmacros.in.h191 #undef ABS
192 #define ABS(a) (((a) < 0) ? -(a) : (a))
/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/
Dgstsquare.c178 square->width + 0.125, ABS (norm_x))); in square_map()
182 square->height + 0.125, ABS (norm_y))); in square_map()
/third_party/mesa3d/src/gallium/tests/graw/fragment-shader/
Dfrag-abs.sh11 ABS OUT[0], TEMP[0]
Dfrag-lrp.sh8 ABS TEMP[0], IN[0]
Dfrag-tempx.sh12 ABS OUT[0], TEMPX[0][1]
/third_party/mesa3d/src/gallium/tests/graw/vertex-shader/
Dvert-abs.sh12 ABS OUT[0], TEMP[0]
Dvert-lrp.sh10 ABS TEMP[0], IN[0]
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Djifmux.c437 fail_unless (ABS (gst_num - exif_num) < 0.001); in compare_shutter_speed()
466 fail_unless (ABS (gst_value - exif_value) < 0.001); in compare_aperture_value()
524 gst_value = ABS (gst_value); in compare_geo_elevation()
525 fail_unless (ABS (gst_value - altitude) < 0.001); in compare_geo_elevation()
565 fail_unless (ABS (gst_value - speed) < 0.001); in compare_speed()
711 gst_value = ABS (gst_value); in compare_geo_coordinate()
712 fail_unless (ABS (gst_value - coordinate) < 0.001); in compare_geo_coordinate()
761 fail_unless (ABS (gst_value - direction) < 0.001); in compare_geo_direction()
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dmisc.h89 #undef ABS
90 #define ABS(n) ({ \ macro
179 #undef ABS
180 #define ABS(n) (((n) < 0) ? -(n) : (n)) macro
/third_party/gstreamer/gstplugins_bad/tests/examples/ipcpipeline/
Dipc-play.c118 if (ABS (step) < GST_SECOND) in relative_seek()
298 else if (ABS (cur_rate) < 2.0) in keyboard_cb()
300 else if (ABS (cur_rate) < 4.0) in keyboard_cb()
308 else if (ABS (cur_rate) <= 2.0) in keyboard_cb()
310 else if (ABS (cur_rate) <= 4.0) in keyboard_cb()

12345678910