Searched defs:bit_cast (Results 1 - 8 of 8) sorted by relevance

/external/libchrome/base/
H A Dbit_cast.h14 // bit_cast<Dest,Source> is a template function that implements the equivalent
19 // int i = bit_cast<int32_t>(f);
53 // bit_cast<> calls memcpy() which is blessed by the standard, especially by the
54 // example in section 3.9 . Also, of course, bit_cast<> wraps up the nasty
63 inline Dest bit_cast(const Source& source) { function
65 "bit_cast requires source and destination to be the same size");
74 "non-trivially-copyable bit_cast is undefined");
76 "non-trivially-copyable bit_cast is undefined");
80 "non-trivially-copyable bit_cast is undefined");
82 "non-trivially-copyable bit_cast i
[all...]
/external/libtextclassifier/util/base/
H A Dcasts.h84 inline Dest bit_cast(const Source &source) { function in namespace:libtextclassifier
/external/webrtc/webrtc/modules/audio_processing/transient/
H A Dfile_utils.h24 inline Dest bit_cast(const Source& source) { function in namespace:webrtc
/external/compiler-rt/lib/scudo/
H A Dscudo_utils.h24 inline Dest bit_cast(const Source& source) { function in namespace:__scudo
/external/protobuf/src/google/protobuf/stubs/
H A Dcasts.h115 inline To bit_cast(const From& from) { function in namespace:google::protobuf::internal
129 using internal::bit_cast;
/external/skia/src/jumper/
H A DSkJumper_misc.h36 SI Dst bit_cast(const Src& src) { function
/external/clang/test/SemaCXX/
H A Dwarn-memset-bad-sizeof.cpp20 inline Dest bit_cast(const Source& source) { function
91 bit_cast<char*>(puc);
94 bit_cast<int*>(pf);
/external/v8/src/base/
H A Dmacros.h43 // bit_cast<Dest,Source> is a template function that implements the
49 // int i = bit_cast<int32>(f);
82 // bit_cast<> calls memcpy() which is blessed by the standard,
84 // bit_cast<> wraps up the nasty logic in one place.
97 V8_INLINE Dest bit_cast(Source const& source) { function

Completed in 446 milliseconds