Searched refs:oldCount (Results 1 - 3 of 3) sorted by relevance
| /xsrc/external/mit/libxkbfile/dist/src/ |
| H A D | xkmread.c | 57 XkmInsureSize(XPointer oldPtr, int oldCount, int *newCountRtrn, int elemSize) argument 66 else if (oldCount < newCount) { 71 bzero(&tmp[oldCount * elemSize], (newCount - oldCount) * elemSize); 74 else if (newCount < oldCount) { 75 *newCountRtrn = oldCount;
|
| /xsrc/external/mit/xorg-server.old/dist/xkb/ |
| H A D | xkmread.c | 70 XkmInsureSize(void *oldPtr,int oldCount,int *newCountRtrn,int elemSize) argument 79 else if (oldCount<newCount) { 83 memset(&tmp[oldCount*elemSize], 0, (newCount-oldCount)*elemSize); 86 else if (newCount<oldCount) { 87 *newCountRtrn= oldCount;
|
| /xsrc/external/mit/xorg-server/dist/xkb/ |
| H A D | xkmread.c | 57 XkmInsureSize(void *oldPtr, int oldCount, int *newCountRtrn, int elemSize) argument 66 else if (oldCount < newCount) { 71 memset(&tmp[oldCount * elemSize], 0, 72 (newCount - oldCount) * elemSize); 75 else if (newCount < oldCount) { 76 *newCountRtrn = oldCount;
|
Completed in 7 milliseconds