Searched defs:fillval (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse.c73 /*@null@*/ yasm_expr *fillval, /*@null@*/ yasm_expr *maxskipval,
1594 yasm_expr *boundval, /*@null@*/ yasm_expr *fillval,
1617 return yasm_bc_create_align(boundval, fillval, maxskipval,
1593 gas_parser_align(yasm_parser_gas *parser_gas, yasm_section *sect, yasm_expr *boundval, yasm_expr *fillval, yasm_expr *maxskipval, int power2) argument
/external/opencv/cxcore/src/
H A Dcxcmp.cpp785 int fillval = -1; local
787 fillval = cmp_op == CV_CMP_NE || cmp_op == CV_CMP_GE || cmp_op == CV_CMP_GT ? 255 : 0;
789 fillval = cmp_op == CV_CMP_NE || cmp_op == CV_CMP_LE || cmp_op == CV_CMP_LT ? 255 : 0;
790 if( fillval >= 0 )
792 fillval ^= invflag ? 255 : 0;
794 memset( dst->data.ptr + y*dst_step, fillval, size.width );

Completed in 102 milliseconds