Home
last modified time | relevance | path

Searched refs:buffer (Results 2301 - 2325 of 13669) sorted by relevance

1...<<919293949596979899100>>...547

/kernel/linux/linux-6.6/sound/firewire/
H A Dcmp.c78 __be32 old_arg, buffer[2]; in pcr_modify() local
81 buffer[0] = c->last_pcr_value; in pcr_modify()
83 old_arg = buffer[0]; in pcr_modify()
84 buffer[1] = modify(c, buffer[0]); in pcr_modify()
88 pcr_address(c), buffer, 8, in pcr_modify()
98 if (buffer[0] == old_arg) /* success? */ in pcr_modify()
102 err = check(c, buffer[0]); in pcr_modify()
107 c->last_pcr_value = buffer[1]; in pcr_modify()
/third_party/icu/icu4c/source/common/
H A Dunifiedcache.h73 * Writes a description of this key to buffer and returns buffer. Written
76 virtual char *writeDescription(char *buffer, int32_t bufSize) const = 0;
118 virtual char *writeDescription(char *buffer, int32_t bufLen) const override {
120 uprv_strncpy(buffer, s, bufLen);
121 buffer[bufLen - 1] = 0;
122 return buffer;
169 virtual char *writeDescription(char *buffer, int32_t bufLen) const override {
171 uprv_strncpy(buffer, s, bufLen);
172 buffer[bufLe
[all...]
/third_party/libsnd/tests/
H A Dpeak_chunk_test.c44 static void check_logged_peaks (char *buffer) ;
46 /* Force the start of this buffer to be double aligned. Sparc-solaris will
194 /* Get the log buffer data. */ in test_float_peak()
199 { printf ("\n\nLine %d: Empty log buffer,\n", __LINE__) ; in test_float_peak()
236 /* Get the log buffer data. */ in test_float_peak()
241 { printf ("\n\nLine %d: Empty log buffer,\n", __LINE__) ; in test_float_peak()
258 check_logged_peaks (char *buffer) in check_logged_peaks() argument
263 if (strstr (buffer, "should") || strstr (buffer, "*")) in check_logged_peaks()
264 { printf ("\n\nLine %d: Something wrong in buffer in check_logged_peaks()
[all...]
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_buffer.c28 * SVGA buffer manager for Guest Memory Regions (GMRs).
35 * This file implements a pipebuffer library's buffer manager, so that we can
308 vmw_pb_buffer(struct svga_winsys_buffer *buffer) in vmw_pb_buffer() argument
310 assert(buffer); in vmw_pb_buffer()
311 return buffer->pb_buf; in vmw_pb_buffer()
315 vmw_svga_winsys_buffer_wrap(struct pb_buffer *buffer) in vmw_svga_winsys_buffer_wrap() argument
319 if (!buffer) in vmw_svga_winsys_buffer_wrap()
324 pb_reference(&buffer, NULL); in vmw_svga_winsys_buffer_wrap()
328 buf->pb_buf = buffer; in vmw_svga_winsys_buffer_wrap()
334 vmw_debug_flush_buf(struct svga_winsys_buffer *buffer) in vmw_debug_flush_buf() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunifiedcache.h73 * Writes a description of this key to buffer and returns buffer. Written
76 virtual char *writeDescription(char *buffer, int32_t bufSize) const = 0;
118 virtual char *writeDescription(char *buffer, int32_t bufLen) const override {
120 uprv_strncpy(buffer, s, bufLen);
121 buffer[bufLen - 1] = 0;
122 return buffer;
169 virtual char *writeDescription(char *buffer, int32_t bufLen) const override {
171 uprv_strncpy(buffer, s, bufLen);
172 buffer[bufLe
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DExternalBufferTest.cpp7 // Tests the correctness of external buffer ext extension.
97 // Testing subdata update with external buffer from AHB
110 GLBuffer buffer; in TEST_P() local
111 glBindBuffer(GL_SHADER_STORAGE_BUFFER, buffer); in TEST_P()
123 // Inspect the data written into the buffer using CPU access. in TEST_P()
138 // Verify that subdata updates to an external buffer backed by an AHB doesn't orphan the AHB
158 // Create a copy read buffer in TEST_P()
198 layout(std430, binding=0) buffer Output { in TEST_P()
215 GLBuffer buffer; in TEST_P() local
216 glBindBuffer(GL_SHADER_STORAGE_BUFFER, buffer); in TEST_P()
262 GLBuffer buffer; TEST_P() local
301 GLBuffer buffer; TEST_P() local
[all...]
/third_party/skia/src/core/
H A DSkColorFilter_Matrix.cpp48 void SkColorFilter_Matrix::flatten(SkWriteBuffer& buffer) const { in flatten()
50 buffer.writeScalarArray(fMatrix, 20); in flatten()
53 buffer.writeBool(fDomain == Domain::kRGBA); in flatten()
55 buffer.writeBool(fClamp == Clamp::kYes); in flatten()
59 sk_sp<SkFlattenable> SkColorFilter_Matrix::CreateProc(SkReadBuffer& buffer) { in CreateProc() argument
61 if (!buffer.readScalarArray(matrix, 20)) { in CreateProc()
65 auto is_rgba = buffer.readBool(); in CreateProc()
67 Clamp clamp = buffer.isVersionLT(SkPicturePriv::kUnclampedMatrixColorFilter) in CreateProc()
69 : (buffer.readBool() ? Clamp::kYes : Clamp::kNo); in CreateProc()
/third_party/skia/src/gpu/vk/
H A DGrVkMemory.cpp45 VkBuffer buffer,
67 VkResult result = allocator->allocateBufferMemory(buffer, usage, propFlags, &memory);
78 // Bind buffer
80 GR_VK_CALL_RESULT(gpu, err, BindBufferMemory(gpu->device(), buffer, alloc->fMemory,
92 VkBuffer buffer,
97 VK_CALL(gpu, GetBufferMemoryRequirements(device, buffer, &memReqs));
109 importInfo.buffer = nativeBuffer;
115 dedicatedAllocInfo.buffer = buffer;
130 // Bind buffer
44 AllocAndBindBufferMemory(GrVkGpu* gpu, VkBuffer buffer, BufferUsage usage, GrVkAlloc* alloc, size_t size) global() argument
90 ImportAndBindBufferMemory(GrVkGpu* gpu, OH_NativeBuffer *nativeBuffer, VkBuffer buffer, GrVkAlloc* alloc) global() argument
[all...]
/third_party/skia/src/effects/imagefilters/
H A DSkAlphaThresholdImageFilter.cpp85 sk_sp<SkFlattenable> SkAlphaThresholdImageFilter::CreateProc(SkReadBuffer& buffer) { in CreateProc() argument
87 SkScalar inner = buffer.readScalar(); in CreateProc()
88 SkScalar outer = buffer.readScalar(); in CreateProc()
90 buffer.readRegion(&rgn); in CreateProc()
94 void SkAlphaThresholdImageFilter::flatten(SkWriteBuffer& buffer) const { in flatten()
95 this->INHERITED::flatten(buffer); in flatten()
96 buffer.writeScalar(fInnerThreshold); in flatten()
97 buffer.writeScalar(fOuterThreshold); in flatten()
98 buffer.writeRegion(fRegion); in flatten()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DVertexDataManager.cpp45 ERR("Failed to allocate the streaming vertex buffer."); in VertexDataManager()
61 Buffer *buffer = attribute.mBoundBuffer; in writeAttributeData() local
76 ERR("Failed to map vertex buffer."); in writeAttributeData()
82 if(buffer) in writeAttributeData()
84 input = static_cast<const char*>(buffer->data()) + attribute.mOffset; in writeAttributeData()
123 // Determine the required storage size per used buffer in prepareVertexData()
154 Buffer *buffer = attrib.mBoundBuffer; in prepareVertexData() local
156 if((!buffer && attrib.mPointer == nullptr) || (buffer && !buffer in prepareVertexData()
[all...]
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/
H A DFontDataTests.java79 // for sizing the slicing increments on the buffer used in read and write tests
81 // for sizing the buffer used in buffered read and write tests as fractions of the original
153 // buffer writes in slicingWriteTest()
182 // buffer reads in readComparison()
201 byte[] buffer = new byte[bufferSize]; in readFontDataWithBuffer()
206 int bytesRead = rfd.readBytes(index, buffer, 0, buffer.length); in readFontDataWithBuffer()
207 System.arraycopy(buffer, 0, b, index, bytesRead); in readFontDataWithBuffer()
236 byte[] buffer = new byte[bufferSize]; in writeFontDataWithBuffer()
240 int bytesRead = rfd.readBytes(index, buffer, in writeFontDataWithBuffer()
[all...]
/third_party/skia/tests/
H A DPDFDocumentTest.cpp72 char buffer[256]; in test_abortWithFile() local
73 REPORTER_ASSERT(reporter, fread(buffer, 1, sizeof(buffer), file) < sizeof(buffer)); in test_abortWithFile()
162 SkDynamicMemoryWStream buffer; in DEF_TEST() local
163 auto doc = SkPDF::MakeDocument(&buffer, pdfMetadata); in DEF_TEST()
166 sk_sp<SkData> data(buffer.detachAsData()); in DEF_TEST()
182 doc = SkPDF::MakeDocument(&buffer, pdfMetadata); in DEF_TEST()
185 data = buffer.detachAsData(); in DEF_TEST()
/third_party/skia/third_party/externals/freetype/src/cache/
H A Dftcsbits.c56 if ( !FT_QALLOC( sbit->buffer, size ) ) in ftc_sbit_copy_bitmap()
57 FT_MEM_COPY( sbit->buffer, bitmap->buffer, size ); in ftc_sbit_copy_bitmap()
74 FT_FREE( sbit->buffer ); in ftc_snode_free()
143 /* and we will leave it as `missing' with sbit.buffer = 0 */ in ftc_snode_load()
179 sbit->buffer = bitmap->buffer; in ftc_snode_load()
184 /* copy the bitmap into a new buffer -- ignore error */ in ftc_snode_load()
195 /* we mark unloaded glyphs with `sbit.buffer == 0' */ in ftc_snode_load()
203 sbit->buffer in ftc_snode_load()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DOptional.h38 new (storage.buffer) T(y); in Optional()
42 new (storage.buffer) T(*O); in Optional()
46 new (storage.buffer) T(std::forward<T>(y)); in Optional()
50 new (storage.buffer) T(std::move(*O)); in Optional()
58 new (storage.buffer) T(std::move(y)); in operator =()
78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...); in emplace()
94 new (storage.buffer) T(y); in operator =()
119 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); } in getPointer()
120 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); } in getPointer()
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksSerializer.hpp37 static void SerializeData (vector<u8>& buffer, msize& pos, VoidPointer data, msize size) in SerializeData()
40 if ((pos + size) > buffer.size()) buffer.resize(pos + size); in SerializeData()
41 memmove(buffer.data() + pos, data, size); in SerializeData()
49 static void SerializeData (vector<u8>& buffer, msize& pos, VoidPointer data, msize size) in SerializeData()
53 if ( (pos + size) > buffer.size() ) throw std::runtime_error("SerializeData::ToRead unexpected end"); in SerializeData()
54 memmove(data, buffer.data() + pos, size); in SerializeData()
266 inline T Deserialize(vector<u8>& buffer) in Deserialize() argument
269 Serializer<ToRead>{buffer}.SerializeObject(result); in Deserialize()
/third_party/vk-gl-cts/modules/egl/
H A DteglAndroidUtil.cpp100 typedef void (*pfnAHardwareBuffer_describe)(const AHardwareBuffer* buffer, AHardwareBuffer_Desc* outDesc);
101 typedef void (*pfnAHardwareBuffer_acquire)(AHardwareBuffer* buffer);
102 typedef void (*pfnAHardwareBuffer_release)(AHardwareBuffer* buffer);
242 typedef EGLW_APICALL EGLClientBuffer (EGLW_APIENTRY* eglGetNativeClientBufferANDROIDFunc) (const struct AHardwareBuffer *buffer);
291 MovePtr<AndroidNativeClientBuffer> buffer (new AndroidNativeClientBuffer(egl, m_format, m_numLayers, m_isY8Cb8Cr8_420));
311 buffer->lock(&bufferData);
313 AHardwareBuffer_Desc desc = buffer->describe();
320 buffer->unlock();
323 return MovePtr<ClientBuffer>(buffer);
/base/security/dlp_permission_service/interfaces/inner_api/dlp_fuse/test/unittest/src/
H A Ddlp_fuse_test.cpp323 char buffer[] = "123456"; in HWTEST_F() local
324 ASSERT_NE(write(g_plainFileFd, buffer, sizeof(buffer)), -1); in HWTEST_F()
326 ASSERT_NE(write(g_plainFileFd, buffer, sizeof(buffer)), -1); in HWTEST_F()
381 char buffer[] = "111111"; in HWTEST_F() local
382 ASSERT_NE(write(g_plainFileFd, buffer, strlen("111111")), -1); in HWTEST_F()
497 char buffer[] = "123456"; in HWTEST_F() local
498 ASSERT_NE(write(g_plainFileFd, buffer, strlen("123456")), -1); in HWTEST_F()
539 char buffer[] in HWTEST_F() local
582 char buffer[] = "123456"; HWTEST_F() local
632 char buffer[] = "123456"; HWTEST_F() local
690 char buffer[] = "123456"; HWTEST_F() local
851 char buffer[] = "123456"; HWTEST_F() local
972 uint8_t buffer[16] = {0}; HWTEST_F() local
994 uint8_t buffer[16] = {0}; HWTEST_F() local
1016 uint8_t buffer[16] = {0}; HWTEST_F() local
[all...]
/kernel/linux/linux-5.10/crypto/
H A Dskcipher.c39 u8 buffer[]; member
97 addr = (u8 *)ALIGN((unsigned long)walk->buffer, walk->alignmask + 1); in skcipher_done_slow()
163 if (!((unsigned long)walk->buffer | (unsigned long)walk->page)) in skcipher_walk_done()
171 if (walk->buffer != walk->page) in skcipher_walk_done()
172 kfree(walk->buffer); in skcipher_walk_done()
193 data = PTR_ALIGN(&p->buffer[0], walk->alignmask + 1); in skcipher_walk_complete()
210 if (walk->buffer != walk->page) in skcipher_walk_complete()
211 kfree(walk->buffer); in skcipher_walk_complete()
231 u8 *buffer; in skcipher_next_slow() local
235 if (!walk->buffer) in skcipher_next_slow()
583 u8 *buffer, *alignbuffer; skcipher_setkey_unaligned() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_acpi.c143 * Returns a pointer to the acpi output buffer.
152 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; in amdgpu_atif_call() local
162 atif_arg_elements[1].buffer.length = params->length; in amdgpu_atif_call()
163 atif_arg_elements[1].buffer.pointer = params->pointer; in amdgpu_atif_call()
171 &buffer); in amdgpu_atif_call()
177 kfree(buffer.pointer); in amdgpu_atif_call()
181 return buffer.pointer; in amdgpu_atif_call()
248 size = *(u16 *) info->buffer.pointer; in amdgpu_atif_verify_interface()
250 DRM_INFO("ATIF buffer is too small: %zu\n", size); in amdgpu_atif_verify_interface()
256 memcpy(&output, info->buffer in amdgpu_atif_verify_interface()
529 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; amdgpu_atcs_call() local
1292 struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name}; amdgpu_atif_pci_probe_handle() local
1327 struct acpi_buffer buffer = { sizeof(acpi_method_name), acpi_method_name }; amdgpu_atcs_pci_probe_handle() local
[all...]
/kernel/linux/linux-6.6/crypto/
H A Dskcipher.c43 u8 buffer[]; member
116 addr = (u8 *)ALIGN((unsigned long)walk->buffer, walk->alignmask + 1); in skcipher_done_slow()
182 if (!((unsigned long)walk->buffer | (unsigned long)walk->page)) in skcipher_walk_done()
190 if (walk->buffer != walk->page) in skcipher_walk_done()
191 kfree(walk->buffer); in skcipher_walk_done()
212 data = PTR_ALIGN(&p->buffer[0], walk->alignmask + 1); in skcipher_walk_complete()
229 if (walk->buffer != walk->page) in skcipher_walk_complete()
230 kfree(walk->buffer); in skcipher_walk_complete()
250 u8 *buffer; in skcipher_next_slow() local
254 if (!walk->buffer) in skcipher_next_slow()
596 u8 *buffer, *alignbuffer; skcipher_setkey_unaligned() local
[all...]
/kernel/linux/linux-6.6/net/ipv4/
H A Dsysctl_net_ipv4.c69 void *buffer, size_t *lenp, loff_t *ppos) in ipv4_local_port_range()
85 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos); in ipv4_local_port_range()
104 void *buffer, size_t *lenp, loff_t *ppos) in ipv4_privileged_ports()
121 ret = proc_dointvec_minmax(&tmp, write, buffer, lenp, ppos); in ipv4_privileged_ports()
165 void *buffer, size_t *lenp, loff_t *ppos) in ipv4_ping_group_range()
182 ret = proc_doulongvec_minmax(&tmp, write, buffer, lenp, ppos); in ipv4_ping_group_range()
200 void *buffer, size_t *lenp, loff_t *ppos) in ipv4_fwd_update_priority()
207 ret = proc_dou8vec_minmax(table, write, buffer, lenp, ppos); in ipv4_fwd_update_priority()
216 void *buffer, size_t *lenp, loff_t *ppos) in proc_tcp_congestion_control()
229 ret = proc_dostring(&tbl, write, buffer, len in proc_tcp_congestion_control()
68 ipv4_local_port_range(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) ipv4_local_port_range() argument
103 ipv4_privileged_ports(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) ipv4_privileged_ports() argument
164 ipv4_ping_group_range(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) ipv4_ping_group_range() argument
199 ipv4_fwd_update_priority(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) ipv4_fwd_update_priority() argument
215 proc_tcp_congestion_control(struct ctl_table *ctl, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tcp_congestion_control() argument
235 proc_tcp_available_congestion_control(struct ctl_table *ctl, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tcp_available_congestion_control() argument
251 proc_allowed_congestion_control(struct ctl_table *ctl, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_allowed_congestion_control() argument
288 proc_tcp_fastopen_key(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tcp_fastopen_key() argument
359 proc_tfo_blackhole_detect_timeout(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tfo_blackhole_detect_timeout() argument
374 proc_tcp_available_ulp(struct ctl_table *ctl, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tcp_available_ulp() argument
391 proc_tcp_ehash_entries(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_tcp_ehash_entries() argument
415 proc_udp_hash_entries(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_udp_hash_entries() argument
439 proc_fib_multipath_hash_policy(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_fib_multipath_hash_policy() argument
454 proc_fib_multipath_hash_fields(struct ctl_table *table, int write, void *buffer, size_t *lenp, loff_t *ppos) proc_fib_multipath_hash_fields() argument
[all...]
/third_party/ffmpeg/libavfilter/
H A Daf_afwtdn.c398 double *buffer; member
471 double *buffer, int buffer_length) in conv_down()
476 memcpy(buffer, in, buff_idx * sizeof(*buffer)); in conv_down()
477 memset(buffer + buff_idx, 0, (buffer_length - buff_idx) * sizeof(*buffer)); in conv_down()
484 const double btemp = buffer[idx]; in conv_down()
492 buffer[buff_idx++] = in[2 * i + 1 + skip]; in conv_down()
493 buffer[buff_idx++] = in[2 * i + 2 + skip]; in conv_down()
499 const double btemp = buffer[id in conv_down()
468 conv_down(double *in, int in_length, double *low, double *high, int out_length, const double *lp, const double *hp, int wavelet_length, int skip, double *buffer, int buffer_length) conv_down() argument
718 conv_up(double *low, double *high, int in_length, double *out, int out_length, const double *lp, const double *hp, int filter_length, double *buffer, double *buffer2, int buffer_length) conv_up() argument
[all...]
/third_party/curl/lib/
H A Dtelnet.c120 char *buffer, ssize_t nread);
163 struct dynbuf out; /* output buffer */
167 unsigned char *subpointer, *subend; /* buffer for sub-options */
803 char buffer[256]; in check_telnet_options() local
808 msnprintf(buffer, sizeof(buffer), "USER,%s", data->conn->user); in check_telnet_options()
809 beg = curl_slist_append(tn->telnet_vars, buffer); in check_telnet_options()
930 * Look at the sub-option buffer, and try to be helpful to the other
1232 char *buffer, ssize_t nread) in send_telnet_data()
1243 if(memchr(buffer, CURL_IA in send_telnet_data()
1231 send_telnet_data(struct Curl_easy *data, char *buffer, ssize_t nread) send_telnet_data() argument
1323 char buffer[4*1024]; telnet_do() local
[all...]
/third_party/libsnd/src/
H A Dflac.c123 static FLAC__StreamDecoderReadStatus sf_flac_read_callback (const FLAC__StreamDecoder *decoder, FLAC__byte buffer [], size_t *bytes, void *client_data) ;
128 static FLAC__StreamDecoderWriteStatus sf_flac_write_callback (const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const int32_t * const buffer [], void *client_data) ;
135 static FLAC__StreamEncoderWriteStatus sf_flac_enc_write_callback (const FLAC__StreamEncoder *encoder, const FLAC__byte buffer [], size_t bytes, unsigned samples, unsigned current_frame, void *client_data) ;
178 const int32_t* const *buffer = pflac->wbuffer ; in flac_buffer_copy() local
215 memcpy (pflac->rbuffer [i], buffer [i], frame->header.blocksize * sizeof (int32_t)) ; in flac_buffer_copy()
245 retpcm [offset + j] = buffer [j][pflac->bufferpos] >> shift ; in flac_buffer_copy()
261 retpcm [offset + j] = ((uint16_t) buffer [j][pflac->bufferpos]) << shift ; in flac_buffer_copy()
283 retpcm [offset + j] = ((uint32_t) buffer [j][pflac->bufferpos]) << shift ; in flac_buffer_copy()
304 retpcm [offset + j] = buffer [j][pflac->bufferpos] * norm ; in flac_buffer_copy()
325 retpcm [offset + j] = buffer [ in flac_buffer_copy()
344 sf_flac_read_callback (const FLAC__StreamDecoder * UNUSED (decoder), FLAC__byte buffer [], size_t *bytes, void *client_data) global() variable
397 sf_flac_write_callback (const FLAC__StreamDecoder * UNUSED (decoder), const FLAC__Frame *frame, const int32_t * const buffer [], void *client_data) global() variable
582 sf_flac_enc_write_callback (const FLAC__StreamEncoder * UNUSED (encoder), const FLAC__byte buffer [], size_t bytes, unsigned UNUSED (samples), unsigned UNUSED (current_frame), void *client_data) global() variable
1066 int32_t* buffer = pflac->encbuffer ; flac_write_s2flac() local
1108 int32_t* buffer = pflac->encbuffer ; flac_write_i2flac() local
1150 int32_t* buffer = pflac->encbuffer ; flac_write_f2flac() local
1281 int32_t* buffer = pflac->encbuffer ; flac_write_d2flac() local
[all...]
/device/soc/rockchip/common/sdk_linux/kernel/power/
H A Dsnapshot.c145 /* Pointer to an auxiliary buffer (1 page) */
146 static void *buffer; variable
1426 safe_copy_page(buffer, s_page); in copy_data_page()
1428 copy_page(dst, buffer); in copy_data_page()
1546 buffer = NULL; in swsusp_free()
1941 * get_highmem_buffer - Allocate a buffer for highmem pages.
1944 * buffer to copy them and/or load their data.
1948 buffer = get_image_page(GFP_ATOMIC, safe_needed); in get_highmem_buffer()
1949 return buffer ? 0 : -ENOMEM; in get_highmem_buffer()
2119 * @buf: Memory buffer t
[all...]

Completed in 25 milliseconds

1...<<919293949596979899100>>...547