Home
last modified time | relevance | path

Searched refs:buffer (Results 4676 - 4700 of 10512) sorted by relevance

1...<<181182183184185186187188189190>>...421

/third_party/vk-gl-cts/external/amber/src/src/vulkan/
H A Dvertex_buffer.cc40 Buffer* buffer, in SetData()
57 data_.push_back(buffer); in SetData()
84 // Create a new transfer buffer to hold vertex data. in SendVertexData()
39 SetData(uint8_t location, Buffer* buffer, InputRate rate, Format* format, uint32_t offset, uint32_t stride) SetData() argument
/third_party/skia/third_party/externals/spirv-tools/test/opt/
H A Dfix_storage_class_test.cpp539 OpName %type_buffer_image "type.buffer.image" in TEST_F()
544 OpName %type_buffer_image_0 "type.buffer.image" in TEST_F()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DMemorySizeTest.cpp72 GLBuffer buffer; in TEST_P() local
73 glBindBuffer(GL_ARRAY_BUFFER, buffer); in TEST_P()
111 // without allocating a buffer >2gb. in TEST_P()
/third_party/skia/src/gpu/mtl/
H A DGrMtlCommandBuffer.h63 void addGrBuffer(sk_sp<const GrBuffer> buffer) { in addGrBuffer() argument
64 fTrackedGrBuffers.push_back(std::move(buffer)); in addGrBuffer()
/third_party/skia/src/gpu/ops/
H A DClearOp.cpp43 ClearOp::ClearOp(Buffer buffer, in ClearOp() argument
51 , fBuffer(buffer) { in ClearOp()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DResourceManager.h68 void deleteBuffer(GLuint buffer);
84 void checkBufferAllocation(unsigned int buffer);
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkDeviceMemoryExternalFuchsia.hpp114 buffer = reinterpret_cast<void *>(addr);
121 reinterpret_cast<zx_vaddr_t>(buffer),
H A DVkDeviceMemoryExternalMac.hpp167 buffer = addr;
173 ::munmap(buffer, allocationSize);
/third_party/skia/third_party/externals/swiftshader/src/WSI/
H A DXcbSurfaceKHR.cpp118 auto buffer = reinterpret_cast<uint8_t *>(image->getImageMemory()->getOffsetPointer(0)); in present() local
131 buffer // data in present()
H A DXlibSurfaceKHR.cpp73 char *buffer = static_cast<char *>(image->getImageMemory()->getOffsetPointer(0)); in attachImage() local
75 XImage *xImage = libX11->XCreateImage(pDisplay, visual, attr.depth, ZPixmap, 0, buffer, extent.width, extent.height, 32, bytes_per_line); in attachImage()
86 xImage->data = nullptr; // the XImage does not actually own the buffer in detachImage()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanUnitTests/
H A DDevice.hpp43 // CreateBuffer creates a new buffer with the
50 void DestroyBuffer(VkBuffer buffer) const;
126 // AllocateCommandBuffer creates a new command buffer with a primary level.
130 void FreeCommandBuffer(VkCommandPool pool, VkCommandBuffer buffer);
135 // QueueSubmitAndWait submits the given command buffer and waits for it to
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/
H A Dfix_storage_class_test.cpp539 OpName %type_buffer_image "type.buffer.image" in TEST_F()
544 OpName %type_buffer_image_0 "type.buffer.image" in TEST_F()
/third_party/skia/third_party/externals/imgui/examples/libs/usynergy/
H A DuSynergy.h161 @param buffer Address of buffer to send
162 @param length Length of buffer to send
164 typedef uSynergyBool (*uSynergySendFunc)(uSynergyCookie cookie, const uint8_t *buffer, int length);
177 @param buffer Address of buffer to receive data into
178 @param maxLength Maximum amount of bytes to write into the receive buffer
179 @param outLength Address of integer that receives the actual amount of bytes written into @a buffer
181 typedef uSynergyBool (*uSynergyReceiveFunc)(uSynergyCookie cookie, uint8_t *buffer, int maxLength, int* outLength);
345 uint8_t m_receiveBuffer[USYNERGY_RECEIVE_BUFFER_SIZE]; /* Receive buffer */
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Dcdjpeg.h37 JSAMPARRAY buffer; member
56 /* Emit the specified number of pixel rows from the buffer. */
61 /* Re-calculate buffer dimensions based on output dimensions (for use with
64 support partial decompression because it uses an inversion buffer to write
73 /* Output pixel-row buffer. Created by module init or start_output.
77 JSAMPARRAY buffer; member
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnfrs.h95 // convert n to digit string in buffer, return length of string
96 uint32_t util64_tou(int64_t n, UChar* buffer, uint32_t buflen, uint32_t radix = 10, UBool raw = false);
100 uint32_t util64_toa(int64_t n, char* buffer, uint32_t buflen, uint32_t radix = 10, UBool raw = false);
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Dspdy_response_with_callback.c43 void *buffer, in response_callback()
49 int ret = fread(buffer,1,max,fd); in response_callback()
42 response_callback(void *cls, void *buffer, size_t max, bool *more) response_callback() argument
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/synth/
H A DSimpleAudioOutput.java42 // The 512 is arbitrary. 512*3 gives us a 32 msec buffer at 48000 Hz.
155 // Start with a bigger buffer because we can lower it later. in createAudioTrack()
167 public int write(float[] buffer, int offset, int length) { in write() argument
169 int result = mAudioTrack.write(buffer, offset, length, in write()
/third_party/skia/src/ports/
H A DSkOSFile_stdio.cpp121 size_t sk_fwrite(const void* buffer, size_t byteCount, FILE* f) { in sk_fwrite() argument
123 return fwrite(buffer, 1, byteCount, f); in sk_fwrite()
/third_party/skia/third_party/externals/brotli/python/
H A Dbro.py23 'raw' buffer object suitable for reading/writing binary data from/to it.
41 # get 'buffer' attribute to read/write binary data on python3.x
42 if hasattr(stdio, 'buffer'):
43 return stdio.buffer
46 return orig_stdio.buffer
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPURenderBundleEncoder.h51 interop::Interface<interop::GPUBuffer> buffer,
57 interop::Interface<interop::GPUBuffer> buffer,
/third_party/skia/third_party/externals/dawn/src/dawn_native/utils/
H A DWGPUHelpers.h99 const Ref<BufferBase>& buffer,
109 Ref<BufferBase> buffer; member
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftsystem.c202 * buffer ::
203 * The address of buffer to store the read data.
216 unsigned char* buffer, in ft_ansi_stream_io()
230 return (unsigned long)ft_fread( buffer, 1, count, file ); in ft_ansi_stream_io()
214 ft_ansi_stream_io( FT_Stream stream, unsigned long offset, unsigned char* buffer, unsigned long count ) ft_ansi_stream_io() argument
/third_party/skia/third_party/externals/freetype/src/type42/
H A Dt42drivr.c62 FT_Pointer buffer, in t42_get_glyph_name()
65 FT_STRCPYN( buffer, face->type1.glyph_names[glyph_index], buffer_max ); in t42_get_glyph_name()
60 t42_get_glyph_name( T42_Face face, FT_UInt glyph_index, FT_Pointer buffer, FT_UInt buffer_max ) t42_get_glyph_name() argument
/third_party/skia/third_party/externals/icu/source/common/
H A Dcstring.h104 T_CString_integerToString(char *buffer, int32_t n, int32_t radix);
107 T_CString_int64ToString(char *buffer, int64_t n, uint32_t radix);
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DQueueWriteBufferValidationTests.cpp93 // Test WriteBuffer with destroyed buffer
102 // Test WriteBuffer with mapped buffer
110 wgpu::Buffer buffer = device.CreateBuffer(&descriptor); in TEST_F() local
113 ASSERT_DEVICE_ERROR(queue.WriteBuffer(buffer, 0, &value, sizeof(value))); in TEST_F()

Completed in 19 milliseconds

1...<<181182183184185186187188189190>>...421