Searched defs:iHeight (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c71 int iHeight,
94 if (iWidth <= 0 || iHeight <= 0) {
120 if (iHeight > stw_dev->max_2d_length) {
122 iHeight = stw_dev->max_2d_length;
163 rect.bottom = rect.top + iHeight;
202 assert(rect.bottom - rect.top == iHeight);
68 wglCreatePbufferARB(HDC hCurrentDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList) argument
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
H A Dvie_autotest_defines.h61 AutoTestSize(unsigned int iWidth, unsigned int iHeight) : argument
62 width(iWidth), height(iHeight) {
84 AutoTestRect(unsigned int iX, unsigned int iY, unsigned int iWidth, unsigned int iHeight) : argument
85 size(iX, iY), origin(iWidth, iHeight) {
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_ext_pbuffer.c71 int iHeight,
94 if (iWidth <= 0 || iHeight <= 0) {
120 if (iHeight > stw_dev->max_2d_length) {
122 iHeight = stw_dev->max_2d_length;
163 rect.bottom = rect.top + iHeight;
202 assert(rect.bottom - rect.top == iHeight);
68 wglCreatePbufferARB(HDC hCurrentDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList) argument
/external/libpng/contrib/visupng/
H A DPngFile.c296 int iWidth, int iHeight, png_color bkgColor)
343 png_set_IHDR(png_ptr, info_ptr, iWidth, iHeight, ciBitDepth,
361 if ((ppbRowPointers = (png_bytepp) malloc(iHeight * sizeof(png_bytep))) == NULL)
366 for (i = 0; i < iHeight; i++)
295 PngSaveImage(PTSTR pstrFileName, png_byte *pDiData, int iWidth, int iHeight, png_color bkgColor) argument
/external/chromium_org/third_party/npapi/npspy/common/
H A Dformat.cpp877 int32 iHeight = ((NPSize *)plis->arg3.pData)->height; local
879 dw1,FormatNPPVariable((NPPVariable)dw2),dw3,iWidth,iHeight);
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkWGL_win.cpp85 int iHeight,
87 return fCreatePbuffer(hDC, iPixelFormat, iWidth, iHeight, piAttribList);
82 createPbuffer(HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList) const argument
/external/chromium_org/ppapi/lib/gl/include/EGL/
H A Deglext.h250 EGLint iHeight; member in struct:EGLClientPixmapHI
/external/chromium_org/third_party/mesa/src/include/EGL/
H A Deglext.h250 EGLint iHeight; member in struct:EGLClientPixmapHI
/external/mesa3d/include/EGL/
H A Deglext.h250 EGLint iHeight; member in struct:EGLClientPixmapHI
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render.cpp1446 FX_INT32 iWidth, iHeight, iPitch; local
1452 iHeight = bitmap_rect.Height();
1454 if (iWidth * iHeight < 1) {
1457 if (iPitch * iHeight <= _FPDFAPI_IMAGESIZE_LIMIT_ &&
1458 m_pBitmapDevice->Create(iWidth, iHeight, dibFormat)) {
/external/qemu/distrib/sdl-1.2.15/src/video/os2fslib/
H A DSDL_os2fslib.c530 int iTop, iLeft, iWidth, iHeight; local
588 iHeight = ((rcl.yTop-rcl.yBottom) * pVideo->hidden->SrcBufferDesc.uiYResolution + swp.cy-1)
592 iHeight+=iYScaleError2;
596 if (iTop+iHeight>pVideo->hidden->SrcBufferDesc.uiYResolution) iHeight = pVideo->hidden->SrcBufferDesc.uiYResolution-iTop;
601 iTop, iLeft, iWidth, iHeight,
608 FSLIB_BITBLT(hwnd, pVideo->hidden->pchSrcBuffer, iTop, iLeft, iWidth, iHeight);
/external/chromium_org/third_party/khronos/EGL/
H A Deglext.h250 EGLint iHeight; member in struct:EGLClientPixmapHI
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c123 ** varint iHeight; (height from leaf level, always 0)
169 ** varint iHeight; (height from leaf level, always >0)
1320 int iHeight; /* Height of this node in tree */ local
1324 sqlite3Fts3GetVarint32(zNode, &iHeight);
1328 if( rc==SQLITE_OK && iHeight>1 ){
H A Dfts3_write.c1612 int iHeight,
1616 assert( iHeight>=1 && iHeight<128 );
1618 pTree->aData[nStart] = (char)iHeight;
1639 int iHeight, /* Height of this node in tree */
1650 int nStart = fts3TreeFinishNode(pTree, iHeight, iLeaf);
1659 int nStart = fts3TreeFinishNode(pIter, iHeight, iNextLeaf);
1669 p, pTree->pParent, iHeight+1, iFree, iNextFree, piLast, paRoot, pnRoot
1610 fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ) argument
1636 fts3NodeWrite( Fts3Table *p, SegmentNode *pTree, int iHeight, sqlite3_int64 iLeaf, sqlite3_int64 iFree, sqlite3_int64 *piLast, char **paRoot, int *pnRoot ) argument
/external/chromium_org/third_party/angle/include/EGL/
H A Deglext.h578 EGLint iHeight; member in struct:EGLClientPixmapHI
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c987 ** height iHeight (if iHeight==0, then the node is a leaf). Descend
994 int iHeight,
1006 assert( iHeight>=0 );
1008 if( iHeight==0 ){
1013 if( rc!=SQLITE_OK || isEof || iHeight==0 ){
1028 rc = descendToCell(pRtree, pCursor, iHeight-1, &isEof);
1101 int iHeight = 0; local
1107 rc = descendToCell(pRtree, pCsr, iHeight, &isEof);
1119 iHeight
991 descendToCell( Rtree *pRtree, RtreeCursor *pCursor, int iHeight, int *pEof ) argument
1555 ChooseLeaf( Rtree *pRtree, RtreeCell *pCell, int iHeight, RtreeNode **ppLeaf ) argument
2340 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
2416 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c141 ** varint iHeight; (height from leaf level, always 0)
187 ** varint iHeight; (height from leaf level, always >0)
4296 static InteriorBlock *interiorBlockNew(int iHeight, sqlite_int64 iChildBlock, argument
4307 n = putVarint(c, iHeight);
4380 int iHeight; /* from 0 at leaves. */ member in struct:InteriorWriter
4395 static void interiorWriterInit(int iHeight, const char *pTerm, int nTerm, argument
4399 assert( iHeight>0 );
4402 pWriter->iHeight = iHeight;
4407 block = interiorBlockNew(iHeight, iChildBloc
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c114381 int iHeight; /* Height of this node in tree */ local
121527 fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ) argument
121553 fts3NodeWrite( Fts3Table *p, SegmentNode *pTree, int iHeight, sqlite3_int64 iLeaf, sqlite3_int64 iFree, sqlite3_int64 *piLast, char **paRoot, int *pnRoot ) argument
125259 descendToCell( Rtree *pRtree, RtreeCursor *pCursor, int iHeight, int *pEof ) argument
125369 int iHeight = 0; local
125823 ChooseLeaf( Rtree *pRtree, RtreeCell *pCell, int iHeight, RtreeNode **ppLeaf ) argument
126608 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
126684 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c128690 int iHeight; /* Height of this node in tree */ local
138788 fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ) argument
138814 fts3NodeWrite( Fts3Table *p, SegmentNode *pTree, int iHeight, sqlite3_int64 iLeaf, sqlite3_int64 iFree, sqlite3_int64 *piLast, char **paRoot, int *pnRoot ) argument
141174 fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild) argument
146490 ChooseLeaf( Rtree *pRtree, RtreeCell *pCell, int iHeight, RtreeNode **ppLeaf ) argument
147037 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
147113 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c128710 int iHeight; /* Height of this node in tree */ local
138820 fts3TreeFinishNode( SegmentNode *pTree, int iHeight, sqlite3_int64 iLeftChild ) argument
138846 fts3NodeWrite( Fts3Table *p, SegmentNode *pTree, int iHeight, sqlite3_int64 iLeaf, sqlite3_int64 iFree, sqlite3_int64 *piLast, char **paRoot, int *pnRoot ) argument
141206 fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild) argument
146522 ChooseLeaf( Rtree *pRtree, RtreeCell *pCell, int iHeight, RtreeNode **ppLeaf ) argument
147069 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
147145 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
[all...]

Completed in 2877 milliseconds