Searched refs:row2 (Results 1 - 6 of 6) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/shootout/
H A Dmeteor-contest.c415 int rows_bad(char row1, char row2, int even) { argument
421 row2_shift = ((row2 << 1) & ROW_MASK) | 0x01;
423 row2_shift = (row2 >> 1) | 0x10;
424 block = ((row1 ^ row2) & row2) & ((row1 ^ row2_shift) & row2_shift);
453 int triple_is_okay(char row1, char row2, char row3, int even) { argument
457 * row2: 01011 00101 10001 10001
460 return ((row1 == 0x03) && (row2 == 0x0B) && ((row3 & 0x1C) == 0x0C)) ||
461 ((row1 == 0x01) && (row2 == 0x05) && (row3 == 0x06)) ||
462 ((row1 == 0x19) && (row2
477 int row1, row2, row3; local
[all...]
H A Dmeteor-contest.go434 func rows_bad(row1, row2 int8, even bool) int8 {
439 row2_shift = ((row2 << 1) & ROW_MASK) | 0x01
441 row2_shift = (row2 >> 1) | 0x10
443 block := ((row1 ^ row2) & row2) & ((row1 ^ row2_shift) & row2_shift)
475 func triple_is_okay(row1, row2, row3 int, even bool) bool {
479 * row2: 01011 00101 10001 10001
482 return ((row1 == 0x03) && (row2 == 0x0B) && ((row3 & 0x1C) == 0x0C)) ||
483 ((row1 == 0x01) && (row2 == 0x05) && (row3 == 0x06)) ||
484 ((row1 == 0x19) && (row2
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/i386/
H A Dpr37191.c14 __m64 row2 = _mm_cvtsi32_si64(*(unsigned*)(src + (2 * src_stride))); local
17 __m64 tmp1 = _mm_unpacklo_pi8(row2, row3);
/haiku-buildtools/isl/
H A Disl_tab.c325 struct isl_mat *mat2, unsigned row1, unsigned row2,
368 for (i = 0; i < row2 - r2; ++i) {
771 static void swap_rows(struct isl_tab *tab, int row1, int row2) argument
777 tab->row_var[row1] = tab->row_var[row2];
778 tab->row_var[row2] = t;
780 isl_tab_var_from_row(tab, row2)->index = row2;
781 tab->mat = isl_mat_swap_rows(tab->mat, row1, row2);
786 tab->row_sign[row1] = tab->row_sign[row2];
787 tab->row_sign[row2]
324 tab_mat_product(struct isl_mat *mat1, struct isl_mat *mat2, unsigned row1, unsigned row2, unsigned col1, unsigned col2, unsigned off, unsigned r1, unsigned r2, unsigned d1, unsigned d2) argument
[all...]
H A Disl_tab_pip.c722 /* Check if rows "row1" and "row2" have identical "parametric constants",
728 static int identical_parameter_line(struct isl_tab *tab, int row1, int row2) argument
733 if (isl_int_ne(tab->mat->row[row1][1], tab->mat->row[row2][1]))
737 tab->mat->row[row2][2]))
749 tab->mat->row[row2][off + col]))
3533 int row2; local
3539 for (row2 = tab->n_redundant; row2 < tab->n_row; ++row2) {
3540 if (tab->row_sign[row2]
[all...]
/haiku-buildtools/gcc/gcc/config/i386/
H A Dxmmintrin.h1235 #define _MM_TRANSPOSE4_PS(row0, row1, row2, row3) \
1237 __v4sf __r0 = (row0), __r1 = (row1), __r2 = (row2), __r3 = (row3); \
1244 (row2) = __builtin_ia32_movlhps (__t2, __t3); \

Completed in 115 milliseconds