Home
last modified time | relevance | path

Searched refs:stride (Results 1976 - 2000 of 2071) sorted by relevance

1...<<71727374757677787980>>...83

/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES.h92 GLsizei stride,
/third_party/skia/third_party/externals/swiftshader/src/Device/
H A DRenderer.cpp285 data->stride[i] = stream.vertexStride; in draw()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkImage.cpp308 int bufferRowBytes = backingMemory.stride * getFormat().bytes(); in prepareForExternalUseANDROID()
/third_party/skia/src/shaders/
H A DSkImageShader.cpp430 gather->stride = pm.rowBytesAsPixels(); in doStages()
802 // Load pixels from pm.addr()[(int)sx + (int)sy*stride]. in makeProgram()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineExtendedDynamicStateTests.cpp244 vk::VkVertexInputBindingDescription2EXT makeVertexInputBindingDescription2EXT (deUint32 binding, deUint32 stride, vk::VkVertexInputRate inputRate) in makeVertexInputBindingDescription2EXT() argument
248 desc.stride = stride; in makeVertexInputBindingDescription2EXT()
296 // Vertices in buffers will have 2 components and a padding to properly test the stride.
551 // will not be stored contiguously: the stride will be twice that of the data size, and the padding space filled with "garbage".
2081 // By default, the vertex stride is the size of a vertex according to the chosen vertex type. in TestConfig()
4215 // Bind the appropriate vertex buffers using dynamic strides if the test configuration needs a dynamic stride.
4227 // When dynamically setting the vertex buffer stride, we cannot bind the vertex buffer in advance for some sequence in maybeBindVertexBufferDynStride()
6055 // Bind vertex buffer with static stride if needed and draw. in iterate()
7308 { getVertexWithPaddingGenerator(), "stride" }, in createExtendedDynamicStateTests()
[all...]
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_glsl.cpp1484 // Array stride is equal to aligned size of the underlying type.
1603 // The only two differences between std140 and std430 are related to padding alignment/array stride
1686 // Verify array stride rules.
1861 uint32_t stride = get_member_decoration(type.self, i, DecorationXfbStride);
1862 if (have_xfb_buffer_stride && stride != xfb_stride)
1865 xfb_stride = stride;
3049 uint32_t stride = get_decoration(var.self, DecorationXfbStride);
3052 if (have_xfb_buffer_stride && stride != xfb_stride)
3056 xfb_stride = stride;
3086 uint32_t stride
[all...]
/third_party/backends/backend/
H A Dcanon_dr.c6724 * Use stride size to account for the number of bytes per pixel
6726 static void rmemcpy(void* dest, const void* src, size_t count, size_t stride) { in rmemcpy() argument
6731 srcptr -= stride; in rmemcpy()
6732 memcpy(dstptr, srcptr, stride); in rmemcpy()
6733 dstptr += stride; in rmemcpy()
6734 count -= stride; in rmemcpy()
/third_party/musl/porting/linux/user/ldso/
H A Ddynlink.c1022 static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride) in do_relocs() argument
1046 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) { in do_relocs()
1052 if (stride > 2) { in do_relocs()
1177 if (stride<3) addend = reloc_addr[1]; in do_relocs()
/third_party/musl/ldso/linux/
H A Ddynlink.c1057 static void do_relocs(struct dso *dso, size_t *rel, size_t rel_size, size_t stride) in do_relocs() argument
1081 for (; rel_size; rel+=stride, rel_size-=stride*sizeof(size_t)) { in do_relocs()
1087 if (stride > 2) { in do_relocs()
1212 if (stride<3) addend = reloc_addr[!TLSDESC_BACKWARDS]; in do_relocs()
/third_party/skia/src/opts/
H A DSkRasterPipeline_opts.h1041 // Our fundamental vector depth is our pixel stride.
1151 // but focus mainly on keeping the at-stride tail==0 case fast.
1244 return (T*)ctx->pixels + dy*ctx->stride + dx;
1260 return trunc_(y)*ctx->stride + trunc_(x);
3452 return (T*)ctx->pixels + dy*ctx->stride + dx;
3465 return trunc_(y)*ctx->stride + trunc_(x);
3478 return ay * ctx->stride + ax;
/third_party/python/Lib/test/
H A Dtest_buffer.py287 stride = len(items) // s[0] if s[0] else 0
289 start = i*stride
290 lst[i] = _ca(items[start:start+stride], s[1:])
301 stride = s[0]
303 lst[i] = _fa(items[i::stride], s[1:])
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H A Dvulkan_structs.hpp338 , stride( stride_ ) in stride() function
378 stride = stride_;
397 VULKAN_HPP_NAMESPACE::DeviceSize stride = {}; member
1500 , stride( stride_ )
1540 stride = stride_;
1567 ( numAABBs == rhs.numAABBs ) && ( stride == rhs.stride ) && ( offset == rhs.offset );
1581 uint32_t stride = {}; member
7720 , stride( stride_ ) in stride() function
7756 stride
7788 uint32_t stride = {}; global() member
18129 , stride( stride_ ) stride() function
18220 size_t stride = {}; global() member
27318 uint32_t stride = {}; global() member
70226 VULKAN_HPP_NAMESPACE::DeviceSize stride = {}; global() member
73185 uint32_t stride = {}; global() member
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_compiler_nir.c3820 unsigned stride = strmout->stride[i]; in emit_stream_out() local
3827 create_immed(ctx->block, stride * 4), 0); in emit_stream_out()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_cmd_buffer.c688 * \brief Calculates the stride in pixels based on the pitch in bytes and pixel
768 surface_params.stride = pvr_stride_from_pitch(level_pitch, iview->vk.format); in pvr_setup_pbe_state()
2068 * stride from the pipeline. in pvr_CmdBindVertexBuffers()
4773 uint32_t stride) in pvr_CmdDrawIndexedIndirect()
4782 uint32_t stride) in pvr_CmdDrawIndirect()
4769 pvr_CmdDrawIndexedIndirect(VkCommandBuffer commandBuffer, VkBuffer _buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride) pvr_CmdDrawIndexedIndirect() argument
4778 pvr_CmdDrawIndirect(VkCommandBuffer commandBuffer, VkBuffer _buffer, VkDeviceSize offset, uint32_t drawCount, uint32_t stride) pvr_CmdDrawIndirect() argument
/third_party/mesa3d/src/imgui/
H A Dimgui_draw.cpp1740 void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride) in ImFontAtlasBuildMultiplyRectAlpha8() argument
1742 unsigned char* data = pixels + x + y * stride; in ImFontAtlasBuildMultiplyRectAlpha8()
1743 for (int j = h; j > 0; j--, data += stride) in ImFontAtlasBuildMultiplyRectAlpha8()
H A Dimgui_widgets.cpp5365 ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride; }
5375 void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride)
5377 ImGuiPlotArrayGetterData data(values, stride);
5386 void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride)
5388 ImGuiPlotArrayGetterData data(values, stride);
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
H A Dcapture_gles_2_0_autogen.cpp3162 GLsizei stride, in CaptureVertexAttribPointer()
3171 paramBuffer.addValueParam("stride", ParamType::TGLsizei, stride); in CaptureVertexAttribPointer()
3178 normalized, stride, pointer, &pointerParam); in CaptureVertexAttribPointer()
3156 CaptureVertexAttribPointer(const State &glState, bool isCallValid, GLuint index, GLint size, VertexAttribType typePacked, GLboolean normalized, GLsizei stride, const void *pointer) CaptureVertexAttribPointer() argument
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl3cTransformFeedbackTests.cpp4420 glw::GLuint stride = in bindBOForDraw() local
4425 gl.vertexAttribPointer(position_location, 4, GL_FLOAT, GL_FALSE, stride, NULL); in bindBOForDraw()
4426 gl.vertexAttribPointer(color_location, 4, GL_FLOAT, GL_FALSE, stride, color_offset); in bindBOForDraw()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_draw.cpp2291 void ImFontAtlasBuildMultiplyRectAlpha8(const unsigned char table[256], unsigned char* pixels, int x, int y, int w, int h, int stride) in ImFontAtlasBuildMultiplyRectAlpha8() argument
2293 unsigned char* data = pixels + x + y * stride; in ImFontAtlasBuildMultiplyRectAlpha8()
2294 for (int j = h; j > 0; j--, data += stride) in ImFontAtlasBuildMultiplyRectAlpha8()
H A Dimgui_widgets.cpp6543 ImGuiPlotArrayGetterData(const float* values, int stride) { Values = values; Stride = stride; }
6553 void ImGui::PlotLines(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride)
6555 ImGuiPlotArrayGetterData data(values, stride);
6564 void ImGui::PlotHistogram(const char* label, const float* values, int values_count, int values_offset, const char* overlay_text, float scale_min, float scale_max, ImVec2 graph_size, int stride)
6566 ImGuiPlotArrayGetterData data(values, stride);
/third_party/skia/src/sksl/codegen/
H A DSkSLSPIRVCodeGenerator.cpp510 (SpvId) memoryLayout.stride(*field.fType), in writeStruct()
628 (int32_t) layout.stride(*type), in getType()
638 (int32_t) layout.stride(*type), in getType()
/third_party/skia/third_party/externals/wuffs/release/c/
H A Dwuffs-v0.2.c361 // width height, and stride measure a number of elements, not necessarily a
370 size_t stride; \
429 ret.stride = 0; in wuffs_base__empty_table_u8()
2225 tab->stride = 1024; in wuffs_base__pixel_buffer__set_from_slice()
2248 tab->stride = width; in wuffs_base__pixel_buffer__set_from_slice()
2317 ret.stride = 0; in wuffs_base__pixel_buffer__plane()
4171 return wuffs_base__make_slice_u8(t.ptr + (t.stride * y), t.width); in wuffs_base__table_u8__row()
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/pipeline/
H A Drs_main_thread_unit_test.cpp799 int32_t stride = 3; in HWTEST_F() local
800 std::unique_ptr<Media::PixelMap> pixelMap1 = Media::PixelMap::Create(color, colorLength, offset, stride, opts); in HWTEST_F()
/third_party/ffmpeg/libavcodec/arm/
H A Dvp8dsp_neon.S470 @ back up to P2: dst -= stride * 6
526 @ back up to P2: u,v -= stride * 6
/third_party/glfw/src/
H A Dwl_window.c148 const int stride = image->width * 4; in createShmBuffer() local
189 stride, WL_SHM_FORMAT_ARGB8888); in createShmBuffer()

Completed in 182 milliseconds

1...<<71727374757677787980>>...83