Home
last modified time | relevance | path

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

/external/jhead/
Dexif.c322 static void Put16u(void * Short, unsigned short PutValue) in Put16u() argument
325 ((uchar *)Short)[0] = (uchar)(PutValue>>8); in Put16u()
326 ((uchar *)Short)[1] = (uchar)PutValue; in Put16u()
328 ((uchar *)Short)[0] = (uchar)PutValue; in Put16u()
329 ((uchar *)Short)[1] = (uchar)(PutValue>>8); in Put16u()
362 void Put32u(void * Value, unsigned PutValue) in Put32u() argument
365 ((uchar *)Value)[0] = (uchar)(PutValue>>24); in Put32u()
366 ((uchar *)Value)[1] = (uchar)(PutValue>>16); in Put32u()
367 ((uchar *)Value)[2] = (uchar)(PutValue>>8); in Put32u()
368 ((uchar *)Value)[3] = (uchar)PutValue; in Put32u()
[all …]
Djhead.h197 void Put32u(void * Value, unsigned PutValue);
/external/libchrome/dbus/
Dfile_descriptor.h64 void PutValue(int value) { in PutValue() function
Dmessage.cc995 value->PutValue(fd); in PopFileDescriptor()