Home | History | Annotate | Download | only in jhead

Lines Matching refs:Short

317 static void Put16u(void * Short, unsigned short PutValue)
320 ((uchar *)Short)[0] = (uchar)(PutValue>>8);
321 ((uchar *)Short)[1] = (uchar)PutValue;
323 ((uchar *)Short)[0] = (uchar)PutValue;
324 ((uchar *)Short)[1] = (uchar)(PutValue>>8);
331 int Get16u(void * Short)
334 return (((uchar *)Short)[0] << 8) | ((uchar *)Short)[1];
336 return (((uchar *)Short)[1] << 8) | ((uchar *)Short)[0];
394 case FMT_SSHORT: printf("%hd",(signed short)Get16u(ValuePtr)); s=2; break;
446 case FMT_SSHORT: Value = (signed short)Get16u(ValuePtr); break;
1062 static const TagTable_t* TagToTagTableEntry(unsigned short tag)
1109 // short strings can fit right in the long, otherwise have to
1121 // short strings can fit right in the long, otherwise have to
1198 unsigned short NumEntries;