Lines Matching refs:PutValue
317 static void Put16u(void * Short, unsigned short PutValue) in Put16u() argument
320 ((uchar *)Short)[0] = (uchar)(PutValue>>8); in Put16u()
321 ((uchar *)Short)[1] = (uchar)PutValue; in Put16u()
323 ((uchar *)Short)[0] = (uchar)PutValue; in Put16u()
324 ((uchar *)Short)[1] = (uchar)(PutValue>>8); in Put16u()
357 void Put32u(void * Value, unsigned PutValue) in Put32u() argument
360 ((uchar *)Value)[0] = (uchar)(PutValue>>24); in Put32u()
361 ((uchar *)Value)[1] = (uchar)(PutValue>>16); in Put32u()
362 ((uchar *)Value)[2] = (uchar)(PutValue>>8); in Put32u()
363 ((uchar *)Value)[3] = (uchar)PutValue; in Put32u()
365 ((uchar *)Value)[0] = (uchar)PutValue; in Put32u()
366 ((uchar *)Value)[1] = (uchar)(PutValue>>8); in Put32u()
367 ((uchar *)Value)[2] = (uchar)(PutValue>>16); in Put32u()
368 ((uchar *)Value)[3] = (uchar)(PutValue>>24); in Put32u()