HomeSort by relevance Sort by last modified time
    Searched refs:reinterpret_cast (Results 201 - 225 of 2553) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/test/SemaCXX/
ptrtomember.cpp 28 (void)reinterpret_cast<void*>(p->*m); // expected-error {{reference to non-static member function must be called}} expected-error {{reinterpret_cast from 'void' to 'void *' is not allowed}}
type-dependent-exprs.cpp 16 (void)reinterpret_cast<int>(x);
  /external/clang/test/SemaTemplate/
overload-uneval.cpp 24 return reinterpret_cast<B *>(node);
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp 63 return reinterpret_cast<jlong>(shape);
com_jme3_bullet_collision_shapes_ConeCollisionShape.cpp 63 return reinterpret_cast<jlong>(shape);
com_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp 65 return reinterpret_cast<jlong>(shape);
com_jme3_bullet_collision_shapes_PlaneCollisionShape.cpp 55 return reinterpret_cast<jlong>(shape);
  /external/llvm/include/llvm-c/
TargetMachine.h 128 return reinterpret_cast<TargetMachine*>(P);
131 return reinterpret_cast<Target*>(P);
134 return reinterpret_cast<LLVMTargetMachineRef>(
138 return reinterpret_cast<LLVMTargetRef>(const_cast<Target*>(P));
  /external/skia/src/gpu/
GrGpuFactory.cpp 23 glInterface = reinterpret_cast<const GrGLInterface*>(context);
GrPathUtils.h 80 intptr_t xyPtr = reinterpret_cast<intptr_t>(vertices);
81 intptr_t uvPtr = reinterpret_cast<intptr_t>(vertices) + UV_OFFSET;
89 const GrPoint* xy = reinterpret_cast<const GrPoint*>(xyPtr);
90 GrPoint* uv = reinterpret_cast<GrPoint*>(uvPtr);
  /external/v8/src/
circular-queue.cc 68 producer_pos_ = reinterpret_cast<ProducerPosition*>(
72 consumer_pos_ = reinterpret_cast<ConsumerPosition*>(
73 reinterpret_cast<byte*>(producer_pos_) + kProcessorCacheLineSize);
74 ASSERT(reinterpret_cast<byte*>(consumer_pos_ + 1) <=
  /external/webkit/Source/WebCore/platform/cf/win/
CertificateCFWin.cpp 49 return RetainPtr<CFDataRef>(AdoptCF, CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(certificateCopy), sizeof(*certificateCopy), certDealloc));
  /external/webkit/Source/WebCore/platform/graphics/opentype/
OpenTypeSanitizer.cpp 60 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
  /external/webkit/Source/WebKit2/Shared/API/c/cf/
WKStringCF.cpp 47 return CFStringCreateWithCharacters(allocatorRef, reinterpret_cast<const UniChar*>(toImpl(stringRef)->string().characters()), toImpl(stringRef)->string().length());
  /external/webkit/Source/WebKit2/UIProcess/API/cpp/qt/
WKStringQt.cpp 42 return QString(reinterpret_cast<const QChar*>(string.characters()), string.length());
WKURLQt.cpp 42 return QUrl(QString(reinterpret_cast<const QChar*>(string.characters()), string.length()));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/qt/
InjectedBundleQt.cpp 46 reinterpret_cast<WKBundleInitializeFunctionPtr>(m_platformBundle.resolve("WKBundleInitialize"));
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
WMPrint.cpp 42 ::SendMessage(window, WM_PRINT, reinterpret_cast<WPARAM>(dc), PRF_CLIENT | PRF_CHILDREN);
  /external/webrtc/src/system_wrappers/interface/
atomic32.h 28 // not doing things like reinterpret_cast over some custom allocated memory
56 return (reinterpret_cast<ptrdiff_t>(&_value) & 3) == 0;
  /frameworks/compile/libbcc/include/bcc/Support/
Sha1Util.h 50 reinterpret_cast<const uint8_t*>(pData),
  /ndk/sources/cxx-stl/gabi++/src/
personality.cc 72 __cxa_exception* exception_header = reinterpret_cast<__cxa_exception*>(unwind_exception+1)-1;
76 exception_header->catchTemp = reinterpret_cast<void*>(results.landingPad);
92 __cxa_exception* exception_header = reinterpret_cast<__cxa_exception*>(unwind_exception+1)-1;
96 results.landingPad = reinterpret_cast<uintptr_t>(exception_header->catchTemp);
  /external/chromium/base/
fix_wp64.h 23 return reinterpret_cast<void*>(static_cast<LONG_PTR>(InterlockedExchange(
24 reinterpret_cast<volatile LONG*>(target),
25 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
sha1_win.cc 32 if (!CryptHashData(hash, reinterpret_cast<CONST BYTE*>(str.data()),
41 reinterpret_cast<unsigned char*>(&hash_len),
51 reinterpret_cast<BYTE*>(WriteInto(&result, hash_len + 1)), &hash_len,
  /external/chromium/base/threading/
thread_local_storage_unittest.cc 55 int *ptr = reinterpret_cast<int*>(value);
64 slot.Set(reinterpret_cast<void*>(123));
65 int value = reinterpret_cast<intptr_t>(slot.Get());
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.h 112 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
119 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
126 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
133 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
141 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
148 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
155 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
162 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
170 return reinterpret_cast<TaskManagerGtk*>(task_manager)->
177 return reinterpret_cast<TaskManagerGtk*>(task_manager)-
    [all...]

Completed in 2635 milliseconds

1 2 3 4 5 6 7 891011>>