/third_party/skia/src/gpu/effects/ |
H A D | GrShadowGeoProc.cpp | 78 auto [view, ct, at] = d->randomAlphaOnlyView(); in TestCreate() 80 return GrRRectShadowGeoProc::Make(d->allocator(), view); in TestCreate()
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/ |
H A D | FastButton.java | 27 import android.view.MotionEvent; 28 import android.view.View;
|
H A D | RoundTripLatencyActivity.java | 24 import android.view.View; 352 public void onMeasure(View view) { in onMeasure() argument 384 public void onAverage(View view) { in onAverage() argument 388 public void onCancel(View view) { in onCancel() argument
|
/third_party/typescript/tests/baselines/reference/ |
H A D | jsxEmitWithAttributes.js | 44 view() { 77 view() {
|
H A D | jsxFactoryAndReactNamespace.js | 44 view() { 77 view() {
|
H A D | jsxFactoryIdentifier.js | 44 view() { 80 view() {
|
H A D | jsxFactoryNotIdentifierOrQualifiedName.js | 44 view() { 76 view() {
|
H A D | jsxFactoryNotIdentifierOrQualifiedName2.js | 44 view() { 76 view() {
|
H A D | jsxFactoryQualifiedName.js | 44 view() { 78 view() {
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | bit_gen_ref_test.cc | 78 absl::BitGenRef view(urbg); in TEST() 80 v = view(); in TEST()
|
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/ |
H A D | TextActivity.java | 6 import android.view.SurfaceHolder; 7 import android.view.SurfaceView;
|
/third_party/skia/bench/ |
H A D | GlyphQuadFillBench.cpp | 38 SkMatrix view = SkMatrix::I(); variable 50 SkMatrix drawMatrix = view;
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | head507d.c | 417 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) | in head507d_view() 418 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH)); in head507d_view() 421 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) | in head507d_view() 422 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH), in head507d_view() 425 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) | in head507d_view() 426 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH)); in head507d_view() 432 .view = head507d_view,
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/dispnv50/ |
H A D | head507d.c | 417 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) | in head507d_view() 418 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH)); in head507d_view() 421 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) | in head507d_view() 422 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH), in head507d_view() 425 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) | in head507d_view() 426 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH)); in head507d_view() 432 .view = head507d_view,
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_lrz.c | 53 * - Parameters of the last used depth view. 122 * - Cache for direction byte + depth view params. 169 /* Disable direction by writing invalid depth view. */ in tu6_disable_lrz_via_depth_view() 188 const struct tu_image_view *view) in tu_lrz_init_state() 190 if (!view->image->lrz_height) { in tu_lrz_init_state() 204 /* We need to always have an LRZ view just to disable it if there is a in tu_lrz_init_state() 210 cmd->state.lrz.image_view = view; in tu_lrz_init_state() 220 cmd->state.lrz.fast_clear = view->image->lrz_fc_size > 0; in tu_lrz_init_state() 372 A6XX_GRAS_LRZ_DEPTH_VIEW(.dword = lrz->image_view->view.GRAS_LRZ_DEPTH_VIEW)); in tu_lrz_tiling_begin() 389 A6XX_GRAS_LRZ_DEPTH_VIEW(.dword = lrz->image_view->view in tu_lrz_tiling_begin() 186 tu_lrz_init_state(struct tu_cmd_buffer *cmd, const struct tu_render_pass_attachment *att, const struct tu_image_view *view) tu_lrz_init_state() argument [all...] |
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DCommandList.cpp | 408 D3D12_INDEX_BUFFER_VIEW view = {}; in setIndexBuffer() local 409 view.BufferLocation = d3dBuffer->d3dResource()->GetGPUVirtualAddress(); in setIndexBuffer() 410 view.SizeInBytes = indexBuffer->size(); in setIndexBuffer() 411 view.Format = DXGI_FORMAT_R16_UINT; in setIndexBuffer() 412 fCommandList->IASetIndexBuffer(&view); in setIndexBuffer() 479 fCommandList->ClearDepthStencilView(stencil->view(), D3D12_CLEAR_FLAG_STENCIL, 0, in clearDepthStencilView() 497 dsDescriptor = d3dStencil->view(); in setRenderTarget()
|
/third_party/python/Modules/_io/ |
H A D | bytesio.c | 311 Get a read-write view over the contents of the BytesIO object. 320 PyObject *view; in _io_BytesIO_getbuffer_impl() local 329 view = PyMemoryView_FromObject((PyObject *) buf); in _io_BytesIO_getbuffer_impl() 331 return view; in _io_BytesIO_getbuffer_impl() 1077 bytesiobuf_getbuffer(bytesiobuf *obj, Py_buffer *view, int flags) in bytesiobuf_getbuffer() argument 1081 if (view == NULL) { in bytesiobuf_getbuffer() 1083 "bytesiobuf_getbuffer: view==NULL argument is obsolete"); in bytesiobuf_getbuffer() 1091 /* cannot fail if view != NULL and readonly == 0 */ in bytesiobuf_getbuffer() 1092 (void)PyBuffer_FillInfo(view, (PyObject*)obj, in bytesiobuf_getbuffer() 1100 bytesiobuf_releasebuffer(bytesiobuf *obj, Py_buffer *view) in bytesiobuf_releasebuffer() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/ |
H A D | fd4_texture.c | 259 struct fd4_pipe_sampler_view *view = fd4_pipe_sampler_view(views[i]); in fd4_set_sampler_views() local 260 if (view->astc_srgb) in fd4_set_sampler_views() 262 sampler_swizzles[start + i] = view->swizzle >> 4; in fd4_set_sampler_views() 265 util_format_description(view->base.format); in fd4_set_sampler_views()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
H A D | panvk_vX_meta_blit.c | 74 fbinfo->zs.view.zs = &views[0]; in panvk_meta_blit() 78 fbinfo->zs.view.s = &views[0]; in panvk_meta_blit() 82 fbinfo->rts[0].view = &views[0]; in panvk_meta_blit() 100 fbinfo->zs.view.s = &views[1]; in panvk_meta_blit()
|
/third_party/skia/src/gpu/text/ |
H A D | GrAtlasManager.cpp | 224 static bool save_pixels(GrDirectContext* dContext, GrSurfaceProxyView view, GrColorType colorType, argument 226 if (!view.proxy()) { 230 auto ii = SkImageInfo::Make(view.proxy()->dimensions(), kRGBA_8888_SkColorType, 237 auto sContext = dContext->priv().makeSC(std::move(view),
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
H A D | RenderTarget11.cpp | 69 unsigned int GetRTVSubresourceIndex(ID3D11Resource *resource, ID3D11RenderTargetView *view) in GetRTVSubresourceIndex() argument 72 view->GetDesc(&rtvDesc); in GetRTVSubresourceIndex() 130 unsigned int GetDSVSubresourceIndex(ID3D11Resource *resource, ID3D11DepthStencilView *view) in GetDSVSubresourceIndex() argument 133 view->GetDesc(&dsvDesc); in GetDSVSubresourceIndex()
|
/third_party/skia/tests/ |
H A D | ProcessorTest.cpp | 113 for (const GrSurfaceProxyView& view : views) { in TestFP() 114 this->registerChild(GrTextureEffect::Make(view, kUnknown_SkAlphaType)); in TestFP() 274 auto view = std::get<0>(GrMakeUncachedBitmapProxyView(fContext, bitmap)); in init() local 275 if (!view || !view.proxy()->instantiate(fResourceProvider)) { in init() 279 fTestViews[0] = GrProcessorTestData::ViewInfo{view, GrColorType::kRGBA_8888, in init() 299 auto view = std::get<0>(GrMakeUncachedBitmapProxyView(fContext, bitmap)); in init() local 300 if (!view || !view.proxy()->instantiate(fResourceProvider)) { in init() 304 fTestViews[1] = GrProcessorTestData::ViewInfo{view, GrColorTyp in init() 328 make(int type, int randomTreeDepth, GrSurfaceProxyView view, SkAlphaType alpha = kPremul_SkAlphaType) make() argument [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | ValidationTest.cpp | 239 wgpu::TextureView view = attachment.CreateView(); 240 mColorAttachment.view = view;
|
/third_party/python/Modules/ |
H A D | xxlimited.c | 236 Xxo_getbuffer(XxoObject *self, Py_buffer *view, int flags) in Xxo_getbuffer() argument 238 int res = PyBuffer_FillInfo(view, (PyObject*)self, in Xxo_getbuffer() 248 Xxo_releasebuffer(XxoObject *self, Py_buffer *view) in Xxo_releasebuffer() argument
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_tex_sample.c | 677 softpipe_get_lambda_from_grad_func(const struct pipe_sampler_view *view, in softpipe_get_lambda_from_grad_func() argument 680 switch (view->target) { in softpipe_get_lambda_from_grad_func() 3048 any_swizzle(const struct pipe_sampler_view *view) in any_swizzle() argument 3050 return (view->swizzle_r != PIPE_SWIZZLE_X || in any_swizzle() 3051 view->swizzle_g != PIPE_SWIZZLE_Y || in any_swizzle() 3052 view->swizzle_b != PIPE_SWIZZLE_Z || in any_swizzle() 3053 view->swizzle_a != PIPE_SWIZZLE_W); in any_swizzle() 3301 const struct pipe_sampler_view *view = &sp_sview->base; in sp_get_dims() local 3302 const struct pipe_resource *texture = view->texture; in sp_get_dims() 3304 if (view in sp_get_dims() 3556 softpipe_get_lambda_func(const struct pipe_sampler_view *view, enum pipe_shader_type shader) softpipe_get_lambda_func() argument 3592 struct pipe_sampler_view *view = &sview->base; softpipe_create_sampler_view() local [all...] |