Lines Matching refs:id
41 u32 id; member
110 static u32 BSearchIndex(FontData_t* pFont, u32 id);
256 u32 id = (u32) pStr[cIn]; in DEMOFontPuts() local
261 if(id == 10) in DEMOFontPuts()
268 else if(id >= 32 && id <= 127) in DEMOFontPuts()
271 index = BSearchIndex(pFont,id); in DEMOFontPuts()
458 u32 id = pCharData[i*8 + 0]; in GetFontCharData() local
469 pFont->pCharDataBuffer[i].id = id; in GetFontCharData()
573 static u32 BSearchIndex(FontData_t* pFont, u32 id) in BSearchIndex() argument
580 if (id >= 32 && id < 32+pFont->numCharData && in BSearchIndex()
581 pFont->pCharDataBuffer[id-32].id == id ) in BSearchIndex()
582 return id-32; in BSearchIndex()
591 if( pFont->pCharDataBuffer[mid].id < id ) in BSearchIndex()
595 else if( id < pFont->pCharDataBuffer[mid].id ) in BSearchIndex()