HomeSort by relevance Sort by last modified time
    Searched full:static_cast (Results 451 - 475 of 7695) sorted by null

<<11121314151617181920>>

  /external/pdfium/xfa/src/fwl/src/lightwidget/
checkbox.cpp 39 return static_cast<IFWL_CheckBox*>(m_pIface)->GetCheckState();
42 return static_cast<IFWL_CheckBox*>(m_pIface)->SetCheckState(iCheck);
  /external/skia/gm/
imagefromyuvtextures.cpp 50 SkPMColor* rgbColors = static_cast<SkPMColor*>(rgbBmp.getPixels());
60 yPixels = static_cast<unsigned char*>(fYUVBmps[0].getPixels());
61 uvPixels[0] = static_cast<signed char*>(fYUVBmps[1].getPixels());
62 uvPixels[1] = static_cast<signed char*>(fYUVBmps[2].getPixels());
67 yPixels[i] = static_cast<unsigned char>(0.299f * SkGetPackedR32(rgbColors[i]) +
87 uvPixels[0][uvIndex] = static_cast<signed char>(
89 uvPixels[1][uvIndex] = static_cast<signed char>(
148 static_cast<SkYUVColorSpace>(space),
  /external/v8/src/base/
bits.cc 28 int64_t const value = static_cast<int64_t>(lhs) * static_cast<int64_t>(rhs);
  /external/v8/src/compiler/
node-marker.h 55 return static_cast<State>(NodeMarkerBase::Get(node));
59 NodeMarkerBase::Set(node, static_cast<Mark>(state));
  /external/v8/src/debug/
debug-frames.h 68 DCHECK(IsAligned(OffsetFrom(id), static_cast<intptr_t>(4)));
73 return static_cast<StackFrame::Id>(wrapped << 2);
  /external/v8/src/interpreter/
bytecode-register-allocator.cc 53 if (static_cast<int>(count) > next_consecutive_count_) {
56 next_consecutive_count_ = static_cast<int>(count);
  /external/valgrind/docs/internals/
SPEC-notes.txt 21 const long double tolerance = std::max (static_cast<long double>
23 static_cast<long double>(std::numeric_limits<long
  /external/vulkan-validation-layers/libs/glm/gtx/
color_space.inl 18 if(hsv.y == static_cast<T>(0))
79 if(Max != static_cast<T>(0))
82 T h = static_cast<T>(0);
86 h = static_cast<T>(0) + T(60) * (rgbColor.g - rgbColor.b) / Delta;
89 h = static_cast<T>(120) + T(60) * (rgbColor.b - rgbColor.r) / Delta;
92 h = static_cast<T>(240) + T(60) * (rgbColor.r - rgbColor.g) / Delta;
102 hsv.y = static_cast<T>(0);
103 hsv.x = static_cast<T>(0);
  /external/webrtc/webrtc/base/
urlencode.cc 54 *(dest++) = static_cast<char>(value);
72 return static_cast<int>(dest - start);
101 while (static_cast<unsigned>(dest - start) < max && *source) {
102 unsigned char ch = static_cast<unsigned char>(*source);
108 if (static_cast<unsigned>(dest - start) + 4 > max) {
117 ASSERT(static_cast<unsigned int>(dest - start) < max);
120 return static_cast<int>(dest - start);
159 int needed_length = static_cast<int>(decoded.length()) * 3 + 1;
  /external/webrtc/webrtc/libjingle/xmllite/
xmlparser.cc 27 (static_cast<XmlParser *>(userData))->ExpatStartElement(name, atts);
32 (static_cast<XmlParser *>(userData))->ExpatEndElement(name);
37 (static_cast<XmlParser *>(userData))->ExpatCharacterData(text, len);
42 (static_cast<XmlParser *>(userData))->ExpatXmlDecl(ver, enc, st);
155 if (XML_Parse(expat_, data, static_cast<int>(len), isFinal) !=
246 *line = static_cast<unsigned long>(line_number_);
250 *column = static_cast<unsigned long>(column_number_);
254 *byte_index = static_cast<unsigned long>(byte_index_);
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_resampler.cc 41 return static_cast<int>(in_length / num_audio_channels);
59 return static_cast<int>(out_length / num_audio_channels);
  /external/webrtc/webrtc/modules/audio_coding/codecs/pcm16b/
audio_decoder_pcm16b.cc 39 return static_cast<int>(ret);
45 return static_cast<int>(encoded_len / (2 * Channels()));
  /external/webrtc/webrtc/modules/audio_coding/neteq/
decision_logic_normal.cc 71 static_cast<uint32_t>(5 * 8000 * fs_mult_);
91 int32_t timestamp_diff = static_cast<int32_t>(
92 static_cast<uint32_t>(generated_noise_samples_ + target_timestamp) -
94 int32_t optimal_level_samp = static_cast<int32_t>(
187 if (static_cast<uint32_t>(generated_noise_samples_ + target_timestamp) >=
209 static_cast<size_t>(kAllowMergeWithoutExpandMs * fs_mult_ * 8))) {
226 static_cast<uint32_t>(output_size_samples_ * kReinitAfterExpands);
231 static_cast<uint32_t>(output_size_samples_ * num_consecutive_expands_);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtp_generator.cc 27 timestamp_ += static_cast<uint32_t>(payload_length_samples);
52 if (timestamp_ - static_cast<uint32_t>(payload_length_samples) <=
  /external/webrtc/webrtc/system_wrappers/include/
fix_interlocked_exchange_pointer_win.h 31 return reinterpret_cast<void*>(static_cast<LONG_PTR>(InterlockedExchange(
33 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
  /external/webrtc/webrtc/system_wrappers/source/
atomic32_win.cc 31 return static_cast<int32_t>(InterlockedIncrement(
36 return static_cast<int32_t>(InterlockedDecrement(
  /frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/plugin/
InputSource.cpp 32 mPolicySubsystem(static_cast<const PolicySubsystem *>(
36 mId = static_cast<audio_source_t>(context.getItemAsInteger(MappingKeyIdentifier));
Strategy.cpp 34 mPolicySubsystem(static_cast<const PolicySubsystem *>(
38 mId = static_cast<routing_strategy>(context.getItemAsInteger(MappingKeyIdentifier));
  /frameworks/base/libs/hwui/
FrameInfo.cpp 43 == static_cast<int>(FrameInfoIndex::NumIndexes),
46 static_assert(static_cast<int>(FrameInfoIndex::NumIndexes) == 16,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
pixelutils.cpp 26 uint32* pInPix = static_cast<uint32*>(env->GetDirectBufferAddress(input));
27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output));
  /frameworks/rs/
rsApiElement.cpp 26 Element *e = static_cast<Element *>(elem);
37 Element *e = static_cast<Element *>(elem);
  /ndk/sources/cxx-stl/gabi++/tests/
catch_class_04.cpp 80 assert(static_cast<C1&>(a).id_ == 4);
81 assert(static_cast<C2&>(a).id_ == 3);
82 assert(static_cast<B&>(a).id_ == 8);
101 assert(static_cast<const C1&>(a).id_ == 4);
102 assert(static_cast<const C2&>(a).id_ == 3);
103 assert(static_cast<const B&>(a).id_ == 8);
133 assert(static_cast<const B&>(a).id_ == 8);
186 assert(static_cast<const B&>(c1).id_ == 8);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/win32/
support.cpp 40 size_t buffer_size = static_cast<size_t>(count) + 1;
41 char* p = static_cast<char*>(malloc(buffer_size));
66 const size_t terminated_sequence = static_cast<size_t>(0);
67 //const size_t invalid_sequence = static_cast<size_t>(-1);
68 const size_t incomplete_sequence = static_cast< size_t>(-2);
102 return static_cast<size_t>(-1);
118 //const size_t invalid_sequence = static_cast<size_t>(-1);
162 return static_cast<size_t>(-1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcat/syserr.errcat.virtuals/
default_error_condition.pass.cpp 22 std::error_condition e_cond = e_cat.default_error_condition(static_cast<int>(std::errc::not_a_directory));
24 assert(e_cond.value() == static_cast<int>(std::errc::not_a_directory));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.observers/
bool.pass.cpp 24 assert(static_cast<bool>(ec));
28 assert(!static_cast<bool>(ec));

Completed in 932 milliseconds

<<11121314151617181920>>