Lines Matching refs:ttf
352 sal_uInt8* ttf = (sal_uInt8*)smalloc(s); in StreamToMemory() local
355 PutUInt32(_this->tag, ttf, 0, 1); in StreamToMemory()
356 PutUInt16(numTables, ttf, 4, 1); in StreamToMemory()
357 PutUInt16(searchRange, ttf, 6, 1); in StreamToMemory()
358 PutUInt16(entrySelector, ttf, 8, 1); in StreamToMemory()
359 PutUInt16(rangeShift, ttf, 10, 1); in StreamToMemory()
363 PutUInt32(te[i].tag, ttf + 12, 16 * i, 1); in StreamToMemory()
364 PutUInt32(CheckSum((sal_uInt32 *) te[i].data, te[i].length), ttf + 12, 16 * i + 4, 1); in StreamToMemory()
365 PutUInt32(offset, ttf + 12, 16 * i + 8, 1); in StreamToMemory()
366 PutUInt32(te[i].length, ttf + 12, 16 * i + 12, 1); in StreamToMemory()
369 head = ttf + offset; in StreamToMemory()
372 memcpy(ttf+offset, te[i].data, (te[i].length + 3) & (sal_uInt32) ~3 ); in StreamToMemory()
379 p = (sal_uInt32 *) ttf; in StreamToMemory()
383 *ptr = ttf; in StreamToMemory()