Home
last modified time | relevance | path

Searched refs:PutValue (Results 1 – 2 of 2) sorted by relevance

/external/jhead/
Dexif.c317 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()
[all …]
Djhead.h178 void Put32u(void * Value, unsigned PutValue);