Searched refs:tmpBuffer (Results 1 – 3 of 3) sorted by relevance
157 final byte[] tmpBuffer = new byte[12]; in process()158 if (tmpBuffer.length != input.read(tmpBuffer)) { in process()166 final int magicNumber = ((tmpBuffer[MAGIC_NUMBER_START_OFFSET] & 0xFF) << 24) in process()167 + ((tmpBuffer[MAGIC_NUMBER_START_OFFSET + 1] & 0xFF) << 16) in process()168 + ((tmpBuffer[MAGIC_NUMBER_START_OFFSET + 2] & 0xFF) << 8) in process()169 + (tmpBuffer[MAGIC_NUMBER_START_OFFSET + 3] & 0xFF); in process()173 final int version = ((tmpBuffer[VERSION_START_OFFSET] & 0xFF) << 8) in process()174 + (tmpBuffer[VERSION_START_OFFSET + 1] & 0xFF); in process()179 final int totalHeaderSize = ((tmpBuffer[HEADER_SIZE_OFFSET] & 0xFF) << 24) in process()180 + ((tmpBuffer[HEADER_SIZE_OFFSET + 1] & 0xFF) << 16) in process()[all …]
1632 void *tmpBuffer = NULL; in Encapsulate() local1643 tmpBuffer = malloc(scanlineWidth * currStripHeight); in Encapsulate()1644 if (!tmpBuffer) { in Encapsulate()1649 memcpy(tmpBuffer, leftoverScanlineBuffer, scanlineWidth * numLeftoverScanlines); in Encapsulate()1651 whereAreWe = (ubyte *) tmpBuffer + (scanlineWidth * numLeftoverScanlines); in Encapsulate()1666 localInBuffer = tmpBuffer; in Encapsulate()1685 if (tmpBuffer) { in Encapsulate()1686 free(tmpBuffer); in Encapsulate()1866 if (tmpBuffer) { in Encapsulate()1867 free(tmpBuffer); in Encapsulate()
2463 final float tmpBuffer = 100f;2467 return tmpBuffer;2486 return Math.max(topRadius, bottomRadius) + tmpBuffer;