/kernel/linux/linux-5.10/mm/ |
H A D | lmkd_dbg_trigger.c | 38 char buffer[PROC_NUMBUF]; in lmkd_dbg_trigger_write() local 42 memset(buffer, 0, sizeof(buffer)); in lmkd_dbg_trigger_write() 43 if (count > sizeof(buffer) - 1) in lmkd_dbg_trigger_write() 44 count = sizeof(buffer) - 1; in lmkd_dbg_trigger_write() 45 if (copy_from_user(buffer, buf, count)) { in lmkd_dbg_trigger_write() 50 err = kstrtoint(strstrip(buffer), 0, &oom_score_adj); in lmkd_dbg_trigger_write()
|
/kernel/linux/linux-6.6/include/keys/ |
H A D | trusted_tpm.h | 15 #define LOAD32(buffer, offset) (ntohl(*(uint32_t *)&buffer[offset])) 16 #define LOAD32N(buffer, offset) (*(uint32_t *)&buffer[offset]) 17 #define LOAD16(buffer, offset) (ntohs(*(uint16_t *)&buffer[offset])) 36 int TSS_checkhmac1(unsigned char *buffer, 81 pr_info("\ntpm buffer\n"); in dump_tpm_buf()
|
/kernel/linux/linux-6.6/sound/firewire/oxfw/ |
H A D | oxfw-proc.c | 11 struct snd_info_buffer *buffer) in proc_read_formation() 26 snd_iprintf(buffer, "Input Stream to device:\n"); in proc_read_formation() 27 snd_iprintf(buffer, "\tRate\tPCM\tMIDI\n"); in proc_read_formation() 42 snd_iprintf(buffer, "%c\t%d\t%d\t%d\n", flag, in proc_read_formation() 56 snd_iprintf(buffer, "Output Stream from device:\n"); in proc_read_formation() 57 snd_iprintf(buffer, "\tRate\tPCM\tMIDI\n"); in proc_read_formation() 72 snd_iprintf(buffer, "%c\t%d\t%d\t%d\n", flag, in proc_read_formation() 10 proc_read_formation(struct snd_info_entry *entry, struct snd_info_buffer *buffer) proc_read_formation() argument
|
/test/xts/hats/kernel/syscalls/fileio/setdomainname/ |
H A D | SetDomainNameApiTest.cpp | 72 char buffer[DOMAIN_NAME_MAX_LEN] = { 0 }; in HWTEST_F() local 75 ret = getdomainname(buffer, sizeof(buffer)); in HWTEST_F() 77 EXPECT_STREQ(buffer, TEST_DOMAIN_NAME); in HWTEST_F() 123 char buffer[MIN_LEN] = { 0 }; in HWTEST_F() local 125 ret = getdomainname(buffer, sizeof(buffer)); in HWTEST_F()
|
/third_party/curl/docs/examples/ |
H A D | websocket.c | 46 char buffer[256]; in recv_pong() local 47 CURLcode result = curl_ws_recv(curl, buffer, sizeof(buffer), &rlen, &meta); in recv_pong() 53 if(!memcmp(expected_payload, buffer, rlen)) { in recv_pong() 75 char buffer[256]; in recv_any() local 76 CURLcode result = curl_ws_recv(curl, buffer, sizeof(buffer), &rlen, &meta); in recv_any()
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | wasm-module-debug.h | 34 uint32_t index, uint8_t* buffer, 40 uint32_t index, uint8_t* buffer, 45 uint32_t index, uint8_t* buffer, 50 // Returns the number of byte copied to {buffer}, or 0 is case of error. 52 uint32_t GetWasmMemory(Isolate* isolate, uint32_t offset, uint8_t* buffer, 57 // Returns the number of byte copied to {buffer}, or 0 is case of error. 59 uint32_t GetWasmData(Isolate* isolate, uint32_t offset, uint8_t* buffer, 64 // Returns the number of byte copied to {buffer}, or 0 is case of error. 65 uint32_t GetWasmModuleBytes(wasm_addr_t wasm_addr, uint8_t* buffer, 99 static bool GetWasmValue(const wasm::WasmValue& wasm_value, uint8_t* buffer, [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | system_utils_win32.cpp | 99 std::array<char, MAX_PATH> buffer; variable 100 if (GetModuleFileNameA(mModule, buffer.data(), buffer.size()) == 0) 105 return std::string(buffer.data()); 114 char buffer[MAX_PATH]; in OpenSharedLibrary() local 115 int ret = snprintf(buffer, MAX_PATH, "%s.%s", libraryName, GetSharedLibraryExtension()); in OpenSharedLibrary() 118 return new Win32Library(buffer, searchType); in OpenSharedLibrary()
|
/third_party/skia/third_party/externals/spirv-cross/tests-other/ |
H A D | hlsl_resource_bindings.cpp | 28 std::vector<SpvId> buffer(len / sizeof(SpvId)); in read_file() 29 if (fread(buffer.data(), 1, len, file) != (size_t)len) in read_file() 36 return buffer; in read_file() 44 auto buffer = read_file(argv[1]); in main() 45 if (buffer.empty()) in main() 53 SPVC_CHECKED_CALL(spvc_context_parse_spirv(ctx, buffer.data(), buffer.size(), &parsed_ir)); in main()
|
H A D | msl_resource_bindings.cpp | 28 std::vector<SpvId> buffer(len / sizeof(SpvId)); in read_file() 29 if (fread(buffer.data(), 1, len, file) != (size_t)len) in read_file() 36 return buffer; in read_file() 44 auto buffer = read_file(argv[1]); in main() 45 if (buffer.empty()) in main() 53 SPVC_CHECKED_CALL(spvc_context_parse_spirv(ctx, buffer.data(), buffer.size(), &parsed_ir)); in main()
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/arm/ |
H A D | jchuff.h | 27 size_t put_buffer; /* current bit accumulation buffer */ 33 JOCTET *next_output_byte; /* => next byte to write in buffer */ 34 size_t free_in_buffer; /* # of byte spaces remaining in buffer */ 35 savable_state cur; /* Current bit buffer & DC state */ 43 * as 0xFF 0x00, so the output buffer pointer is advanced by 2 if the byte is 44 * 0xFF. Otherwise, the output buffer pointer is advanced by 1, and the 48 buffer[0] = (JOCTET)(b); \ 49 buffer[1] = 0; \ 50 buffer -= -2 + ((JOCTET)(b) < 0xFF); \ 53 /* Output the entire bit buffer [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
H A D | nv84_video.c | 559 nv84_video_buffer_sampler_view_planes(struct pipe_video_buffer *buffer) in nv84_video_buffer_sampler_view_planes() argument 561 struct nv84_video_buffer *buf = (struct nv84_video_buffer *)buffer; in nv84_video_buffer_sampler_view_planes() 566 nv84_video_buffer_sampler_view_components(struct pipe_video_buffer *buffer) in nv84_video_buffer_sampler_view_components() argument 568 struct nv84_video_buffer *buf = (struct nv84_video_buffer *)buffer; in nv84_video_buffer_sampler_view_components() 573 nv84_video_buffer_surfaces(struct pipe_video_buffer *buffer) in nv84_video_buffer_surfaces() argument 575 struct nv84_video_buffer *buf = (struct nv84_video_buffer *)buffer; in nv84_video_buffer_surfaces() 580 nv84_video_buffer_destroy(struct pipe_video_buffer *buffer) in nv84_video_buffer_destroy() argument 582 struct nv84_video_buffer *buf = (struct nv84_video_buffer *)buffer; in nv84_video_buffer_destroy() 598 FREE(buffer); in nv84_video_buffer_destroy() 605 struct nv84_video_buffer *buffer; in nv84_video_buffer_create() local [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/ |
H A D | rs_base_render_util.cpp | 651 RS_LOGE("ConvertBufferColorGamut: the buffer's format is not supported."); 742 RS_LOGE("RSBaseRenderUtil::ConvertYUV420SPToRGBA null buffer ptr"); 750 RS_LOGE("RSBaseRenderUtil::ConvertYUV420SPToRGBA invalid buffer size, w/h/stride/size = [%{public}d," 755 // temporally only update buffer len for video stream 765 RS_LOGE("RSBaseRenderUtil::ConvertYUV420SPToRGBA invalid buffer size, " 890 // maxDirtyListSize should minus one buffer used for displaying, and another one that has just been acquried. 904 ret = surfaceConsumer->ReleaseBuffer(returnValue.buffer, returnValue.fence); 954 RS_LOGE("Consume and update buffer fail for consumer is nullptr"); 965 if (returnValue.buffer == nullptr || ret != SURFACE_ERROR_OK) { 972 surfaceBuffer->buffer [all...] |
H A D | rs_egl_image_manager.cpp | 86 explicit NativeWindowBufferObject(sptr<OHOS::SurfaceBuffer> buffer) in NativeWindowBufferObject() argument 87 : handle_(CreateNativeWindowBufferFromSurfaceBuffer(&buffer)) in NativeWindowBufferObject() 137 NativeWindowBufferObject CreateNativeWindowBuffer(const sptr<OHOS::SurfaceBuffer>& buffer) in CreateNativeWindowBuffer() argument 139 return NativeWindowBufferObject(buffer); in CreateNativeWindowBuffer() 216 const sptr<OHOS::SurfaceBuffer>& buffer) in Create() 218 auto nativeBuffer = Detail::CreateNativeWindowBuffer(buffer); in Create() 250 GLuint RSEglImageManager::CreateImageCacheFromBuffer(const sptr<OHOS::SurfaceBuffer>& buffer, in CreateImageCacheFromBuffer() argument 253 auto bufferId = buffer->GetSeqNum(); in CreateImageCacheFromBuffer() 254 auto imageCache = ImageCacheSeq::Create(eglDisplay_, EGL_NO_CONTEXT, buffer); in CreateImageCacheFromBuffer() 256 RS_LOGE("RSEglImageManager::CreateImageCacheFromBuffer: failed to create ImageCache for buffer i in CreateImageCacheFromBuffer() 213 Create( EGLDisplay eglDisplay, EGLContext eglContext, const sptr<OHOS::SurfaceBuffer>& buffer) Create() argument 270 CreateImageCacheFromBuffer(const sptr<OHOS::SurfaceBuffer>& buffer, const sptr<SyncFence>& acquireFence) CreateImageCacheFromBuffer() argument 284 MapEglImageFromSurfaceBuffer(const sptr<OHOS::SurfaceBuffer>& buffer, const sptr<SyncFence>& acquireFence, pid_t threadIndex) MapEglImageFromSurfaceBuffer() argument [all...] |
/base/update/updater/services/package/pkg_manager/ |
H A D | pkg_stream.cpp | 84 PKG_LOGE("insufficient buffer capacity"); in Read() 99 if (data.buffer == nullptr) { in Read() 101 data.buffer = data.data.data(); in Read() 103 readLen = fread(data.buffer, 1, needRead, stream_); in Read() 126 size_t len = fwrite(data.buffer, size, 1, stream_); in Write() 128 PKG_LOGE("Write buffer fail"); in Write() 220 PKG_LOGE("insufficient buffer capacity"); in Read() 226 data.buffer = memMap_ + start; in Read() 228 if (memcpy_s(data.buffer, needRead, memMap_ + start, readLen) != EOK) { in Read() 253 int32_t ret = memcpy_s(memMap_ + currOffset_, memSize_ - currOffset_, data.buffer, siz in Write() 313 uint8_t *buffer = nullptr; Read() local [all...] |
/foundation/multimedia/av_codec/frameworks/native/avdemuxer/ |
H A D | avdemuxer_impl.cpp | 23 #include "buffer/avsharedmemorybase.h" 103 "Sample buffer is nullptr"); in ReadSampleBuffer() 117 CHECK_AND_RETURN_RET_LOG(sample != nullptr, AVCS_ERR_INVALID_VAL, "Sample buffer is nullptr"); in ReadSample() 121 std::shared_ptr<AVBuffer> buffer = AVBuffer::CreateAVBuffer( in ReadSample() local 123 CHECK_AND_RETURN_RET_LOG(buffer != nullptr && buffer->memory_ != nullptr, AVCS_ERR_INVALID_VAL, in ReadSample() 125 Status ret = mediaDemuxer_->ReadSample(trackIndex, buffer); in ReadSample() 127 info.presentationTimeUs = buffer->pts_; in ReadSample() 128 info.size = buffer->memory_->GetSize(); in ReadSample() 130 flag = buffer in ReadSample() 140 std::shared_ptr<AVBuffer> buffer = AVBuffer::CreateAVBuffer( ReadSample() local [all...] |
/foundation/graphic/graphic_2d/rosen/test/render/render/unittest/pipeline/ |
H A D | rs_base_render_engine_unit_test.cpp | 51 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 100 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 104 layer->SetBuffer(buffer, node->GetRSSurfaceHandler()->GetAcquireFence());
in HWTEST() 110 buffer->SetSurfaceBufferColorGamut(GraphicColorGamut::GRAPHIC_COLOR_GAMUT_SRGB);
in HWTEST() 111 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCBCR_420_SP;
in HWTEST() 115 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCRCB_420_SP;
in HWTEST() 136 param.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() 173 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 174 if (buffer == nullptr || buffer in HWTEST() [all...] |
H A D | rs_unittest_base_render_engine_test.cpp | 83 param.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() 120 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 121 if (buffer == nullptr || buffer->GetBufferHandle() == nullptr) {
in HWTEST() 124 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCBCR_420_SP;
in HWTEST() 125 bool ret = renderEngine->CheckIsHdrSurfaceBuffer(buffer);
in HWTEST() 127 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCBCR_P010;
in HWTEST() 128 ret = renderEngine->CheckIsHdrSurfaceBuffer(buffer);
in HWTEST() 163 params.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() 228 auto buffer in HWTEST() local 251 auto buffer = node->GetRSSurfaceHandler()->GetBuffer(); HWTEST() local [all...] |
/foundation/graphic/graphic_2d/rosen/samples/composer/ |
H A D | layer_context.cpp | 91 OHOS::sptr<SurfaceBuffer> buffer; in DrawBufferColor() local 105 SurfaceError ret = pSurface_->RequestBuffer(buffer, releaseFence, config); in DrawBufferColor() 114 if (buffer == nullptr) { in DrawBufferColor() 115 LOGE("%s: buffer is nullptr", __func__); in DrawBufferColor() 119 auto addr = static_cast<uint8_t *>(buffer->GetVirAddr()); in DrawBufferColor() 120 LOGI("buffer w:%{public}d h:%{public}d stride:%{public}d", buffer->GetWidth(), in DrawBufferColor() 121 buffer->GetHeight(), buffer->GetBufferHandle()->stride); in DrawBufferColor() 122 DrawColor(addr, buffer in DrawBufferColor() 169 OHOS::sptr<SurfaceBuffer> buffer = nullptr; FillHDIBuffer() local [all...] |
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service/unittest/pipeline/ |
H A D | rs_base_render_engine_test.cpp | 77 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 100 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 104 layer->SetBuffer(buffer, node->GetRSSurfaceHandler()->GetAcquireFence());
in HWTEST() 110 buffer->SetSurfaceBufferColorGamut(GraphicColorGamut::GRAPHIC_COLOR_GAMUT_SRGB);
in HWTEST() 111 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCBCR_420_SP;
in HWTEST() 115 buffer->GetBufferHandle()->format = GraphicPixelFormat::GRAPHIC_PIXEL_FMT_YCRCB_420_SP;
in HWTEST() 136 param.buffer = surfaceNode->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() 173 auto buffer = node->GetRSSurfaceHandler()->GetBuffer();
in HWTEST() local 174 if (buffer == nullptr || buffer in HWTEST() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/ |
H A D | communicator.cpp | 119 SerialBuffer *buffer = ProtocolProto::ToSerialBuffer(inMsg, extendHandle, false, error); in SendMessage() local 125 int errCode = ProtocolProto::SetDivergeHeader(buffer, commLabel_); in SendMessage() 128 delete buffer; in SendMessage() 129 buffer = nullptr; in SendMessage() 134 errCode = commAggrHandle_->ScheduleSendTask(dstTarget, buffer, FrameType::APPLICATION_MESSAGE, taskConfig, onEnd); in SendMessage() 140 // if send fails, free buffer, otherwise buffer should be taked over by comminucator aggregator in SendMessage() 141 delete buffer; in SendMessage() 142 buffer = nullptr; in SendMessage() 223 SerialBuffer *buffer in TriggerVersionNegotiation() local 254 SerialBuffer *buffer = ProtocolProto::BuildFeedbackMessageFrame(oriMsg, commLabel_, errCode); TriggerUnknownMessageFeedback() local [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/mwifiex/ |
H A D | 11h.c | 34 /* This function appends 11h info to a buffer while joining an 38 mwifiex_11h_process_infra_join(struct mwifiex_private *priv, u8 **buffer, in mwifiex_11h_process_infra_join() argument 48 if (!buffer || !(*buffer)) in mwifiex_11h_process_infra_join() 54 cap = (struct mwifiex_ie_types_pwr_capability *)*buffer; in mwifiex_11h_process_infra_join() 59 *buffer += sizeof(*cap); in mwifiex_11h_process_infra_join() 61 constraint = (struct mwifiex_ie_types_local_pwr_constraint *)*buffer; in mwifiex_11h_process_infra_join() 66 *buffer += sizeof(*constraint); in mwifiex_11h_process_infra_join() 68 ie_header = (struct mwifiex_ie_types_header *)*buffer; in mwifiex_11h_process_infra_join() 71 *buffer in mwifiex_11h_process_infra_join() 100 mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer, struct mwifiex_bssdescriptor *bss_desc) mwifiex_11h_process_join() argument [all...] |
/kernel/linux/linux-5.10/sound/firewire/ |
H A D | amdtp-am824.c | 151 __be32 *buffer, unsigned int frames, in write_pcm_s32() 171 buffer[p->pcm_positions[c]] = in write_pcm_s32() 175 buffer += s->data_block_quadlets; in write_pcm_s32() 182 __be32 *buffer, unsigned int frames, in read_pcm_s32() 202 *dst = be32_to_cpu(buffer[p->pcm_positions[c]]) << 8; in read_pcm_s32() 205 buffer += s->data_block_quadlets; in read_pcm_s32() 212 __be32 *buffer, unsigned int frames) in write_pcm_silence() 219 buffer[p->pcm_positions[c]] = cpu_to_be32(0x40000000); in write_pcm_silence() 220 buffer += s->data_block_quadlets; in write_pcm_silence() 297 static void write_midi_messages(struct amdtp_stream *s, __be32 *buffer, in write_midi_messages() argument 150 write_pcm_s32(struct amdtp_stream *s, struct snd_pcm_substream *pcm, __be32 *buffer, unsigned int frames, unsigned int pcm_frames) write_pcm_s32() argument 181 read_pcm_s32(struct amdtp_stream *s, struct snd_pcm_substream *pcm, __be32 *buffer, unsigned int frames, unsigned int pcm_frames) read_pcm_s32() argument 211 write_pcm_silence(struct amdtp_stream *s, __be32 *buffer, unsigned int frames) write_pcm_silence() argument 325 read_midi_messages(struct amdtp_stream *s, __be32 *buffer, unsigned int frames, unsigned int data_block_counter) read_midi_messages() argument [all...] |
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/mwifiex/ |
H A D | 11h.c | 22 /* This function appends 11h info to a buffer while joining an 26 mwifiex_11h_process_infra_join(struct mwifiex_private *priv, u8 **buffer, in mwifiex_11h_process_infra_join() argument 36 if (!buffer || !(*buffer)) in mwifiex_11h_process_infra_join() 42 cap = (struct mwifiex_ie_types_pwr_capability *)*buffer; in mwifiex_11h_process_infra_join() 47 *buffer += sizeof(*cap); in mwifiex_11h_process_infra_join() 49 constraint = (struct mwifiex_ie_types_local_pwr_constraint *)*buffer; in mwifiex_11h_process_infra_join() 54 *buffer += sizeof(*constraint); in mwifiex_11h_process_infra_join() 56 ie_header = (struct mwifiex_ie_types_header *)*buffer; in mwifiex_11h_process_infra_join() 59 *buffer in mwifiex_11h_process_infra_join() 88 mwifiex_11h_process_join(struct mwifiex_private *priv, u8 **buffer, struct mwifiex_bssdescriptor *bss_desc) mwifiex_11h_process_join() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/ |
H A D | drm_fbdev_generic.c | 52 drm_client_framebuffer_delete(fb_helper->buffer); in drm_fbdev_generic_fb_destroy() 69 * This function uses the client API to create a framebuffer backed by a dumb buffer. 76 struct drm_client_buffer *buffer; in drm_fbdev_generic_helper_fb_probe() local 88 buffer = drm_client_framebuffer_create(client, sizes->surface_width, in drm_fbdev_generic_helper_fb_probe() 90 if (IS_ERR(buffer)) in drm_fbdev_generic_helper_fb_probe() 91 return PTR_ERR(buffer); in drm_fbdev_generic_helper_fb_probe() 93 fb_helper->buffer = buffer; in drm_fbdev_generic_helper_fb_probe() 94 fb_helper->fb = buffer->fb; in drm_fbdev_generic_helper_fb_probe() 96 screen_size = buffer in drm_fbdev_generic_helper_fb_probe() 183 struct drm_client_buffer *buffer = fb_helper->buffer; drm_fbdev_generic_damage_blit() local [all...] |
/kernel/linux/linux-6.6/sound/firewire/ |
H A D | amdtp-am824.c | 149 __be32 *buffer, unsigned int frames, in write_pcm_s32() 169 buffer[p->pcm_positions[c]] = in write_pcm_s32() 173 buffer += s->data_block_quadlets; in write_pcm_s32() 180 __be32 *buffer, unsigned int frames, in read_pcm_s32() 200 *dst = be32_to_cpu(buffer[p->pcm_positions[c]]) << 8; in read_pcm_s32() 203 buffer += s->data_block_quadlets; in read_pcm_s32() 210 __be32 *buffer, unsigned int frames) in write_pcm_silence() 217 buffer[p->pcm_positions[c]] = cpu_to_be32(0x40000000); in write_pcm_silence() 218 buffer += s->data_block_quadlets; in write_pcm_silence() 295 static void write_midi_messages(struct amdtp_stream *s, __be32 *buffer, in write_midi_messages() argument 148 write_pcm_s32(struct amdtp_stream *s, struct snd_pcm_substream *pcm, __be32 *buffer, unsigned int frames, unsigned int pcm_frames) write_pcm_s32() argument 179 read_pcm_s32(struct amdtp_stream *s, struct snd_pcm_substream *pcm, __be32 *buffer, unsigned int frames, unsigned int pcm_frames) read_pcm_s32() argument 209 write_pcm_silence(struct amdtp_stream *s, __be32 *buffer, unsigned int frames) write_pcm_silence() argument 323 read_midi_messages(struct amdtp_stream *s, __be32 *buffer, unsigned int frames, unsigned int data_block_counter) read_midi_messages() argument [all...] |