Searched refs:temp_value (Results 1 - 9 of 9) sorted by relevance

/external/lldb/source/Core/
H A DScalar.cpp35 Scalar& temp_value, // A modifiable temp value than can be used to hold either the promoted lhs or rhs object
43 // have the same type), then the temp_value will not get used.
53 temp_value = rhs; // Copy right hand side into the temp value
54 if (temp_value.Promote(lhs_type)) // Promote it
55 promoted_rhs_ptr = &temp_value; // Update the pointer for the promoted right hand side
60 temp_value = lhs; // Copy left hand side value into the temp value
61 if (temp_value.Promote(rhs_type)) // Promote it
62 promoted_lhs_ptr = &temp_value; // Update the pointer for the promoted left hand side
974 Scalar temp_value; local
977 if ((m_type = PromoteToMaxType(*this, rhs, temp_value,
31 PromoteToMaxType( const Scalar& lhs, const Scalar& rhs, Scalar& temp_value, const Scalar* &promoted_lhs_ptr, const Scalar* &promoted_rhs_ptr ) argument
1517 Scalar temp_value; local
1544 Scalar temp_value; local
1570 Scalar temp_value; local
1600 Scalar temp_value; local
1626 Scalar temp_value; local
1656 Scalar temp_value; local
1686 Scalar temp_value; local
1716 Scalar temp_value; local
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_basic_handshake_stream.cc102 std::string temp_value; local
103 while (headers->EnumerateHeader(&state, name, &temp_value)) {
106 *value = temp_value;
193 std::string temp_value; local
195 &state, websockets::kSecWebSocketProtocol, &temp_value))
197 value = temp_value;
/external/chromium_org/net/http/
H A Dhttp_content_disposition.cc258 std::string temp_value; local
273 temp_value = t.token();
282 if (temp_charset.empty() || temp_value.empty())
285 value_chars->swap(temp_value);
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcore_options_handler.cc551 scoped_ptr<base::Value> temp_value;
568 temp_value.reset(new base::FundamentalValue(int_value));
569 value = temp_value.get();
591 temp_value.reset(new base::StringValue(fixed.spec()));
592 value = temp_value.get();
602 temp_value.reset(
604 value = temp_value.get();
/external/ceres-solver/examples/
H A Dlibmv_bundle_adjuster.cc316 unsigned int temp_value = static_cast<unsigned int>(value); local
317 return ((temp_value >> 24)) |
318 ((temp_value << 8) & 0x00ff0000) |
319 ((temp_value >> 8) & 0x0000ff00) |
320 ((temp_value << 24));
/external/chromium_org/ui/views/accessibility/
H A Dnative_view_accessibility_win.cc746 base::string16 temp_value = state.value; local
748 if (!temp_value.empty()) {
750 *value = SysAllocString(temp_value.c_str());
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsysinfo.cc269 const int temp_value = strtol(line, &err, 10); local
271 *value = temp_value;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsysinfo.cc254 const int temp_value = strtol(line, &err, 10); local
256 *value = temp_value;
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_sec.c196 BT_OCTET16 temp_value = {0}; local
213 if (memcmp(btm_cb.devcb.id_keys.ir, &temp_value, sizeof(BT_OCTET16)) == 0)

Completed in 1908 milliseconds