Lines Matching refs:value
19 // value with zero or more of the following bits. Used in this class only.
20 // The TRACE_EVENT macros should only use the value as a bool.
123 // on the convertable value will be called at flush time.
135 #define TRACE_EVENT_API_ATOMIC_STORE(var, value) (var).store(value)
526 // value in the return arguments. This allows this API to avoid declaring any
531 uint64_t* value) { \
535 *value = type_value.as_uint; \
540 uint64_t* value) { \
542 *value = static_cast<uint64_t>(arg); \
566 unsigned char* type, uint64_t* value) {
568 *value = static_cast<uint64_t>(reinterpret_cast<intptr_t>(convertable_value));
573 std::is_convertible<T*, v8::ConvertableToTraceFormat*>::value>::type
574 SetTraceValue(std::unique_ptr<T> ptr, unsigned char* type, uint64_t* value) {
575 SetTraceValue(ptr.release(), type, value);