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

  /external/chromium/net/base/
gzip_filter.cc 221 zlib_stream_.get()->next_in = bit_cast<Bytef*>(next_stream_data_);
223 zlib_stream_.get()->next_out = bit_cast<Bytef*>(dest_buffer);
236 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
263 next_stream_data_ = bit_cast<char*>(zlib_stream_.get()->next_in);
287 zlib_stream_.get()->next_in = bit_cast<Bytef*>(&dummy_head[0]);
289 zlib_stream_.get()->next_out = bit_cast<Bytef*>(&dummy_output[0]);
gzip_filter_unittest.cc 140 zlib_stream.next_in = bit_cast<Bytef*>(source);
142 zlib_stream.next_out = bit_cast<Bytef*>(dest);
sdch_filter_unittest.cc 798 zlib_stream.next_in = bit_cast<Bytef*>(input.data());
804 zlib_stream.next_out = bit_cast<Bytef*>(gzip_compressed.get());
    [all...]
  /external/chromium/base/
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
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/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 99 bit_cast<FstInitFunc>(dlsym(handle, init_name.c_str()));
compat.h 275 inline Dest bit_cast(const Source& source) { function
  /external/v8/src/
factory.h 319 return Handle<type>(bit_cast<type**, Object**>( \
327 return Handle<String>(bit_cast<String**, Object**>( \
top.cc 94 bit_cast<Object**, Script**>(&(thread->pending_message_script_)));
95 v->VisitPointer(bit_cast<Object**, Context**>(&(thread->context_)));
101 v->VisitPointer(bit_cast<Object**, void**>(&(block->exception_)));
102 v->VisitPointer(bit_cast<Object**, void**>(&(block->message_)));
    [all...]
globals.h 587 // Bit_cast uses the memcpy exception to move the bits from a variable of one
590 // will completely optimize bit_cast away.
592 // There is an additional use for bit_cast.
595 // you can use bit_cast to cast one pointer type to another. This confuses gcc
599 inline Dest bit_cast(const Source& source) { function in namespace:v8::internal
bootstrapper.cc 58 v->VisitPointer(bit_cast<Object**, FixedArray**>(&cache_));
    [all...]
debug.cc 802 v->VisitPointer(bit_cast<Object**, Code**>(&(debug_break_return_)));
    [all...]
heap.cc     [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 200 movq(object, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
201 movq(value, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
202 movq(smi_index, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
273 movq(object, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
274 movq(scratch, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
275 movq(smi_index, bit_cast<int64_t>(kZapValue), RelocInfo::NONE);
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 34 #include "globals.h" // Need the bit_cast
607 *v8i::bit_cast<double*, int32_t*>(&FPUregisters_[fpureg]) = value;
628 return *v8i::bit_cast<double*, int32_t*>(
904 alu_out = *v8i::bit_cast<int32_t*, double*>(&fp_out);
    [all...]
  /external/v8/src/arm/
macro-assembler-arm.cc 283 mov(object, Operand(bit_cast<int32_t>(kZapValue)));
284 mov(offset, Operand(bit_cast<int32_t>(kZapValue)));
285 mov(scratch, Operand(bit_cast<int32_t>(kZapValue)));
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 224 mov(object, Immediate(bit_cast<int32_t>(kZapValue)));
225 mov(value, Immediate(bit_cast<int32_t>(kZapValue)));
226 mov(scratch, Immediate(bit_cast<int32_t>(kZapValue)));
    [all...]

Completed in 1516 milliseconds