Searched refs:bit_cast (Results 1 - 25 of 84) sorted by relevance

1234

/external/chromium_org/v8/src/
H A Dproperty.cc16 visitor->VisitPointer(bit_cast<Object**>(&current->holder_));
17 visitor->VisitPointer(bit_cast<Object**>(&current->transition_));
H A Ddouble.h14 inline uint64_t double_to_uint64(double d) { return bit_cast<uint64_t>(d); }
15 inline double uint64_to_double(uint64_t d64) { return bit_cast<double>(d64); }
/external/chromium_org/v8/src/compiler/
H A Dcommon-node-cache.h26 return float64_constants_.Find(zone_, bit_cast<int64_t>(value));
35 return number_constants_.Find(zone_, bit_cast<int64_t>(value));
H A Djs-graph.cc137 if (bit_cast<int64_t>(value) == bit_cast<int64_t>(0.0)) return ZeroConstant();
138 if (bit_cast<int64_t>(value) == bit_cast<int64_t>(1.0)) return OneConstant();
H A Dsimplified-operator-reducer.h34 return ReplaceInt32(bit_cast<int32_t>(value));
H A Doperator.h162 return static_cast<int>(bit_cast<int64_t>(a));
165 return bit_cast<int64_t>(a) == bit_cast<int64_t>(b);
H A Djs-graph.h69 return Int32Constant(bit_cast<int32_t>(value));
H A Dnode-cache.cc34 return ComputeLongHash(bit_cast<int64_t>(key));
/external/chromium_org/components/metrics/
H A Dcompression_utils.cc37 stream.next_in = bit_cast<Bytef*>(source);
83 stream.next_in = bit_cast<Bytef*>(source);
136 bit_cast<const Bytef*>(input.data()),
150 return GzipUncompressHelper(bit_cast<Bytef*>(output->data()),
152 bit_cast<const Bytef*>(input.data()),
/external/chromium_org/mojo/services/native_viewport/
H A Dgpu_impl.cc27 gfx::AcceleratedWidget widget = bit_cast<gfx::AcceleratedWidget>(
H A Dnative_viewport_impl.cc103 widget_id_ = static_cast<uint64_t>(bit_cast<uintptr_t>(widget));
/external/chromium_org/remoting/client/plugin/
H A Dpepper_util.cc61 bit_cast<in_addr>(ipv4_addr.addr)));
69 bit_cast<in6_addr>(ipv6_addr.addr)));
/external/chromium_org/net/filter/
H A Dgzip_filter.cc207 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/
H A Dservice_resolver_32.cc229 bit_cast<const void*>(function_code.stub),
240 bit_cast<const wchar_t*>(ki_system_call), &module_1))
280 intercepted_code.stub = bit_cast<ULONG>(&full_remote_thunk->internal_thunk);
336 relative += bit_cast<ULONG>(target_) - bit_cast<ULONG>(remote_thunk);
346 relative_jump_ = bit_cast<ULONG>(&full_thunk->internal_thunk) -
347 bit_cast<ULONG>(target_) - kJmp32Size;
/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/chromium_org/v8/src/base/
H A Dbits.h127 *val = bit_cast<int32_t>(res);
141 *val = bit_cast<int32_t>(res);
/external/chromium_org/base/
H A Dmacros.h158 // bit_cast<Dest,Source> is a template function that implements the
164 // int i = bit_cast<int32>(f);
197 // bit_cast<> calls memcpy() which is blessed by the standard,
199 // bit_cast<> wraps up the nasty logic in one place.
213 inline Dest bit_cast(const Source& source) { function
/external/chromium_org/components/visitedlink/common/
H A Dvisitedlink_common.cc98 return bit_cast<Fingerprint, uint8[8]>(
/external/chromium_org/third_party/cld/base/
H A Dcasts.h90 // 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
H A Dbasictypes.h265 // 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/v8/test/cctest/
H A Dtest-macro-assembler-mips.cc152 bit_cast<uint64_t>(value) ==
153 bit_cast<uint64_t>(
/external/chromium_org/base/time/
H A Dtime_win.cc55 // Need to bit_cast to fix alignment, then divide by 10 to convert
58 return bit_cast<int64, FILETIME>(ft) / 10;
67 *ft = bit_cast<FILETIME, int64>(us * 10);
151 if (bit_cast<int64, FILETIME>(ft) == 0)
161 return bit_cast<FILETIME, int64>(0);
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_readback_unittest.cc100 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/
H A Dcompat.h67 inline Dest bit_cast(const Source& source) { function in namespace:fst
/external/lldb/source/Expression/
H A DIRDynamicChecks.cpp379 BitCastInst *bit_cast = new BitCastInst(dereferenced_ptr,
388 arg_array[0] = bit_cast;
476 BitCastInst *bit_cast = new BitCastInst(target_object, local
485 arg_array[0] = bit_cast;

Completed in 6625 milliseconds

1234