Home
last modified time | relevance | path

Searched refs:row (Results 1 – 8 of 8) sorted by relevance

/hardware/ti/omap4xxx/camera/
DNV12_resize.c36 mmUint16 row,col; in VT_resizeFrame_Video_opt2_lp() local
113 for (row=0; row < cody; row++) in VT_resizeFrame_Video_opt2_lp()
117 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9); in VT_resizeFrame_Video_opt2_lp()
118 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
192 for (row=0; row < (((cody)>>1)); row++) in VT_resizeFrame_Video_opt2_lp()
199 y = (mmUint16) ((mmUint32) (row*resizeFactorY) >> 9); in VT_resizeFrame_Video_opt2_lp()
200 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
DAppCallbackNotifier.cpp478 unsigned int alignedRow, row; in copy2Dto1D() local
541 row = width*bytesPerPixel; in copy2Dto1D()
550 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()
552 bufferDst += row; in copy2Dto1D()
564 bufferDst_UV = (uint16_t *) (((uint8_t*)dst)+row*height); in copy2Dto1D()
681 row = width*bytesPerPixel; in copy2Dto1D()
682 alignedRow = ( row + ( stride -1 ) ) & ( ~ ( stride -1 ) ); in copy2Dto1D()
685 for ( int i = 0 ; i < height ; i++, bufferSrc += alignedRow, bufferDst += row) { in copy2Dto1D()
686 memcpy(bufferDst, bufferSrc, row); in copy2Dto1D()
DEncoder_libjpeg.cpp436 JSAMPROW row[1]; /* pointer to JSAMPLE row[s] */ in encode() local
445 row[0] = row_tmp; in encode()
446 jpeg_write_scanlines(&cinfo, row, 1); in encode()
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/
Dml_math_func.c555 static unsigned short inv_row_2_scale(const signed char *row) in inv_row_2_scale() argument
559 if (row[0] > 0) in inv_row_2_scale()
561 else if (row[0] < 0) in inv_row_2_scale()
563 else if (row[1] > 0) in inv_row_2_scale()
565 else if (row[1] < 0) in inv_row_2_scale()
567 else if (row[2] > 0) in inv_row_2_scale()
569 else if (row[2] < 0) in inv_row_2_scale()
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
Dml_math_func.c555 static unsigned short inv_row_2_scale(const signed char *row) in inv_row_2_scale() argument
559 if (row[0] > 0) in inv_row_2_scale()
561 else if (row[0] < 0) in inv_row_2_scale()
563 else if (row[1] > 0) in inv_row_2_scale()
565 else if (row[1] < 0) in inv_row_2_scale()
567 else if (row[2] > 0) in inv_row_2_scale()
569 else if (row[2] < 0) in inv_row_2_scale()
/hardware/invensense/60xx/mlsdk/mllite/
Dml.c1459 static unsigned short inv_row_2_scale(const signed char *row) in inv_row_2_scale() argument
1463 if (row[0] > 0) in inv_row_2_scale()
1465 else if (row[0] < 0) in inv_row_2_scale()
1467 else if (row[1] > 0) in inv_row_2_scale()
1469 else if (row[1] < 0) in inv_row_2_scale()
1471 else if (row[2] > 0) in inv_row_2_scale()
1473 else if (row[2] < 0) in inv_row_2_scale()
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Ddhdu.c431 int letter, col, row, pad; in dhd_list() local
452 row = col = 0; in dhd_list()
456 strcat(buf+row*80, cmd->name); in dhd_list()
457 pad = 18 * (col + 1) - strlen(buf+row*80); in dhd_list()
461 strcat(buf+row*80, " "); in dhd_list()
462 row++; in dhd_list()
463 if (row == nrows) { in dhd_list()
464 col++; row = 0; in dhd_list()
469 for (row = 0; row < nrows; row++) in dhd_list()
470 printf("%s\n", buf+row*80); in dhd_list()
/hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
DFmPresetList.java65 R.layout.row, in onCreate()