HomeSort by relevance Sort by last modified time
    Searched refs:reinterpret_cast (Results 101 - 125 of 3889) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/jni/
android_view_DisplayListCanvas.cpp 48 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
96 Canvas* canvas = reinterpret_cast<Canvas*>(canvasPtr);
106 Canvas* canvas = reinterpret_cast<Canvas*>(canvasPtr);
107 Functor* functor = reinterpret_cast<Functor*>(functorPtr);
140 Canvas* canvas = reinterpret_cast<Canvas*>(canvasPtr);
141 CanvasPropertyPrimitive* leftProp = reinterpret_cast<CanvasPropertyPrimitive*>(leftPropPtr);
142 CanvasPropertyPrimitive* topProp = reinterpret_cast<CanvasPropertyPrimitive*>(topPropPtr);
143 CanvasPropertyPrimitive* rightProp = reinterpret_cast<CanvasPropertyPrimitive*>(rightPropPtr);
144 CanvasPropertyPrimitive* bottomProp = reinterpret_cast<CanvasPropertyPrimitive*>(bottomPropPtr);
145 CanvasPropertyPrimitive* rxProp = reinterpret_cast<CanvasPropertyPrimitive*>(rxPropPtr)
    [all...]
android_util_PathParser.cpp 34 SkPath* skPath = reinterpret_cast<SkPath*>(skPathHandle);
46 return reinterpret_cast<jlong>(pathData);
50 PathData* pathData = reinterpret_cast<PathData*>(pathDataPtr);
52 return reinterpret_cast<jlong>(newPathData);
62 return reinterpret_cast<jlong>(pathData);
72 PathData* outPathData = reinterpret_cast<PathData*>(outPathDataPtr);
73 PathData* fromPathData = reinterpret_cast<PathData*>(fromPathDataPtr);
74 PathData* toPathData = reinterpret_cast<PathData*>(toPathDataPtr);
80 PathData* pathData = reinterpret_cast<PathData*>(pathDataHandle);
85 PathData* fromPathData = reinterpret_cast<PathData*>(fromPathDataPtr)
    [all...]
android_view_HardwareLayer.cpp 46 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
55 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
57 Paint* paint = reinterpret_cast<Paint*>(paintPtr);
64 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
65 SkMatrix* matrix = reinterpret_cast<SkMatrix*>(matrixPtr);
71 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
78 DeferredLayerUpdater* layer = reinterpret_cast<DeferredLayerUpdater*>(layerUpdaterPtr);
android_util_XmlBlock.cpp 59 return reinterpret_cast<jlong>(osb);
65 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
71 return reinterpret_cast<jlong>(&osb->getStrings());
77 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
91 return reinterpret_cast<jlong>(st);
97 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
131 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
142 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
153 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
164 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token)
    [all...]
  /bionic/libc/private/
ThreadLocalBuffer.h 47 T* result = reinterpret_cast<T*>(pthread_getspecific(key_));
49 result = reinterpret_cast<T*>(calloc(1, Size));
  /external/v8/src/heap/
store-buffer.cc 31 reinterpret_cast<uintptr_t>(virtual_memory_->address());
32 start_ = reinterpret_cast<Address*>(RoundUp(start_as_int, kStoreBufferSize));
35 DCHECK(reinterpret_cast<Address>(start_) >= virtual_memory_->address());
36 DCHECK(reinterpret_cast<Address>(limit_) >= virtual_memory_->address());
37 Address* vm_limit = reinterpret_cast<Address*>(
38 reinterpret_cast<char*>(virtual_memory_->address()) +
43 DCHECK((reinterpret_cast<uintptr_t>(limit_) & kStoreBufferMask) == 0);
45 if (!virtual_memory_->Commit(reinterpret_cast<Address>(start_),
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglGetDisplay.cpp 7 reinterpret_cast<EGLNativeDisplayType>(display_id)
18 reinterpret_cast<uintptr_t>(EGL_DEFAULT_DISPLAY)) {
  /hardware/bsp/intel/peripheral/libupm/src/tm1637/
pyupm_tm1637.i 10 $1 = reinterpret_cast< uint8_t * >(argp);
  /libcore/luni/src/main/native/
libcore_util_NativeAllocationRegistry.cpp 25 void* nativePtr = reinterpret_cast<void*>(static_cast<uintptr_t>(ptr));
27 = reinterpret_cast<FreeFunction>(static_cast<uintptr_t>(freeFunction));
  /bionic/libc/bionic/
dl_iterate_phdr_static.cpp 39 ElfW(Ehdr)* ehdr = reinterpret_cast<ElfW(Ehdr)*>(&__executable_start);
53 exe_info.dlpi_phdr = reinterpret_cast<ElfW(Phdr)*>(reinterpret_cast<uintptr_t>(ehdr) + ehdr->e_phoff);
64 ElfW(Ehdr)* ehdr_vdso = reinterpret_cast<ElfW(Ehdr)*>(getauxval(AT_SYSINFO_EHDR));
73 vdso_info.dlpi_phdr = reinterpret_cast<ElfW(Phdr)*>(reinterpret_cast<char*>(ehdr_vdso) + ehdr_vdso->e_phoff);
  /external/skia/src/gpu/
GrPathRange.cpp 30 return this->loadPathsIfNeeded(reinterpret_cast<const uint8_t*>(indices), count);
32 return this->loadPathsIfNeeded(reinterpret_cast<const uint16_t*>(indices), count);
34 return this->loadPathsIfNeeded(reinterpret_cast<const uint32_t*>(indices), count);
45 return this->assertPathsLoaded(reinterpret_cast<const uint8_t*>(indices), count);
47 return this->assertPathsLoaded(reinterpret_cast<const uint16_t*>(indices), count);
49 return this->assertPathsLoaded(reinterpret_cast<const uint32_t*>(indices), count);
  /hardware/bsp/intel/peripheral/libupm/src/hmtrp/
pyupm_hmtrp.i 12 $1 = reinterpret_cast< uint8_t * >(argp);
18 $1 = reinterpret_cast< uint16_t * >(argp);
24 $1 = reinterpret_cast< uint32_t * >(argp);
  /frameworks/native/vulkan/libvulkan/
driver_gen.cpp 91 reinterpret_cast<PFN_vkVoidFunction>(AcquireNextImageKHR),
92 reinterpret_cast<PFN_vkVoidFunction>(checkedAcquireNextImageKHR),
98 reinterpret_cast<PFN_vkVoidFunction>(AllocateCommandBuffers),
105 reinterpret_cast<PFN_vkVoidFunction>(CreateAndroidSurfaceKHR),
112 reinterpret_cast<PFN_vkVoidFunction>(CreateDebugReportCallbackEXT),
119 reinterpret_cast<PFN_vkVoidFunction>(CreateDevice),
126 reinterpret_cast<PFN_vkVoidFunction>(CreateInstance),
133 reinterpret_cast<PFN_vkVoidFunction>(CreateSwapchainKHR),
134 reinterpret_cast<PFN_vkVoidFunction>(checkedCreateSwapchainKHR),
140 reinterpret_cast<PFN_vkVoidFunction>(DebugReportMessageEXT)
    [all...]
  /external/v8/src/profiler/
tick-sample.cc 19 return (reinterpret_cast<uintptr_t>(ptr1) & mask) ==
20 (reinterpret_cast<uintptr_t>(ptr2) & mask);
31 byte* pc = reinterpret_cast<byte*>(address);
91 reinterpret_cast<void**>(&stack[0]), kMaxFramesCount,
106 tos = Memory::Address_at(reinterpret_cast<Address>(regs.sp));
145 SafeStackFrameIterator it(isolate, reinterpret_cast<Address>(regs.fp),
146 reinterpret_cast<Address>(regs.sp), js_entry_sp);
159 reinterpret_cast<Address>(frame->GetBytecodeArray()) - kHeapObjectTag;
179 state->pc = reinterpret_cast<Address>(simulator->get_pc());
181 state->sp = reinterpret_cast<Address>(simulator->get_register(Simulator::sp))
    [all...]
unbound-queue-inl.h 27 divider_ = last_ = reinterpret_cast<base::AtomicWord>(first_);
48 Node* next = reinterpret_cast<Node*>(divider_)->next;
50 base::Release_Store(&divider_, reinterpret_cast<base::AtomicWord>(next));
57 Node*& next = reinterpret_cast<Node*>(last_)->next;
59 base::Release_Store(&last_, reinterpret_cast<base::AtomicWord>(next));
61 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(&divider_))) {
76 Node* next = reinterpret_cast<Node*>(divider_)->next;
  /art/runtime/
oat_file-inl.h 31 return reinterpret_cast<const OatQuickMethodHeader*>(code) - 1;
39 return reinterpret_cast<const uint8_t*>(method_header) - begin_;
47 return reinterpret_cast<const uint8_t*>(&method_header->code_size_) - begin_;
55 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FrameSizeInBytes();
63 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.CoreSpillMask();
71 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].frame_info_.FpSpillMask();
84 return reinterpret_cast<const uint8_t*>(&method_header->vmap_table_offset_) - begin_;
92 uint32_t offset = reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].vmap_table_offset_;
96 return reinterpret_cast<const uint8_t*>(code) - offset;
104 return reinterpret_cast<const OatQuickMethodHeader*>(code)[-1].code_size_
    [all...]
  /hardware/qcom/display/msm8996/libgralloc1/
gr_adreno_info.cpp 46 *reinterpret_cast<void **>(&LINK_adreno_compute_aligned_width_and_height) =
48 *reinterpret_cast<void **>(&LINK_adreno_compute_padding) =
50 *reinterpret_cast<void **>(&LINK_adreno_isMacroTilingSupportedByGpu) =
52 *reinterpret_cast<void **>(&LINK_adreno_compute_compressedfmt_aligned_width_and_height) =
54 *reinterpret_cast<void **>(&LINK_adreno_isUBWCSupportedByGpu) =
56 *reinterpret_cast<void **>(&LINK_adreno_get_gpu_pixel_alignment) =
128 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h));
152 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h), &bytesPerPixel)
    [all...]
  /hardware/qcom/display/msmcobalt/libgralloc1/
gr_adreno_info.cpp 46 *reinterpret_cast<void **>(&LINK_adreno_compute_aligned_width_and_height) =
48 *reinterpret_cast<void **>(&LINK_adreno_compute_padding) =
50 *reinterpret_cast<void **>(&LINK_adreno_isMacroTilingSupportedByGpu) =
52 *reinterpret_cast<void **>(&LINK_adreno_compute_compressedfmt_aligned_width_and_height) =
54 *reinterpret_cast<void **>(&LINK_adreno_isUBWCSupportedByGpu) =
56 *reinterpret_cast<void **>(&LINK_adreno_get_gpu_pixel_alignment) =
128 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h));
152 reinterpret_cast<int *>(aligned_w), reinterpret_cast<int *>(aligned_h), &bytesPerPixel)
    [all...]
  /art/runtime/arch/x86/
fault_handler_x86.cc 246 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
247 uc->CTX_JMP_BUF = reinterpret_cast<uintptr_t>(*self->GetNestedSignalState());
248 uc->CTX_EIP = reinterpret_cast<uintptr_t>(art_nested_signal_return);
254 struct ucontext* uc = reinterpret_cast<struct ucontext*>(context);
263 uintptr_t* fault_addr = reinterpret_cast<uintptr_t*>(siginfo->si_addr);
264 uintptr_t* overflow_addr = reinterpret_cast<uintptr_t*>(
266 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86_64));
268 reinterpret_cast<uint8_t*>(*out_sp) - GetStackOverflowReservedBytes(kX86));
271 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD);
274 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp)
    [all...]
  /external/llvm/lib/Support/
ConvertUTFWrapper.cpp 23 const UTF8 *Pos = reinterpret_cast<const UTF8*>(Source.begin());
24 if (!isLegalUTF8String(&Pos, reinterpret_cast<const UTF8*>(Source.end()))) {
34 // using reinterpret_cast.
35 UTF16 *targetStart = reinterpret_cast<UTF16*>(ResultPtr);
41 ResultPtr = reinterpret_cast<char*>(targetStart);
47 // using reinterpret_cast.
48 UTF32 *targetStart = reinterpret_cast<UTF32*>(ResultPtr);
54 ResultPtr = reinterpret_cast<char*>(targetStart);
66 UTF8 *TargetStart = reinterpret_cast<UTF8 *>(ResultPtr);
74 ResultPtr = reinterpret_cast<char*>(TargetStart)
    [all...]
  /system/update_engine/update_manager/
boxed_value.cc 41 const string* val = reinterpret_cast<const string*>(value);
47 const int* val = reinterpret_cast<const int*>(value);
53 const unsigned int* val = reinterpret_cast<const unsigned int*>(value);
59 const int64_t* val = reinterpret_cast<const int64_t*>(value);
66 reinterpret_cast<const uint64_t*>(value);
72 const bool* val = reinterpret_cast<const bool*>(value);
78 const double* val = reinterpret_cast<const double*>(value);
84 const base::Time* val = reinterpret_cast<const base::Time*>(value);
90 const base::TimeDelta* val = reinterpret_cast<const base::TimeDelta*>(value);
115 const ConnectionType* val = reinterpret_cast<const ConnectionType*>(value)
    [all...]
  /external/clang/test/Analysis/
reinterpret-cast.cpp 15 Child *wrapper = reinterpret_cast<Child*>(data);
43 f3(reinterpret_cast<void**>(&p));
58 reinterpret_cast<IntWrapperSubclass *>(ww)->x = 42;
59 clang_analyzer_eval(reinterpret_cast<IntWrapperSubclass *>(ww)->x == 42); // expected-warning{{TRUE}}
64 clang_analyzer_eval(reinterpret_cast<IntWrapperSubclass *>(ww)->x == 42); // expected-warning{{FALSE}}
81 *(reinterpret_cast<void**>(&p)) = new C;
92 int *p = (int*)&reinterpret_cast<const volatile char&>(x);
  /device/asus/fugu/libaudio/
audio_hal_thunks.cpp 92 reinterpret_cast<const struct atv_stream_out*>(stream);
100 reinterpret_cast<const struct atv_stream_out*>(stream);
111 reinterpret_cast<const struct atv_stream_out*>(stream);
119 reinterpret_cast<const struct atv_stream_out*>(stream);
127 reinterpret_cast<const struct atv_stream_out*>(stream);
135 reinterpret_cast<const struct atv_stream_out*>(stream);
146 reinterpret_cast<const struct atv_stream_out*>(stream);
154 reinterpret_cast<struct atv_stream_out*>(stream);
162 reinterpret_cast<const struct atv_stream_out*>(stream);
170 reinterpret_cast<struct atv_stream_out*>(stream)
    [all...]
  /art/runtime/gc/accounting/
space_bitmap_test.cc 33 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
51 EXPECT_EQ(bitmap_->Test(obj), ((reinterpret_cast<uintptr_t>(obj) & 0xF) != 0));
60 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment);
71 if (reinterpret_cast<uintptr_t>(obj) & 0xF) {
81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment);
84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment);
115 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000);
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset));
133 space_bitmap->Clear(reinterpret_cast<mirror::Object*>(heap_begin + offset))
    [all...]
  /external/clang/test/CodeGenCXX/
linkage.cpp 9 return reinterpret_cast<void *>(f<S>);
20 return reinterpret_cast<void *>(f<S>);
31 return reinterpret_cast<void *>(f<S>);
42 return reinterpret_cast<void *>(f<S>);
54 return reinterpret_cast<void *>(f<S>);
102 return reinterpret_cast<void *>(f<S>);
113 return reinterpret_cast<void *>(f<S*>);
125 return reinterpret_cast<void *>(f<ftype>);
142 return reinterpret_cast<void *>(f<ftype>);
153 return reinterpret_cast<void *>(foo<S1>)
    [all...]

Completed in 701 milliseconds

1 2 3 45 6 7 8 91011>>