/third_party/gstreamer/gstplugins_good/gst/deinterlace/tvtime/tomsmocomp/ |
D | StrangeBob.inc | 332 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 …]
|
D | WierdBob.inc | 196 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/ |
D | gstaudiostreamalign.c | 361 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/ |
D | greedyh.c | 131 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/ |
D | SDL_drawline.c | 51 } 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()
|
D | SDL_blendline.c | 81 } 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/ |
D | quantize.c | 21 #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/ |
D | test_ppc.txt | 177 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
|
D | hello_64.txt | 192 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
|
D | hello_32.txt | 151 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/ |
D | s_blit.c | 36 #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/ |
D | NV_vertex_program1_1.txt | 51 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/ |
D | NV_vertex_program1_1.txt | 51 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/ |
D | gstclock.h | 273 (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
|
D | gstdatetime.c | 740 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/ |
D | gmacros.in.h | 191 #undef ABS 192 #define ABS(a) (((a) < 0) ? -(a) : (a))
|
/third_party/gstreamer/gstplugins_bad/gst/geometrictransform/ |
D | gstsquare.c | 178 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/ |
D | frag-abs.sh | 11 ABS OUT[0], TEMP[0]
|
D | frag-lrp.sh | 8 ABS TEMP[0], IN[0]
|
D | frag-tempx.sh | 12 ABS OUT[0], TEMPX[0][1]
|
/third_party/mesa3d/src/gallium/tests/graw/vertex-shader/ |
D | vert-abs.sh | 12 ABS OUT[0], TEMP[0]
|
D | vert-lrp.sh | 10 ABS TEMP[0], IN[0]
|
/third_party/gstreamer/gstplugins_bad/tests/check/elements/ |
D | jifmux.c | 437 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/ |
D | misc.h | 89 #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/ |
D | ipc-play.c | 118 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()
|