| /third_party/skia/third_party/externals/icu/source/common/unicode/ |
| H A D | uloc.h | 404 * @param languageCapacity the size of the language buffer to store the 407 * @return the actual buffer size needed for the language code. If it's greater 422 * @param scriptCapacity the size of the language buffer to store the 425 * @return the actual buffer size needed for the language code. If it's greater 440 * @param countryCapacity the size of the country buffer to store the 443 * @return the actual buffer size needed for the country code. If it's greater 458 * @param variantCapacity the size of the variant buffer to store the 461 * @return the actual buffer size needed for the variant code. If it's greater 481 * @param name fill in buffer for the name without keywords. 482 * @param nameCapacity capacity of the fill in buffer [all...] |
| /third_party/skia/third_party/externals/dawn/src/tests/unittests/wire/ |
| H A D | WireOptionalTests.cpp | 37 // The `sampler`, `textureView` and `buffer` members of a binding are optional. in TEST_F() 42 entry.buffer = nullptr; in TEST_F() 58 desc->entries[0].buffer == nullptr && in TEST_F()
|
| /third_party/skia/third_party/externals/egl-registry/api/1.1/EGL/ |
| H A D | egl.h | 189 ** BindTexImage / ReleaseTexImage buffer target 233 GLAPI EGLBoolean APIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer); 234 GLAPI EGLBoolean APIENTRY eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer);
|
| /third_party/skia/include/core/ |
| H A D | SkRegion.h | 588 /** Writes SkRegion to buffer, and returns number of bytes written. 589 If buffer is nullptr, returns number number of bytes that would be written. 591 @param buffer storage for binary data 596 size_t writeToMemory(void* buffer) const; 598 /** Constructs SkRegion from buffer of size length. Returns bytes read. 601 @param buffer storage for binary data 602 @param length size of buffer 607 size_t readFromMemory(const void* buffer, size_t length);
|
| H A D | SkRRect.h | 420 /** Writes SkRRect to buffer. Writes kSizeInMemory bytes, and returns 423 @param buffer storage for SkRRect 428 size_t writeToMemory(void* buffer) const; 430 /** Reads SkRRect from buffer, reading kSizeInMemory bytes. 434 @param buffer memory to read from 435 @param length size of buffer 440 size_t readFromMemory(const void* buffer, size_t length);
|
| /third_party/skia/fuzz/ |
| H A D | FuzzSkParagraph.cpp | 113 // buffer must be at least MAX_TEXT_LENGTH in length. 114 // Returns size of text placed in buffer. 116 uint8_t RandomText(T* buffer, Fuzz* fuzz) { in RandomText() argument 119 fuzz->nextN(buffer, text_length); in RandomText()
|
| /kernel/linux/linux-5.10/drivers/scsi/ |
| H A D | pmcraid.c | 815 * This function copies the sense buffer into the scsi_cmd struct and completes 2432 ("couldn't allocate sense buffer for request sense\n"); in pmcraid_request_sense() 2645 * get/frame the sense buffer in pmcraid_error_handler() 3132 * pmcraid_build_ioadl - Build a scatter/gather list and map the buffer 3192 * pmcraid_free_sglist - Frees an allocated SG buffer list 3208 * @buflen: buffer length 3210 * Allocates a DMA'able buffer in chunks and assembles a scatter/gather 3238 * pmcraid_copy_sglist - Copy user buffer to kernel buffer's SG list 3240 * @buffer 3249 pmcraid_copy_sglist( struct pmcraid_sglist *sglist, void __user *buffer, u32 len, int direction ) pmcraid_copy_sglist() argument 3575 struct pmcraid_passthrough_ioctl_buffer *buffer; pmcraid_ioctl_passthrough() local [all...] |
| H A D | ipr.c | 1290 * @buffer: buffer 1291 * @len: length of buffer provided 1294 * pointer to buffer 1296 static char *__ipr_format_res_path(u8 *res_path, char *buffer, int len) in __ipr_format_res_path() argument 1299 char *p = buffer; in __ipr_format_res_path() 1302 p += scnprintf(p, buffer + len - p, "%02X", res_path[0]); in __ipr_format_res_path() 1304 p += scnprintf(p, buffer + len - p, "-%02X", res_path[i]); in __ipr_format_res_path() 1306 return buffer; in __ipr_format_res_path() 1313 * @buffer 1319 ipr_format_res_path(struct ipr_ioa_cfg *ioa_cfg, u8 *res_path, char *buffer, int len) ipr_format_res_path() argument 1341 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_update_res_entry() local 1575 char buffer[IPR_VENDOR_ID_LEN + IPR_PROD_ID_LEN ipr_log_vpd() local 1742 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_log_sis64_config_error() local 2091 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_log64_fabric_path() local 2238 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_log64_path_elem() local 2320 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_log_sis64_array_error() local 2449 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_log_sis64_device_error() local 3911 ipr_copy_ucode_buffer(struct ipr_sglist *sglist, u8 *buffer, u32 len) ipr_copy_ucode_buffer() argument 4567 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_show_resource_path() local 4950 char buffer[IPR_MAX_RES_PATH_LENGTH]; ipr_slave_configure() local 6727 static char buffer[512]; ipr_ioa_info() local [all...] |
| /third_party/skia/third_party/externals/angle2/src/libGL/ |
| H A D | entry_points_gl_3_autogen.cpp | 83 void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer) in GL_BindBufferBase() argument 86 EVENT(context, GLBindBufferBase, "context = %d, target = %s, index = %u, buffer = %u", in GL_BindBufferBase() 87 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer); in GL_BindBufferBase() 92 BufferID bufferPacked = PackParam<BufferID>(buffer); in GL_BindBufferBase() 110 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) in GL_BindBufferRange() argument 114 "context = %d, target = %s, index = %u, buffer = %u, offset = %llu, size = %llu", in GL_BindBufferRange() 115 CID(context), GLenumToString(GLenumGroup::BufferTargetARB, target), index, buffer, in GL_BindBufferRange() 121 BufferID bufferPacked = PackParam<BufferID>(buffer); in GL_BindBufferRange() 338 void GL_APIENTRY GL_ClearBufferfi(GLenum buffer, GLint drawbuffer, GLfloat depth, GLint stencil) in GL_ClearBufferfi() argument 342 "context = %d, buffer in GL_ClearBufferfi() 363 GL_ClearBufferfv(GLenum buffer, GLint drawbuffer, const GLfloat *value) GL_ClearBufferfv() argument 388 GL_ClearBufferiv(GLenum buffer, GLint drawbuffer, const GLint *value) GL_ClearBufferiv() argument 413 GL_ClearBufferuiv(GLenum buffer, GLint drawbuffer, const GLuint *value) GL_ClearBufferuiv() argument 2647 GL_TexBuffer(GLenum target, GLenum internalformat, GLuint buffer) GL_TexBuffer() argument [all...] |
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| H A D | builtins_typedarray.cpp | 372 // 22.2.3.1 get %TypedArray%.prototype.buffer 390 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetBuffer() 392 JSTaggedValue buffer = JSTypedArray::GetOffHeapBuffer(thread, typedArray); in GetBuffer() local 393 // 5. Return buffer. in GetBuffer() 394 return buffer; in GetBuffer() 415 // 4. Let buffer be the value of O’s [[ViewedArrayBuffer]] internal slot. in GetByteLength() 417 JSTaggedValue buffer = typeArrayObj->GetViewedArrayBufferOrByteArray(); in GetByteLength() local 418 // 5. If IsDetachedBuffer(buffer) is true, return 0. in GetByteLength() 419 if (BuiltinsArrayBuffer::IsDetachedBuffer(buffer)) { in GetByteLength() 445 // 4. Let buffer b in GetByteOffset() 447 JSTaggedValue buffer = typeArrayObj->GetViewedArrayBufferOrByteArray(); GetByteOffset() local 985 JSTaggedValue buffer = JSHandle<JSTypedArray>::Cast(thisHandle)->GetViewedArrayBufferOrByteArray(); GetLength() local 1629 JSHandle<JSTaggedValue> buffer; Sort() local 1753 JSTaggedValue buffer = JSTypedArray::GetOffHeapBuffer(thread, thisObj); Subarray() local 1906 JSHandle<JSTaggedValue> buffer = ToSorted() local [all...] |
| /kernel/linux/linux-5.10/tools/perf/util/intel-pt-decoder/ |
| H A D | intel-pt-decoder.c | 102 int (*get_trace)(struct intel_pt_buffer *buffer, void *data); 534 struct intel_pt_buffer buffer = { .buf = 0, }; in intel_pt_get_data() local 540 ret = decoder->get_trace(&buffer, decoder->data); in intel_pt_get_data() 543 decoder->buf = buffer.buf; in intel_pt_get_data() 544 decoder->len = buffer.len; in intel_pt_get_data() 549 decoder->buf_timestamp = buffer.ref_timestamp; in intel_pt_get_data() 550 if (!buffer.consecutive || reposition) { in intel_pt_get_data() 552 decoder->ref_timestamp = buffer.ref_timestamp; in intel_pt_get_data() 553 decoder->state.trace_nr = buffer.trace_nr; in intel_pt_get_data() 627 /* Lookahead packets in current buffer */ 3226 intel_pt_ff_cb(struct intel_pt_buffer *buffer, void *data) intel_pt_ff_cb() argument [all...] |
| /kernel/linux/linux-5.10/fs/gfs2/ |
| H A D | rgrp.c | 128 const u8 *buffer; in gfs2_testbit() local 133 buffer = bi->bi_clone; in gfs2_testbit() 135 buffer = bi->bi_bh->b_data; in gfs2_testbit() 136 buffer += bi->bi_offset; in gfs2_testbit() 137 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit() 198 * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing 200 * @buf: the buffer that holds the bitmaps 201 * @len: the length (in bytes) of the buffer 202 * @goal: start search at this block's bit-pair (within @buffer) 205 * Scope of @goal and returned block number is only within this bitmap buffer, 409 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer, unsigned int buflen, u8 state) gfs2_bitcount() argument 1134 const u8 *buffer = NULL; count_unlinked() local 1707 u8 *buffer; gfs2_rbm_find() local [all...] |
| /kernel/linux/linux-6.6/fs/gfs2/ |
| H A D | rgrp.c | 146 const u8 *buffer; in gfs2_testbit() local 151 buffer = bi->bi_clone; in gfs2_testbit() 153 buffer = bi->bi_bh->b_data; in gfs2_testbit() 154 buffer += bi->bi_offset; in gfs2_testbit() 155 byte = buffer + (rbm->offset / GFS2_NBBY); in gfs2_testbit() 214 * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing 216 * @buf: the buffer that holds the bitmaps 217 * @len: the length (in bytes) of the buffer 218 * @goal: start search at this block's bit-pair (within @buffer) 221 * Scope of @goal and returned block number is only within this bitmap buffer, 435 gfs2_bitcount(struct gfs2_rgrpd *rgd, const u8 *buffer, unsigned int buflen, u8 state) gfs2_bitcount() argument 1151 const u8 *buffer = NULL; count_unlinked() local 1745 u8 *buffer; gfs2_rbm_find() local [all...] |
| /third_party/node/src/crypto/ |
| H A D | crypto_tls.cc | 256 // The callback returns an offset into the given buffer, for the selected in SelectALPNCallback() 511 ArrayBufferViewContents<char> buffer(args[0]); in Receive() 512 const char* data = buffer.data(); in Receive() 513 size_t len = buffer.length(); in Receive() 516 // Copy given buffer entirely or partiall if handle becomes closed in Receive() 1023 // don't copy data if there there is one buffer with data in DoWrite() 1025 // _http_outgoing.js writes a zero length buffer in in DoWrite() 1045 // Only one buffer: try to write directly, only store if it fails in DoWrite() 1119 // Commit the amount of data actually read into the peeked/allocated buffer in OnStreamRead() 1233 // is a non-blocking pipe, and its buffer ha in EnableTrace() 1673 Local<Value> buffer; GetFinished() local 1704 Local<Value> buffer; GetPeerFinished() local 1733 Local<Value> buffer; GetSession() local 1933 Local<Value> buffer; ExportKeyingMaterial() local [all...] |
| /third_party/node/deps/v8/src/objects/ |
| H A D | value-serializer.cc | 24 #include "src/objects/js-array-buffer-inl.h" 156 // Array buffer. byteLength:uint32_t, then raw data. 158 // Array buffer (transferred). transferID:uint32_t 160 // View into an array buffer. 168 // Shared array buffer. transferID:uint32_t 424 // previously failed and so the buffer is corrupt. in WriteObject() 447 // Despite being JSReceivers, these have their wrapped buffer serialized in WriteObject() 451 // array's buffer here. in WriteObject() 454 Handle<JSArrayBuffer> buffer( in WriteObject() 457 : handle(JSArrayBuffer::cast(view->buffer()), isolate in WriteObject() 1996 ReadJSArrayBufferView( Handle<JSArrayBuffer> buffer) ReadJSArrayBufferView() argument 2049 ValidateAndSetJSArrayBufferViewFlags( JSArrayBufferView view, JSArrayBuffer buffer, uint32_t serialized_flags) ValidateAndSetJSArrayBufferViewFlags() argument 2198 Handle<JSArrayBuffer> buffer; ReadWasmMemory() local [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
| H A D | vktMemoryDeviceMemoryReportTests.cpp | 288 DeviceMemory::Parameters getDeviceMemoryParameters (const Environment& env, VkBuffer buffer) 290 return getDeviceMemoryParameters(getBufferMemoryRequirements(env.vkd, env.device, buffer)); 338 Buffer::Parameters buffer; 347 : buffer (buffer_) 356 Dependency<Buffer> buffer; 360 : buffer(env, params.buffer) 361 , memory(env, getDeviceMemoryParameters(env, *buffer.object)) 363 VK_CHECK(env.vkd.bindBufferMemory(env.device, *buffer.object, *memory.object, 0)); 374 *res.buffer 1570 CaseDescription<Buffer> buffer; global() member [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
| H A D | vktMemoryDeviceMemoryReportTests.cpp | 282 DeviceMemory::Parameters getDeviceMemoryParameters (const Environment& env, VkBuffer buffer) 284 return getDeviceMemoryParameters(getBufferMemoryRequirements(env.vkd, env.device, buffer)); 332 Buffer::Parameters buffer; 341 : buffer (buffer_) 350 Dependency<Buffer> buffer; 354 : buffer(env, params.buffer) 355 , memory(env, getDeviceMemoryParameters(env, *buffer.object)) 357 VK_CHECK(env.vkd.bindBufferMemory(env.device, *buffer.object, *memory.object, 0)); 368 *res.buffer 1564 CaseDescription<Buffer> buffer; global() member [all...] |
| /third_party/python/Modules/ |
| H A D | arraymodule.c | 1313 Return a tuple (address, length) giving the current memory address and the length in items of the buffer used to hold array's contents. 1316 the buffer length in bytes. 1434 /* little buffer to hold items while swapping */ in array_array_reverse_impl() 1640 frombytes(arrayobject *self, Py_buffer *buffer) in frombytes() argument 1644 if (buffer->itemsize != 1) { in frombytes() 1645 PyBuffer_Release(buffer); in frombytes() 1649 n = buffer->len; in frombytes() 1651 PyBuffer_Release(buffer); in frombytes() 1661 PyBuffer_Release(buffer); in frombytes() 1665 PyBuffer_Release(buffer); in frombytes() 1685 array_array_frombytes_impl(arrayobject *self, Py_buffer *buffer) array_array_frombytes_impl() argument 3071 char buffer[Py_ARRAY_LENGTH(descriptors)], *p; array_modexec() local [all...] |
| /kernel/linux/linux-5.10/drivers/net/ethernet/sfc/ |
| H A D | ef10.c | 536 /* we assume later that we can copy from this buffer in dwords */ in efx_ef10_probe() 765 "allocated PIO buffer %u handle %x\n", i, in efx_ef10_alloc_piobufs() 787 /* Link a buffer to each VI in the write-combining mapping */ in efx_ef10_link_piobufs() 798 "failed to link VI %u to PIO buffer %u (%d)\n", in efx_ef10_link_piobufs() 804 "linked VI %u to PIO buffer %u\n", in efx_ef10_link_piobufs() 808 /* Link a buffer to each TX queue */ in efx_ef10_link_piobufs() 831 * can only link one buffer to each VI. in efx_ef10_link_piobufs() 853 "failed to link VI %u to PIO buffer %u (%d)\n", in efx_ef10_link_piobufs() 862 "linked VI %u to PIO buffer %u offset %x addr %p\n", in efx_ef10_link_piobufs() 874 * buffer fo in efx_ef10_link_piobufs() 2221 struct efx_tx_buffer *buffer; efx_ef10_tx_tso_desc() local 2436 struct efx_tx_buffer *buffer; efx_ef10_tx_write() local [all...] |
| /kernel/linux/linux-5.10/sound/soc/sof/ |
| H A D | topology.c | 1463 * sof_comp_alloc - allocate and initialize buffer for a new component 1578 struct sof_ipc_buffer *buffer; in sof_widget_load_buffer() local 1581 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL); in sof_widget_load_buffer() 1582 if (!buffer) in sof_widget_load_buffer() 1586 buffer->comp.hdr.size = sizeof(*buffer); in sof_widget_load_buffer() 1587 buffer->comp.hdr.cmd = SOF_IPC_GLB_TPLG_MSG | SOF_IPC_TPLG_BUFFER_NEW; in sof_widget_load_buffer() 1588 buffer->comp.id = swidget->comp_id; in sof_widget_load_buffer() 1589 buffer in sof_widget_load_buffer() [all...] |
| /kernel/linux/linux-6.6/drivers/net/ethernet/sfc/ |
| H A D | ef10.c | 535 /* we assume later that we can copy from this buffer in dwords */ in efx_ef10_probe() 764 "allocated PIO buffer %u handle %x\n", i, in efx_ef10_alloc_piobufs() 786 /* Link a buffer to each VI in the write-combining mapping */ in efx_ef10_link_piobufs() 797 "failed to link VI %u to PIO buffer %u (%d)\n", in efx_ef10_link_piobufs() 803 "linked VI %u to PIO buffer %u\n", in efx_ef10_link_piobufs() 807 /* Link a buffer to each TX queue */ in efx_ef10_link_piobufs() 830 * can only link one buffer to each VI. in efx_ef10_link_piobufs() 852 "failed to link VI %u to PIO buffer %u (%d)\n", in efx_ef10_link_piobufs() 861 "linked VI %u to PIO buffer %u offset %x addr %p\n", in efx_ef10_link_piobufs() 873 * buffer fo in efx_ef10_link_piobufs() 2237 struct efx_tx_buffer *buffer; efx_ef10_tx_tso_desc() local 2452 struct efx_tx_buffer *buffer; efx_ef10_tx_write() local [all...] |
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | validationES2.cpp | 2517 // only whole-buffer copies are permitted in ValidateBlitFramebufferANGLE() 2966 Buffer *buffer = context->getState().getTargetBuffer(target); in ValidateMapBufferOES() local 2968 if (buffer == nullptr) in ValidateMapBufferOES() 2982 // is compatible with the buffer's usage flags specified during glBufferStorageEXT in ValidateMapBufferOES() 2983 if (buffer->isImmutable() && (buffer->getStorageExtUsageFlags() & GL_MAP_WRITE_BIT) == 0) in ValidateMapBufferOES() 2989 if (buffer->isMapped()) in ValidateMapBufferOES() 3031 Buffer *buffer = context->getState().getTargetBuffer(target); in ValidateMapBufferBase() local 3032 ASSERT(buffer != nullptr); in ValidateMapBufferBase() 3034 // Check if this buffer i in ValidateMapBufferBase() 3541 Buffer *buffer = context->getState().getTargetBuffer(target); ValidateBufferData() local 3590 Buffer *buffer = context->getState().getTargetBuffer(target); ValidateBufferSubData() local 4608 ValidateIsBuffer(const Context *context, angle::EntryPoint entryPoint, BufferID buffer) ValidateIsBuffer() argument [all...] |
| /third_party/skia/third_party/externals/freetype/src/base/ |
| H A D | ftobjs.c | 344 FT_FREE( slot->bitmap.buffer ); in ft_glyphslot_free_bitmap() 349 /* assume that the bitmap buffer was stolen or not */ in ft_glyphslot_free_bitmap() 351 slot->bitmap.buffer = NULL; in ft_glyphslot_free_bitmap() 515 FT_Byte* buffer ) in ft_glyphslot_set_bitmap() 519 slot->bitmap.buffer = buffer; in ft_glyphslot_set_bitmap() 534 FT_FREE( slot->bitmap.buffer ); in FT_BASE_DEF() 538 FT_MEM_ALLOC( slot->bitmap.buffer, size ); in FT_BASE_DEF() 559 /* `slot->bitmap.buffer' has been handled by ft_glyphslot_free_bitmap */ in ft_glyphslot_clear() 590 /* free bitmap buffer i in ft_glyphslot_done() [all...] |
| /third_party/mesa3d/src/intel/vulkan/ |
| H A D | genX_cmd_buffer.c | 47 * - GPR 14 for secondary command buffer returns 176 /* Broadwell requires that we specify a buffer size for a bunch of in cmd_buffer_emit_state_base_address() 510 * portion of a HiZ buffer. Testing has revealed that Gfx8 only supports in anv_can_hiz_clear_ds_view() 623 /* Transitions a HiZ-enabled depth buffer from one layout to another. Unless 624 * the initial layout is undefined, the HiZ buffer and depth buffer will 703 /* Transitions a HiZ-enabled depth buffer from one layout to another. Unless 704 * the initial layout is undefined, the HiZ buffer and depth buffer will 720 /* On gfx7, we have to store a texturable version of the stencil buffer i in transition_stencil_buffer() 3446 struct anv_address buffer = cmd_buffer_flush_mesh_inline_data() local 3469 struct anv_address buffer = cmd_buffer_flush_mesh_inline_data() local 3827 struct anv_buffer *buffer = cmd_buffer->state.vertex_bindings[vb].buffer; cmd_buffer_flush_state() local [all...] |
| /third_party/mesa3d/src/gallium/drivers/r600/ |
| H A D | evergreen_state.c | 333 r600_init_command_buffer(&blend->buffer, 20); in evergreen_create_blend_state_mode() 341 /* we pretend 8 buffer are used, CB_SHADER_MASK will disable unused one */ in evergreen_create_blend_state_mode() 363 r600_store_context_reg(&blend->buffer, R_028808_CB_COLOR_CONTROL, color_control); in evergreen_create_blend_state_mode() 364 r600_store_context_reg(&blend->buffer, R_028B70_DB_ALPHA_TO_MASK, in evergreen_create_blend_state_mode() 370 r600_store_context_reg_seq(&blend->buffer, R_028780_CB_BLEND0_CONTROL, 8); in evergreen_create_blend_state_mode() 374 memcpy(blend->buffer_no_blend.buf, blend->buffer.buf, blend->buffer.num_dw * 4); in evergreen_create_blend_state_mode() 375 blend->buffer_no_blend.num_dw = blend->buffer.num_dw; in evergreen_create_blend_state_mode() 392 r600_store_value(&blend->buffer, 0); in evergreen_create_blend_state_mode() 407 r600_store_value(&blend->buffer, b in evergreen_create_blend_state_mode() 637 evergreen_fill_buffer_resource_words(struct r600_context *rctx, struct pipe_resource *buffer, struct eg_buf_res_params *params, bool *skip_mip_address_reloc, unsigned tex_resource_words[8]) evergreen_fill_buffer_resource_words() argument [all...] |