HomeSort by relevance Sort by last modified time
    Searched defs:bit_cast (Results 1 - 14 of 14) sorted by null

  /external/libchrome/base/
bit_cast.h 15 // bit_cast<Dest,Source> is a template function that implements the equivalent
20 // int i = bit_cast<int32_t>(f);
54 // bit_cast<> calls memcpy() which is blessed by the standard, especially by the
55 // example in section 3.9 . Also, of course, bit_cast<> wraps up the nasty
64 inline Dest bit_cast(const Source& source) { function
66 "bit_cast requires source and destination to be the same size");
68 "bit_cast requires the destination type to be copyable");
70 "bit_cast requires the source type to be copyable");
  /external/libtextclassifier/util/base/
casts.h 24 // bit_cast<Dest, Source> is a template function that implements the equivalent
29 // int i = bit_cast<int32>(f);
62 // bit_cast<> calls memcpy() which is blessed by the standard, especially by the
63 // example in section 3.9 . Also, of course, bit_cast<> wraps up the nasty
82 inline Dest bit_cast(const Source &source) { function in namespace:libtextclassifier2
  /external/tensorflow/tensorflow/core/lib/core/
casts.h 30 // bit_cast<Dest,Source> is a template function that implements the
36 // int i = bit_cast<int32>(f);
69 // bit_cast<> calls memcpy() which is blessed by the standard,
71 // bit_cast<> wraps up the nasty logic in one place.
90 inline Dest bit_cast(const Source& source) { function in namespace:tensorflow
  /external/webrtc/webrtc/modules/audio_processing/transient/
file_utils.h 24 inline Dest bit_cast(const Source& source) { function in namespace:webrtc
  /external/tensorflow/tensorflow/stream_executor/lib/
casts.h 27 // port::bit_cast<Dest,Source> is a template function that implements the
33 // int i = port::bit_cast<int32>(f);
66 // port::bit_cast<> calls memcpy() which is blessed by the standard,
68 // port::bit_cast<> wraps up the nasty logic in one place.
87 inline Dest bit_cast(const Source& source) { function in namespace:perftools::gputools::port
  /art/libartbase/base/
casts.h 90 inline Dest bit_cast(const Source& source) { function in namespace:art
  /external/protobuf/src/google/protobuf/stubs/
casts.h 115 inline To bit_cast(const From& from) { function in namespace:google::protobuf::internal
129 using internal::bit_cast;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
casts.h 115 inline To bit_cast(const From& from) { function in namespace:google::protobuf::internal
129 using internal::bit_cast;
  /external/compiler-rt/lib/scudo/
scudo_utils.h 24 inline Dest bit_cast(const Source& source) { function in namespace:__scudo
  /external/skia/src/jumper/
SkJumper_misc.h 36 SI Dst bit_cast(const Src& src) { function
  /external/skqp/src/jumper/
SkJumper_misc.h 36 SI Dst bit_cast(const Src& src) { function
  /external/clang/test/SemaCXX/
warn-memset-bad-sizeof.cpp 20 inline Dest bit_cast(const Source& source) { function
91 bit_cast<char*>(puc);
94 bit_cast<int*>(pf);
  /external/v8/src/base/
macros.h 43 // 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
  /frameworks/base/libs/protoutil/src/
ProtoOutputStream.cpp 533 * bit_cast
536 inline To bit_cast(From const &from) { function in namespace:android::util
546 mBuffer.writeRawFixed64(bit_cast<double, uint64_t>(val));
553 mBuffer.writeRawFixed32(bit_cast<float, uint32_t>(val));

Completed in 1047 milliseconds