Searched refs:interval_size (Results 1 - 22 of 22) sorted by relevance

/external/valgrind/main/exp-bbv/
H A Dbbv_main.c55 static Int interval_size=DEFAULT_GRAIN_SIZE; variable
167 if (bbv_thread[current_thread].dyn_instr > interval_size) {
195 bbv_thread[current_thread].dyn_instr -= interval_size;
536 if VG_INT_CLO (arg, "--interval-size", interval_size) {}
584 (Int)(bbv_thread[i].total_instr/(ULong)interval_size),
585 interval_size,
/external/libyuv/files/source/
H A Dplanar_functions.cc1221 int scale, int interval_size, int interval_offset,
1224 interval_size < 1 || interval_size > 255) {
1227 void (*ARGBQuantizeRow)(uint8* dst_argb, int scale, int interval_size,
1237 ARGBQuantizeRow(dst, scale, interval_size, interval_offset, width);
1220 ARGBQuantize(uint8* dst_argb, int dst_stride_argb, int scale, int interval_size, int interval_offset, int dst_x, int dst_y, int width, int height) argument
H A Drow_common.cc400 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size, argument
406 dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
407 dst_argb[1] = (g * scale >> 16) * interval_size + interval_offset;
408 dst_argb[2] = (r * scale >> 16) * interval_size + interval_offset;
H A Drow_posix.cc3223 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
3263 "r"(interval_size), // %3
H A Drow_win.cc3661 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
3666 movd xmm3, [esp + 12] /* interval_size */
3687 pmullw xmm0, xmm3 // * interval_size
3691 paddw xmm0, xmm4 // + interval_size / 2
/external/libyuv/files/include/libyuv/
H A Dplanar_functions.h219 // interval_size should be a value between 1 and 255.
223 int scale, int interval_size, int interval_offset,
H A Drow.h690 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size,
692 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/include/libyuv/
H A Dplanar_functions.h257 // interval_size should be a value between 1 and 255.
261 int scale, int interval_size, int interval_offset,
H A Drow.h1691 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size,
1693 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size,
1695 void ARGBQuantizeRow_NEON(uint8* dst_argb, int scale, int interval_size,
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Dplanar_functions.h257 // interval_size should be a value between 1 and 255.
261 int scale, int interval_size, int interval_offset,
H A Drow.h1599 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size,
1601 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size,
1603 void ARGBQuantizeRow_NEON(uint8* dst_argb, int scale, int interval_size,
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Drow_neon.cc2662 // dst = (dst * scale >> 16) * interval_size + interval_offset;
2663 void ARGBQuantizeRow_NEON(uint8* dst_argb, int scale, int interval_size, argument
2683 "vmul.u16 q0, q0, q9 \n" // b * interval_size
2698 "r"(interval_size), // %3
H A Drow_neon64.cc2813 // dst = (dst * scale >> 16) * interval_size + interval_offset;
2815 void ARGBQuantizeRow_NEON(uint8* dst_argb, int scale, int interval_size, argument
2835 "vmul.u16 q0, q0, q9 \n" // b * interval_size
2850 "r"(interval_size), // %3
H A Dplanar_functions.cc1547 // dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
1548 // where scale is 1 / interval_size as a fixed point value.
1554 int scale, int interval_size, int interval_offset,
1557 void (*ARGBQuantizeRow)(uint8* dst_argb, int scale, int interval_size,
1561 interval_size < 1 || interval_size > 255) {
1581 ARGBQuantizeRow(dst, scale, interval_size, interval_offset, width);
1553 ARGBQuantize(uint8* dst_argb, int dst_stride_argb, int scale, int interval_size, int interval_offset, int dst_x, int dst_y, int width, int height) argument
H A Drow_common.cc733 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size, argument
740 dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
741 dst_argb[1] = (g * scale >> 16) * interval_size + interval_offset;
742 dst_argb[2] = (r * scale >> 16) * interval_size + interval_offset;
H A Drow_posix.cc4552 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
4592 "r"(interval_size), // %3
H A Drow_win.cc5324 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
5329 movd xmm3, [esp + 12] /* interval_size */
5350 pmullw xmm0, xmm3 // * interval_size
5354 paddw xmm0, xmm4 // + interval_size / 2
/external/chromium_org/third_party/libyuv/source/
H A Drow_neon.cc2663 // dst = (dst * scale >> 16) * interval_size + interval_offset;
2664 void ARGBQuantizeRow_NEON(uint8* dst_argb, int scale, int interval_size, argument
2684 "vmul.u16 q0, q0, q9 \n" // b * interval_size
2699 "r"(interval_size), // %3
H A Dplanar_functions.cc1547 // dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
1548 // where scale is 1 / interval_size as a fixed point value.
1554 int scale, int interval_size, int interval_offset,
1557 void (*ARGBQuantizeRow)(uint8* dst_argb, int scale, int interval_size,
1561 interval_size < 1 || interval_size > 255) {
1581 ARGBQuantizeRow(dst, scale, interval_size, interval_offset, width);
1553 ARGBQuantize(uint8* dst_argb, int dst_stride_argb, int scale, int interval_size, int interval_offset, int dst_x, int dst_y, int width, int height) argument
H A Drow_common.cc733 void ARGBQuantizeRow_C(uint8* dst_argb, int scale, int interval_size, argument
740 dst_argb[0] = (b * scale >> 16) * interval_size + interval_offset;
741 dst_argb[1] = (g * scale >> 16) * interval_size + interval_offset;
742 dst_argb[2] = (r * scale >> 16) * interval_size + interval_offset;
H A Drow_posix.cc4552 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
4592 "r"(interval_size), // %3
H A Drow_win.cc5325 void ARGBQuantizeRow_SSE2(uint8* dst_argb, int scale, int interval_size, argument
5330 movd xmm3, [esp + 12] /* interval_size */
5351 pmullw xmm0, xmm3 // * interval_size
5355 paddw xmm0, xmm4 // + interval_size / 2

Completed in 747 milliseconds