Searched refs:PutValue (Results 1 – 2 of 2) sorted by relevance
317 static void Put16u(void * Short, unsigned short PutValue) in Put16u() argument320 ((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() argument360 ((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()[all …]
178 void Put32u(void * Value, unsigned PutValue);