Home
last modified time | relevance | path

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

/third_party/gn/src/base/win/
Dregistry.cc246 DWORD local_value = 0; in ReadValueDW() local
247 LONG result = ReadValue(name, &local_value, &size, &type); in ReadValueDW()
250 *out_value = local_value; in ReadValueDW()
261 int64_t local_value = 0; in ReadInt64() local
262 DWORD size = sizeof(local_value); in ReadInt64()
263 LONG result = ReadValue(name, &local_value, &size, &type); in ReadInt64()
266 size == sizeof(local_value)) in ReadInt64()
267 *out_value = local_value; in ReadInt64()
/third_party/iowow/src/json/
Diwbinn.c1349 binn local_value; variable
1352 memcpy(&local_value, value, sizeof(binn)); in store_value()
1359 …return &local_value.vint32; // returns the pointer to the converted value, from big-endian to lit… in store_value()