Home
last modified time | relevance | path

Searched refs:ptr (Results 5151 - 5175 of 5951) sorted by relevance

1...<<201202203204205206207208209210>>...239

/third_party/vk-gl-cts/modules/glshared/
H A DglsShaderExecUtil.cpp601 const void* ptr = inputs[inputNdx]; in execute() local
606 vertexArrays.push_back(glu::va::Float(attribName, vecSize, numValues, 0, (const float*)ptr)); in execute()
608 vertexArrays.push_back(glu::va::Int32(attribName, vecSize, numValues, 0, (const deInt32*)ptr)); in execute()
610 vertexArrays.push_back(glu::va::Uint32(attribName, vecSize, numValues, 0, (const deUint32*)ptr)); in execute()
618 vertexArrays.push_back(glu::va::Float(attribName, colNdx, numRows, numValues, stride, ((const float*)ptr) + colNdx * numRows)); in execute()
H A DglsBuiltinPrecisionTests.cpp700 explicit StatementP (const Statement* ptr) : Super(ptr) {} in StatementP() argument
701 StatementP (const Super& ptr) : Super(ptr) {} in StatementP() argument
943 ExprP<T> exprP (const SharedPtr<const Expr<T> >& ptr) in exprP() argument
946 static_cast<SharedPtr<const Expr<T> >&>(ret) = ptr; in exprP()
951 ExprP<T> exprP (const Expr<T>* ptr) in exprP() argument
953 return exprP(SharedPtr<const Expr<T> >(ptr)); in exprP()
968 explicit VariableP (const Variable<T>* ptr) : Super(ptr) {} in VariableP() argument
970 VariableP(const Super& ptr) VariableP() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineDepthTests.cpp668 depthClipControlWrapper.ptr = &depthClipControlCreateInfo;
677 depthClipControl01Wrapper.ptr = &depthClipControlCreateInfo01;
734 .setViewportStatePnext(depthClipControlWrapper.ptr)
759 .setViewportStatePnext(depthClipControl01Wrapper.ptr)
782 .setViewportStatePnext(depthClipControl01Wrapper.ptr)
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/renderpass/
H A DvktRenderPassMultisampleTests.cpp100 de::SharedPtr<T> safeSharedPtr (T* ptr) in safeSharedPtr() argument
104 return de::SharedPtr<T>(ptr); in safeSharedPtr()
108 delete ptr; in safeSharedPtr()
1496 const void* const ptr (dstBufMem->getHostPtr()); in iterateInternal()
1497 const tcu::ConstPixelBufferAccess access (format, m_width, m_height, 1, ptr); in iterateInternal()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DStateChangeTest.cpp4450 const float *ptr = reinterpret_cast<const float *>(
4453 EXPECT_NEAR(ptr[0], 0.7f, 0.001);
4454 EXPECT_NEAR(ptr[1], 0.6f, 0.001);
4455 EXPECT_NEAR(ptr[2], 0.4f, 0.001);
4456 EXPECT_NEAR(ptr[3], 0.3f, 0.001);
4525 const float *ptr = reinterpret_cast<const float *>(
4528 EXPECT_EQ(ptr[0], 1.0f);
4529 EXPECT_EQ(ptr[1], 0.0f);
4530 EXPECT_EQ(ptr[2], 0.0f);
4531 EXPECT_EQ(ptr[
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DContextVk.cpp2434 commandBuffer.waitEvents(1, cpuReady.get().ptr(), VK_PIPELINE_STAGE_HOST_BIT, in synchronizeCpuGpuTime()
5003 uint8_t *ptr;
5018 &ptr, &newBuffer));
5062 reinterpret_cast<GraphicsDriverUniformsExtended *>(ptr);
5073 driverUniforms = reinterpret_cast<GraphicsDriverUniforms *>(ptr);
5124 uint8_t *ptr;
5127 &mDriverUniforms[PipelineType::Compute], &ptr, &newBuffer));
5130 ComputeDriverUniforms *driverUniforms = reinterpret_cast<ComputeDriverUniforms *>(ptr);
5226 this, driverUniforms.descriptorSetLayout.get().ptr(), 1,
5786 uint8_t *ptr;
[all...]
/third_party/skia/third_party/externals/tint/src/reader/spirv/
H A Dfunction.cc3827 } else if (const auto* ptr = expr.type->UnwrapAlias()->As<Pointer>()) { in InferFunctionStorageClass()
3828 if (ptr->storage_class == ast::StorageClass::kNone) { in InferFunctionStorageClass()
3829 expr.type = ty_.Pointer(ptr->type, ast::StorageClass::kFunction); in InferFunctionStorageClass()
4718 if (auto* ptr = ast_type->As<Pointer>()) { in RegisterLocallyDefinedValues()
4719 info->storage_class = ptr->storage_class; in RegisterLocallyDefinedValues()
4744 while (auto* ptr = unwrapped->AsPointer()) { in RegisterLocallyDefinedValues()
4745 unwrapped = ptr->pointee_type(); in RegisterLocallyDefinedValues()
4770 if (auto* ptr = As<Pointer>(ast_type)) { in GetStorageClassForPointerValue()
4771 return ptr->storage_class; in GetStorageClassForPointerValue()
6060 auto* ptr in Dereference() local
[all...]
/third_party/node/deps/v8/src/init/
H A Dbootstrapper.cc918 CHECK_NE(iterator_prototype->map().ptr(), in CreateIteratorMaps()
919 isolate_->initial_object_prototype()->map().ptr()); in CreateIteratorMaps()
1877 CHECK_NE(array_iterator_prototype->map().ptr(), in InitializeGlobal()
1878 isolate_->initial_object_prototype()->map().ptr()); in InitializeGlobal()
2192 CHECK_NE(string_iterator_prototype->map().ptr(), in InitializeGlobal()
2193 isolate_->initial_object_prototype()->map().ptr()); in InitializeGlobal()
2469 CHECK_NE(prototype->map().ptr(), in InitializeGlobal()
2470 isolate_->initial_object_prototype()->map().ptr()); in InitializeGlobal()
2577 CHECK_NE((*prototype_map).ptr(), in InitializeGlobal()
2578 isolate_->initial_object_prototype()->map().ptr()); in InitializeGlobal()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c3708 const char *ptr; in exec_load_membuf() local
3711 ptr = mach->LocalMem; in exec_load_membuf()
3716 ptr = mach->Buffer->lookup(mach->Buffer, unit, &size); in exec_load_membuf()
3721 ptr = mach->Consts[unit]; in exec_load_membuf()
3724 ptr = NULL; in exec_load_membuf()
3744 rgba[chan].u[j] = *(uint32_t *)(ptr + offset.u[j] + chan * 4); in exec_load_membuf()
3851 const char *ptr; in exec_store_membuf() local
3854 ptr = mach->LocalMem; in exec_store_membuf()
3859 ptr = mach->Buffer->lookup(mach->Buffer, unit, &size); in exec_store_membuf()
3879 uint32_t *invocation_ptr = (uint32_t *)(ptr in exec_store_membuf()
3978 void *ptr[TGSI_QUAD_SIZE]; exec_atomop_membuf() local
[all...]
/base/msdp/device_status/intention/ipc/socket/src/
H A Dsocket_session_manager.cpp164 IEpollEventSource *source = reinterpret_cast<IEpollEventSource *>(evs[index].data.ptr); in DispatchOne()
/base/msdp/device_status/rust/modules/scheduler/sys/src/
H A Dscheduler.rs206 libc::epoll_ctl(self.epoll_fd, libc::EPOLL_CTL_DEL, fd, std::ptr::null_mut()) in epoll_del()
419 std::ptr::addr_of!(data) as *const c_void, in wake()
442 std::ptr::addr_of!(data) as *mut c_void, in dispatch()
/third_party/ffmpeg/libavcodec/
H A Dlibuavs3d.c85 frm->display_picture_number = dec_frame->ptr; in uavs3d_output_callback()
/third_party/ffmpeg/libavcodec/x86/
H A Dsbcdsp.asm123 cglobal sbc_calc_scalefactors, 5, 7, 4, sb_sample_f, scale_factor, blocks, channels, subbands, ptr, blk
/third_party/ffmpeg/libavutil/tests/
H A Dopt.c111 static void log_callback_help(void *ptr, int level, const char *fmt, va_list vl) in log_callback_help() argument
/third_party/ffmpeg/libswresample/
H A Doptions.c148 static const char* context_to_name(void* ptr) { in context_to_name() argument
/third_party/backends/backend/
H A Depson2.h384 SANE_Byte *buf, *end, *ptr; member
H A Dgt68xx_shm_channel.c82 void *ptr; member
/third_party/cJSON/
H A DcJSON.h142 void (CJSON_CDECL *free_fn)(void *ptr);
164 /* If you supply a ptr in return_parse_end and parsing fails, then return_parse_end will contain a pointer to the error so will match cJSON_GetErrorPtr(). */
/third_party/gn/src/gn/
H A Dqt_creator_writer.cc77 const Target* dep_target = dep.ptr; in CollectDeps()
/third_party/alsa-lib/include/sound/uapi/
H A Dasequencer.h225 void *ptr; /* pointer to data (note: maybe 64-bit) */ member
/third_party/mesa3d/src/amd/common/
H A Dac_sqtt.h43 void *ptr; member
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_winsys.h317 struct SVGAGuestPtr *ptr,
/third_party/lwip/src/include/lwip/
H A Dapi.h295 const void *ptr; member
/third_party/lwip/src/include/lwip/apps/
H A Dsnmp_core.h145 void* ptr; member
/third_party/ltp/tools/sparse/sparse-src/
H A Dcgcc130 return 1 if $arg =~ /^-W(no-?)?(address-space|bitwise|cast-to-as|cast-truncate|constant-suffix|context|decl|default-bitfield-sign|designated-init|do-while|enum-mismatch|external-function-has-definition|init-cstring|memcpy-max-count|non-pointer-null|old-initializer|one-bit-signed-bitfield|override-init-all|paren-string|ptr-subtraction-blows|return-void|sizeof-bool|sparse-all|sparse-error|transparent-union|typesign|undef|unknown-attribute)$/;

Completed in 62 milliseconds

1...<<201202203204205206207208209210>>...239