HomeSort by relevance Sort by last modified time
    Searched refs:bit_cast (Results 1 - 25 of 36) sorted by null

1 2

  /art/runtime/base/
casts.h 82 inline Dest bit_cast(const Source& source) { function in namespace:art
  /frameworks/ex/variablespeed/jni/
macros.h 56 inline Dest bit_cast(const Source& source) { function
sola_time_scaler.cc 40 score += ((bit_cast<int32>(*buffer1++) ^ bit_cast<int32>(*buffer2++)) >= 0)
  /external/chromium_org/chrome/browser/metrics/
compression_utils.cc 35 stream.next_in = bit_cast<Bytef*>(source);
84 bit_cast<const Bytef*>(input.data()),
  /external/chromium_org/remoting/client/plugin/
pepper_util.cc 61 bit_cast<in_addr>(ipv4_addr.addr)));
69 bit_cast<in6_addr>(ipv6_addr.addr)));
  /external/chromium/net/base/
gzip_filter.cc 212 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_);
214 zlib_stream_.get()->next_out = bit_cast<Bytef*>(dest_buffer);
227 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
254 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
278 zlib_stream_.get()->next_in = bit_cast<Bytef*>(&dummy_head[0]);
280 zlib_stream_.get()->next_out = bit_cast<Bytef*>(&dummy_output[0]);
  /external/chromium_org/net/base/
gzip_filter.cc 207 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_);
209 zlib_stream_.get()->next_out = bit_cast<Bytef*>(dest_buffer);
222 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
249 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
273 zlib_stream_.get()->next_in = bit_cast<Bytef*>(&dummy_head[0]);
275 zlib_stream_.get()->next_out = bit_cast<Bytef*>(&dummy_output[0]);
  /external/chromium_org/sandbox/win/src/
service_resolver_32.cc 203 bit_cast<const void*>(function_code.stub),
214 bit_cast<const wchar_t*>(ki_system_call), &module_1))
254 intercepted_code.stub = bit_cast<ULONG>(&full_remote_thunk->internal_thunk);
310 relative += bit_cast<ULONG>(target_) - bit_cast<ULONG>(remote_thunk);
320 relative_jump_ = bit_cast<ULONG>(&full_thunk->internal_thunk) -
321 bit_cast<ULONG>(target_) - kJmp32Size;
service_resolver_unittest.cc 84 ULONG source_addr = bit_cast<ULONG>(source);
85 ULONG target_addr = bit_cast<ULONG>(target);
Wow64.cc 154 bit_cast<ULONG>(buffer);
  /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/chromium/chrome/common/
visitedlink_common.cc 95 return bit_cast<Fingerprint, uint8[8]>(
  /external/chromium_org/components/visitedlink/common/
visitedlink_common.cc 98 return bit_cast<Fingerprint, uint8[8]>(
  /external/chromium_org/third_party/cld/base/
casts.h 90 // bit_cast<Dest,Source> is a template function that implements the
96 // int i = bit_cast<int32>(f);
129 // bit_cast<> calls memcpy() which is blessed by the standard,
131 // bit_cast<> wraps up the nasty logic in one place.
146 inline Dest bit_cast(const Source& source) { function
basictypes.h 265 // bit_cast<Dest,Source> is a template function that implements the
271 // int i = bit_cast<int32>(f);
304 // bit_cast<> calls memcpy() which is blessed by the standard,
306 // bit_cast<> wraps up the nasty logic in one place.
320 inline Dest bit_cast(const Source& source) { function
  /external/chromium_org/base/time/
time_win.cc 58 // Need to bit_cast to fix alignment, then divide by 10 to convert
61 return bit_cast<int64, FILETIME>(ft) / 10;
68 // Multiply by 10 to convert milliseconds to 100-nanoseconds. Bit_cast will
70 *ft = bit_cast<FILETIME, int64>(us * 10);
144 if (bit_cast<int64, FILETIME>(ft) == 0)
154 return bit_cast<FILETIME, int64>(0);
  /external/chromium_org/gpu/command_buffer/tests/
gl_readback_unittests.cc 100 return bit_cast<float>(result);
113 return bit_cast<float>(result);
116 return bit_cast<float>(result);
124 return bit_cast<float>(result);
  /external/openfst/src/include/fst/
compat.h 67 inline Dest bit_cast(const Source& source) { function in namespace:fst
  /external/chromium/base/
basictypes.h 273 // bit_cast<Dest,Source> is a template function that implements the
279 // int i = bit_cast<int32>(f);
312 // bit_cast<> calls memcpy() which is blessed by the standard,
314 // bit_cast<> wraps up the nasty logic in one place.
328 inline Dest bit_cast(const Source& source) { function
time_win.cc 58 // Need to bit_cast to fix alignment, then divide by 10 to convert
61 return bit_cast<int64, FILETIME>(ft) / 10;
68 // Multiply by 10 to convert milliseconds to 100-nanoseconds. Bit_cast will
70 *ft = bit_cast<FILETIME, int64>(us * 10);
  /external/chromium_org/base/
basictypes.h 278 // bit_cast<Dest,Source> is a template function that implements the
284 // int i = bit_cast<int32>(f);
317 // bit_cast<> calls memcpy() which is blessed by the standard,
319 // bit_cast<> wraps up the nasty logic in one place.
333 inline Dest bit_cast(const Source& source) { function
  /art/compiler/utils/arm/
constants_arm.h 337 return bit_cast<float, uint32_t>(imm32);
344 return bit_cast<double, uint64_t>(imm64);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
basictypes.h 197 // bit_cast<Dest,Source> implements the equivalent of
202 // bit_cast<> calls memcpy() which is blessed by the standard,
212 inline Dest bit_cast(const Source& source) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
basictypes.h 197 // bit_cast<Dest,Source> implements the equivalent of
202 // bit_cast<> calls memcpy() which is blessed by the standard,
212 inline Dest bit_cast(const Source& source) { function
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 99 bit_cast<FstInitFunc>(dlsym(handle, init_name.c_str()));

Completed in 712 milliseconds

1 2