Home
last modified time | relevance | path

Searched +full:use +full:- +full:base +full:- +full:image (Results 1 – 25 of 1202) sorted by relevance

12345678910>>...49

/external/mesa3d/.gitlab-ci/container/
Dgitlab-ci.yml1 # Docker image tag helper templates
3 .incorporate-templates-commit:
5 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_TEMPLATES_COMMIT}"
7 .incorporate-base-tag+templates-commit:
9 …FDO_BASE_IMAGE: "${CI_REGISTRY_IMAGE}/${MESA_BASE_IMAGE}:${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT…
10 FDO_DISTRIBUTION_TAG: "${MESA_IMAGE_TAG}--${MESA_BASE_TAG}--${MESA_TEMPLATES_COMMIT}"
12 .set-image:
14 - .incorporate-templates-commit
17 image: "$MESA_IMAGE"
19 .set-image-base-tag:
[all …]
/external/executorch/.github/workflows/
Dpull.yml7 - main
8 - release/*
12 …p: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.event_n…
13 cancel-in-progress: true
16 gather-models:
17 runs-on: ubuntu-22.04
19 models: ${{ steps.gather-models.outputs.models }}
21 - uses: actions/checkout@v3
24 - uses: actions/setup-python@v4
26 python-version: '3.10'
[all …]
/external/libchrome/base/android/
Dandroid_image_reader_compat.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "base/android/android_image_reader_compat.h"
9 #include "base/android/build_info.h"
10 #include "base/feature_list.h"
11 #include "base/logging.h"
22 namespace base { namespace
27 // thread-safe. in GetInstance()
28 static base::NoDestructor<AndroidImageReader> instance; in GetInstance()
42 // point in the future, we could directly use the global functions instead of in LoadFunctions()
43 // dynamic loading. However, since this would be incompatible with pre-Oreo in LoadFunctions()
[all …]
/external/mesa3d/src/gbm/backends/dri/
Dgbm_dri.c7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
41 #include "drm-uapi/drm_fourcc.h"
60 #include "wayland-drm.h"
66 dri_validate_egl_image(void *image, void *data) in dri_validate_egl_image() argument
70 if (dri->validate_image == NULL) in dri_validate_egl_image()
73 return dri->validate_image(image, dri->lookup_user_data); in dri_validate_egl_image()
77 dri_lookup_egl_image_validated(void *image, void *data) in dri_lookup_egl_image_validated() argument
81 if (dri->lookup_image_validated == NULL) in dri_lookup_egl_image_validated()
84 return dri->lookup_image_validated(image, dri->lookup_user_data); in dri_lookup_egl_image_validated()
[all …]
/external/mesa3d/src/gallium/drivers/panfrost/
Dpan_resource.c4 * Copyright (C) 2014-2017 Broadcom
5 * Copyright (C) 2018-2019 Alyssa Rosenzweig
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include "drm-uapi/drm_fourcc.h"
71 util_blitter_clear_depth_stencil(ctx->blitter, dst, clear_flags, depth, in panfrost_clear_depth_stencil()
89 util_blitter_clear_render_target(ctx->blitter, dst, color, dstx, dsty, width, in panfrost_clear_render_target()
102 assert(whandle->type == WINSYS_HANDLE_TYPE_FD); in panfrost_resource_from_handle()
108 prsc = &rsc->base; in panfrost_resource_from_handle()
112 pipe_reference_init(&prsc->reference, 1); in panfrost_resource_from_handle()
[all …]
/external/mesa3d/src/vulkan/wsi/
Dwsi_common_headless.c7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
39 #include "drm-uapi/drm_fourcc.h"
42 struct wsi_interface base; member
73 * 2) One to have queued for scan-out in wsi_headless_surface_get_capabilities()
77 caps->minImageCount = 4; in wsi_headless_surface_get_capabilities()
79 caps->maxImageCount = 0; in wsi_headless_surface_get_capabilities()
81 caps->currentExtent = (VkExtent2D) { -1, -1 }; in wsi_headless_surface_get_capabilities()
82 caps->minImageExtent = (VkExtent2D) { 1, 1 }; in wsi_headless_surface_get_capabilities()
83 caps->maxImageExtent = (VkExtent2D) { in wsi_headless_surface_get_capabilities()
[all …]
Dwsi_common_win32.cpp7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
44 #pragma GCC diagnostic ignored "-Wint-to-pointer-cast" // warning: cast to pointer from intege…
50 struct wsi_interface base; member
69 struct wsi_image base; member
84 VkIcdSurfaceWin32 base; member
90 * window will flash white. When the currently-bound swapchain is destroyed,
99 struct wsi_swapchain base; member
116 struct wsi_device *wsi_device = pdevice->wsi_device; in wsi_GetPhysicalDeviceWin32PresentationSupportKHR()
117 return (wsi_device->queue_supports_blit & BITFIELD64_BIT(queueFamilyIndex)) != 0; in wsi_GetPhysicalDeviceWin32PresentationSupportKHR()
[all …]
Dwsi_common_x11.c7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 #include <X11/Xlib-xcb.h>
45 #include "drm-uapi/drm_fourcc.h"
49 #include "util/mesa-blake3.h"
93 struct wsi_interface base; member
96 /* Hash table of xcb_connection -> wsi_x11_connection mappings */
109 * Wrapper around xcb_dri3_open. Returns the opened fd or -1 on error.
126 return -1; in wsi_dri3_open()
129 if (reply->nfd != 1) { in wsi_dri3_open()
[all …]
/external/cronet/stable/base/debug/
Delf_reader_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
10 #include "base/debug/elf_reader.h"
18 #include "base/debug/test_elf_image_builder.h"
19 #include "base/files/memory_mapped_file.h"
20 #include "base/native_library.h"
21 #include "base/strings/string_util.h"
27 namespace base { namespace
36 const ::testing::TestParamInfo<base::TestElfImageBuilder::MappingType>& in ParamInfoToString()
55 TestElfImage image = in TEST_P() local
62 size_t build_id_size = ReadElfBuildId(image.elf_start(), true, build_id); in TEST_P()
[all …]
/external/cronet/tot/base/debug/
Delf_reader_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
10 #include "base/debug/elf_reader.h"
18 #include "base/debug/test_elf_image_builder.h"
19 #include "base/files/memory_mapped_file.h"
20 #include "base/native_library.h"
21 #include "base/strings/string_util.h"
27 namespace base { namespace
36 const ::testing::TestParamInfo<base::TestElfImageBuilder::MappingType>& in ParamInfoToString()
55 TestElfImage image = in TEST_P() local
62 size_t build_id_size = ReadElfBuildId(image.elf_start(), true, build_id); in TEST_P()
[all …]
/external/libjpeg-turbo/gtest/
Dtjbench-gtest-wrapper.cpp4 * This software is provided 'as-is', without any express or implied
6 * arising from the use of this software.
8 * Permission is granted to anyone to use this software for any purpose,
13 * claim that you wrote the original software. If you use this software
21 #include "base/files/file.h"
22 #include "base/files/file_util.h"
23 #include "base/path_service.h"
24 #include "gtest-utils.h"
31 // Test image files and their expected MD5 sums.
62 base::FilePath resource_path; in SetUpTestSuite()
[all …]
Dcjpeg-gtest-wrapper.cpp4 * This software is provided 'as-is', without any express or implied
6 * arising from the use of this software.
8 * Permission is granted to anyone to use this software for any purpose,
13 * claim that you wrote the original software. If you use this software
21 #include "base/files/file.h"
22 #include "base/files/file_util.h"
23 #include "base/path_service.h"
24 #include "gtest-utils.h"
33 base::FilePath icc_path; in TEST()
35 base::FilePath input_image_path; in TEST()
[all …]
Djpegtran-gtest-wrapper.cpp4 * This software is provided 'as-is', without any express or implied
6 * arising from the use of this software.
8 * Permission is granted to anyone to use this software for any purpose,
13 * claim that you wrote the original software. If you use this software
21 #include "base/files/file.h"
22 #include "base/files/file_util.h"
23 #include "base/path_service.h"
24 #include "gtest-utils.h"
33 base::FilePath input_image_path; in TEST()
35 base::FilePath icc_path; in TEST()
[all …]
Ddjpeg-gtest-wrapper.cpp4 * This software is provided 'as-is', without any express or implied
6 * arising from the use of this software.
8 * Permission is granted to anyone to use this software for any purpose,
13 * claim that you wrote the original software. If you use this software
21 #include "base/files/file.h"
22 #include "base/files/file_util.h"
23 #include "base/path_service.h"
24 #include "gtest-utils.h"
67 base::FilePath input_image_path; in TEST_P()
69 base::FilePath output_path(GetTargetDirectory()); in TEST_P()
[all …]
/external/zucchini/
Ddisassembler_dex.cc2 // Use of this source code is governed by a BSD-style license that can be
18 #include "base/bind.h"
19 #include "base/callback.h"
20 #include "base/logging.h"
21 #include "base/numerics/checked_math.h"
22 #include "base/numerics/safe_conversions.h"
23 #include "base/strings/stringprintf.h"
45 // wrecks havoc for base::checked_cast<int16_t>().
54 // - For fixed-length items (e.g., kTypeFieldIdItem) this is the exact size.
55 // - For variant-length items (e.g., kTypeCodeItem), returns a value that is
[all …]
/external/skia/include/private/
DSkGainmapInfo.h4 * Use of this source code is governed by a BSD-style license that can be
18 * display an image with gainmap on this display. Let B be the pixel value from the base image
19 * in a color space that has the primaries of the base image and a linear transfer function. Let
24 * W = clamp((log(H) - log(fDisplayRatioSdr)) /
25 * (log(fDisplayRatioHdr) - log(fDisplayRatioSdr), 0, 1)
31 * Finally, apply the gainmap to compute D, the displayed pixel. If the base image is SDR then
33 * D = (B + fEpsilonSdr) * exp(L * W) - fEpsilonHdr
34 * If the base image is HDR then compute:
35 * D = (B + fEpsilonHdr) * exp(L * (W - 1)) - fEpsilonSdr
38 * however, that the base used for the log() and exp() functions does not affect the results of
[all …]
/external/cronet/stable/net/base/
Dmime_util.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "net/base/mime_util.h"
15 #include "base/base64.h"
16 #include "base/check_op.h"
17 #include "base/containers/span.h"
18 #include "base/lazy_instance.h"
19 #include "base/memory/raw_ptr_exclusion.h"
20 #include "base/no_destructor.h"
21 #include "base/rand_util.h"
22 #include "base/strings/string_number_conversions.h"
[all …]
/external/cronet/tot/net/base/
Dmime_util.cc2 // Use of this source code is governed by a BSD-style license that can be
5 #include "net/base/mime_util.h"
15 #include "base/base64.h"
16 #include "base/check_op.h"
17 #include "base/containers/span.h"
18 #include "base/lazy_instance.h"
19 #include "base/memory/raw_ptr_exclusion.h"
20 #include "base/no_destructor.h"
21 #include "base/rand_util.h"
22 #include "base/strings/string_number_conversions.h"
[all …]
/external/mesa3d/src/gallium/drivers/v3d/
Dv3d_uniforms.c2 * Copyright © 2014-2017 Broadcom
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 /* We don't expect that the packets we use in this file change across across
40 struct pipe_sampler_view *texture = texstate->textures[data]; in get_texrect_scale()
44 dim = texture->texture->width0; in get_texrect_scale()
46 dim = texture->texture->height0; in get_texrect_scale()
56 struct pipe_sampler_view *texture = texstate->textures[data]; in get_texture_size()
59 if (texture->target == PIPE_BUFFER) { in get_texture_size()
60 return texture->u.buf.size / in get_texture_size()
[all …]
/external/google-cloud-java/java-containeranalysis/proto-google-cloud-containeranalysis-v1beta1/src/main/java/io/grafeas/v1beta1/image/
DDerivedOrBuilder.java5 * you may not use this file except in compliance with the License.
8 * https://www.apache.org/licenses/LICENSE-2.0
17 // source: google/devtools/containeranalysis/v1beta1/image/image.proto
19 package io.grafeas.v1beta1.image;
23 // @@protoc_insertion_point(interface_extends:grafeas.v1beta1.image.Derived)
30 * Required. The fingerprint of the derived image.
33 * <code>.grafeas.v1beta1.image.Fingerprint fingerprint = 1;</code>
42 * Required. The fingerprint of the derived image.
45 * <code>.grafeas.v1beta1.image.Fingerprint fingerprint = 1;</code>
49 io.grafeas.v1beta1.image.Fingerprint getFingerprint(); in getFingerprint()
[all …]
/external/mesa3d/src/gallium/frontends/dri/
Ddri2.c2 * Mesa 3-D graphics library
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
23 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * <wallbraker@gmail.com> Chia-I Wu <olv@lunarg.com>
49 #include "pipe-loader/pipe_loader.h"
60 #include "drm-uapi/drm_fourcc.h"
64 __DRIbuffer base; member
87 * st_manager_flush_frontbuffer -> dri2_flush_frontbuffer
88 * -> EGL droid_display_shared_buffer
91 * loader: dri3_handle_present_event - XCB_PRESENT_CONFIGURE_NOTIFY
[all …]
/external/cronet/stable/base/win/
Dpe_image_reader.h2 // Use of this source code is governed by a BSD-style license that can be
15 #include "base/base_export.h"
16 #include "base/containers/span.h"
17 #include "base/memory/raw_span.h"
18 #include "base/numerics/safe_math.h"
20 namespace base {
23 // Parses headers and various data from a PE image. This parser is safe for use
26 // passing the address and size of a PE file that has been read into memory -
27 // not loaded by the OS as an image. Parsing of a PE file that has been loaded
28 // as an image can be done with PEImage.
[all …]
/external/cronet/tot/base/win/
Dpe_image_reader.h2 // Use of this source code is governed by a BSD-style license that can be
15 #include "base/base_export.h"
16 #include "base/containers/span.h"
17 #include "base/memory/raw_span.h"
18 #include "base/numerics/safe_math.h"
20 namespace base {
23 // Parses headers and various data from a PE image. This parser is safe for use
26 // passing the address and size of a PE file that has been read into memory -
27 // not loaded by the OS as an image. Parsing of a PE file that has been loaded
28 // as an image can be done with PEImage.
[all …]
/external/mesa3d/src/gallium/drivers/zink/
Dzink_surface.c7 * on the rights to use, copy, modify, merge, publish, distribute, sub
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
46 ivci.image = res->obj->image; in create_ivci()
50 ivci.viewType = res->need_2D ? VK_IMAGE_VIEW_TYPE_2D : VK_IMAGE_VIEW_TYPE_1D; in create_ivci()
54 ivci.viewType = res->need_2D ? VK_IMAGE_VIEW_TYPE_2D_ARRAY : VK_IMAGE_VIEW_TYPE_1D_ARRAY; in create_ivci()
82 …ivci.format = res->base.b.format == PIPE_FORMAT_A8_UNORM ? res->format : zink_get_format(screen, t… in create_ivci()
85 /* TODO: it's currently illegal to use non-identity swizzles for framebuffer attachments, in create_ivci()
87 const struct util_format_description *desc = util_format_description(templ->format); in create_ivci()
98 ivci.subresourceRange.aspectMask = res->aspect; in create_ivci()
[all …]
/external/igt-gpu-tools/overlay/kms/
Dkms-overlay.c7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
44 #define ALIGN(i,m) (((i) + (m) - 1) & ~((m) - 1))
56 struct overlay base; member
57 struct kms_image image; member
73 static int kms_create_fb(int fd, struct kms_image *image) in kms_create_fb() argument
77 handles[0] = image->handle; in kms_create_fb()
78 pitches[0] = image->stride; in kms_create_fb()
82 image->width, image->height, image->format, in kms_create_fb()
84 &image->name, 0) == 0; in kms_create_fb()
[all …]

12345678910>>...49