Home
last modified time | relevance | path

Searched refs:sz4 (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/program/
Dprog_parameter.c117 const GLuint sz4 = (size + 3) / 4; /* no. of new param slots needed */ in _mesa_add_parameter() local
121 if (oldNum + sz4 > paramList->Size) { in _mesa_add_parameter()
123 paramList->Size = paramList->Size + 4 * sz4; in _mesa_add_parameter()
148 paramList->NumParameters = oldNum + sz4; in _mesa_add_parameter()
151 sz4 * sizeof(struct gl_program_parameter)); in _mesa_add_parameter()
153 for (i = 0; i < sz4; i++) { in _mesa_add_parameter()
/external/mesa3d/src/mesa/program/
Dprog_parameter.c117 const GLuint sz4 = (size + 3) / 4; /* no. of new param slots needed */ in _mesa_add_parameter() local
121 if (oldNum + sz4 > paramList->Size) { in _mesa_add_parameter()
123 paramList->Size = paramList->Size + 4 * sz4; in _mesa_add_parameter()
148 paramList->NumParameters = oldNum + sz4; in _mesa_add_parameter()
151 sz4 * sizeof(struct gl_program_parameter)); in _mesa_add_parameter()
153 for (i = 0; i < sz4; i++) { in _mesa_add_parameter()
/external/chromium_org/third_party/npapi/npspy/common/
Dformat.cpp727 char sz4[1024] = {'\0'}; in formatLogItem() local
798 FormatPCHARArgument(sz4, sizeof(sz4), &plis->arg4); in formatLogItem()
799 *output = StringPrintf("NPN_Write(%#08lx, %#08lx, %li, %s)", dw1, dw2, (int32)dw3, sz4); in formatLogItem()