Home
last modified time | relevance | path

Searched refs:buffer (Results 3001 - 3025 of 11597) sorted by relevance

1...<<121122123124125126127128129130>>...464

/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Dscx200_acb.c275 u8 *buffer; in scx200_acb_smbus_xfer() local
282 buffer = NULL; in scx200_acb_smbus_xfer()
287 buffer = rw ? &data->byte : &command; in scx200_acb_smbus_xfer()
292 buffer = &data->byte; in scx200_acb_smbus_xfer()
298 buffer = (u8 *)&cur_word; in scx200_acb_smbus_xfer()
305 buffer = &data->block[1]; in scx200_acb_smbus_xfer()
325 iface->ptr = buffer; in scx200_acb_smbus_xfer()
352 if (buffer) { in scx200_acb_smbus_xfer()
356 printk(" %02x", buffer[i]); in scx200_acb_smbus_xfer()
/kernel/linux/linux-6.6/sound/pci/oxygen/
H A Dxonar_cs43xx.c367 struct snd_info_buffer *buffer) in dump_cs4362a_registers()
371 snd_iprintf(buffer, "\nCS4362A:"); in dump_cs4362a_registers()
373 snd_iprintf(buffer, " %02x", data->cs4362a_regs[i]); in dump_cs4362a_registers()
374 snd_iprintf(buffer, "\n"); in dump_cs4362a_registers()
378 struct snd_info_buffer *buffer) in dump_d1_registers()
383 snd_iprintf(buffer, "\nCS4398: 7?"); in dump_d1_registers()
385 snd_iprintf(buffer, " %02x", data->cs4398_regs[i]); in dump_d1_registers()
386 snd_iprintf(buffer, "\n"); in dump_d1_registers()
387 dump_cs4362a_registers(data, buffer); in dump_d1_registers()
366 dump_cs4362a_registers(struct xonar_cs43xx *data, struct snd_info_buffer *buffer) dump_cs4362a_registers() argument
377 dump_d1_registers(struct oxygen *chip, struct snd_info_buffer *buffer) dump_d1_registers() argument
/third_party/ffmpeg/libavcodec/
H A Dlibjxlenc.c55 uint8_t *buffer; member
179 ctx->buffer = av_realloc(NULL, ctx->buffer_size); in libjxl_encode_init()
181 if (!ctx->buffer) { in libjxl_encode_init()
182 av_log(avctx, AV_LOG_ERROR, "Could not allocate encoding buffer\n"); in libjxl_encode_init()
257 uint8_t *next_out = ctx->buffer; in libjxl_encode_frame()
399 temp = av_realloc(ctx->buffer, new_size); in libjxl_encode_frame()
402 ctx->buffer = temp; in libjxl_encode_frame()
404 next_out = ctx->buffer + bytes_written; in libjxl_encode_frame()
416 memcpy(pkt->data, ctx->buffer, bytes_written); in libjxl_encode_frame()
438 av_freep(&ctx->buffer); in libjxl_encode_close()
[all...]
H A Dvc2enc_dwt.c59 dwtcoef *datal = data, *synth = t->buffer, *synthl = synth; in vc2_subband_dwt_97()
65 * the data to the buffer. in vc2_subband_dwt_97()
144 dwtcoef *synth = t->buffer, *synthl = synth, *datal = data; in vc2_subband_dwt_53()
150 * the data to the buffer. in vc2_subband_dwt_53()
219 dwtcoef *synth = t->buffer, *synthl = synth, *datal = data; in dwt_haar()
267 s->buffer = av_calloc((p_stride + slice_w)*(p_height + slice_h), sizeof(dwtcoef)); in ff_vc2enc_init_transforms()
268 if (!s->buffer) in ff_vc2enc_init_transforms()
272 s->buffer += s->padding; in ff_vc2enc_init_transforms()
279 if (s->buffer) { in ff_vc2enc_free_transforms()
280 av_free(s->buffer in ff_vc2enc_free_transforms()
[all...]
/third_party/curl/lib/
H A Dfile.c293 char buffer[8*1024], *uphere_save; in file_upload() local
347 data->req.upload_fromhere = buffer; in file_upload()
348 result = Curl_fillreadbuffer(data, sizeof(buffer), &readcount); in file_upload()
362 sendbuf = buffer; in file_upload()
365 sendbuf = buffer + data->state.resume_from; in file_upload()
371 sendbuf = buffer; in file_upload()
451 struct tm buffer; in file_do() local
452 const struct tm *tm = &buffer; in file_do()
471 result = Curl_gmtime(filetime, &buffer); in file_do()
549 /* Don't fill a whole buffer i in file_do()
[all...]
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
H A DTransliteratorInputMethod.java93 private StringBuffer buffer; field in TransliteratorInputMethod
106 buffer = new StringBuffer(); in TransliteratorInputMethod()
107 replaceableText = new ReplaceableString(buffer); in TransliteratorInputMethod()
414 buffer.delete(0, buffer.length()); in reset()
425 + buffer.substring(0, cc) + '}' in traceBuffer()
426 + buffer.substring(cc, index.start) + '-' in traceBuffer()
427 + buffer.substring(index.start, index.contextLimit) + '|' in traceBuffer()
428 + buffer.substring(index.contextLimit) + '\'')); in traceBuffer()
432 int len = buffer in update()
[all...]
/third_party/lzma/C/
H A DSha256.c371 #define Sha256_UpdateBlock(p) SHA256_UPDATE_BLOCKS(p)(p->state, p->buffer, 1)
387 memcpy(p->buffer + pos, data, size); in Sha256_Update()
394 memcpy(p->buffer + pos, data, num); in Sha256_Update()
406 memcpy(p->buffer, data, size); in Sha256_Update()
416 p->buffer[pos++] = 0x80; in Sha256_Final()
420 while (pos != 64) { p->buffer[pos++] = 0; } in Sha256_Final()
421 // memset(&p->buf.buffer[pos], 0, 64 - pos); in Sha256_Final()
429 p->buffer[pos] = 0; in Sha256_Final()
430 p->buffer[pos + 1] = 0; in Sha256_Final()
431 p->buffer[po in Sha256_Final()
[all...]
/third_party/node/src/
H A Ddebug_utils.cc172 char buffer[sizeof(SYMBOL_INFO) + MAX_SYM_NAME * sizeof(TCHAR)]; in WrappedSymFromAddr() local
173 const auto pSymbol = reinterpret_cast<PSYMBOL_INFO>(buffer); in WrappedSymFromAddr()
395 // We can't tell in advance how large the buffer needs to be. in GetLoadedLibraries()
398 MallocedBuffer<char> buffer(kBufferGrowStep); in GetLoadedLibraries()
401 rc = loadquery(L_GETINFO, buffer.data, buffer.size); in GetLoadedLibraries()
403 buffer = MallocedBuffer<char>(buffer.size + kBufferGrowStep); in GetLoadedLibraries()
404 } while (buffer.size < 1024 * 1024); in GetLoadedLibraries()
407 char* buf = buffer in GetLoadedLibraries()
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_draw.c151 * increment for the index buffer refcount when adding it into in prepare_indexed_draw()
152 * the threaded batch buffer. in prepare_indexed_draw()
158 info->index.resource = info->index.gl_bo->buffer; in prepare_indexed_draw()
161 /* Return if the bound element array buffer doesn't have any backing in prepare_indexed_draw()
267 info.index.resource = bufobj->buffer; in st_indirect_draw_vbo()
275 indirect.buffer = indirect_data->buffer; in st_indirect_draw_vbo()
278 /* Viewperf2020/Maya draws with a buffer that has no storage. */ in st_indirect_draw_vbo()
279 if (!indirect.buffer) in st_indirect_draw_vbo()
305 indirect_draw_count->buffer; in st_indirect_draw_vbo()
[all...]
/third_party/lwip/src/apps/http/
H A Daltcp_proxyconnect.c103 altcp_proxyconnect_format_request(char *buffer, size_t bufsize, const char *host, int port) in altcp_proxyconnect_format_request() argument
105 return snprintf(buffer, bufsize, PROXY_CONNECT_FORMAT(host, port)); in altcp_proxyconnect_format_request()
114 char *buffer, *host; in altcp_proxyconnect_send_request() local
137 buffer = (char *)mem_malloc(alloc_len); in altcp_proxyconnect_send_request()
138 if (buffer == NULL) { in altcp_proxyconnect_send_request()
142 len2 = altcp_proxyconnect_format_request(buffer, alloc_len, host, state->outer_port); in altcp_proxyconnect_send_request()
144 err_t err = altcp_write(conn->inner_conn, buffer, (u16_t)len2, TCP_WRITE_FLAG_COPY); in altcp_proxyconnect_send_request()
147 mem_free(buffer); in altcp_proxyconnect_send_request()
151 mem_free(buffer); in altcp_proxyconnect_send_request()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiDescriptorSetTests.cpp286 const Unique<VkBuffer> buffer (createDataBuffer(context, offset, addressableSize, 0x00, dataSize, 0x5A, &bufferMem)); in descriptorSetLayoutLifetimeComputeTest()
289 const Unique<VkDescriptorSet> descriptorSet (createDescriptorSet(context, *descriptorPool, *descriptorSetLayout, *buffer, offset, result.getBuffer())); in descriptorSetLayoutLifetimeComputeTest()
369 de::MovePtr<BufferWithMemory> buffer; in descriptorSetLayoutBindingOrderingTest() local
370 buffer = de::MovePtr<BufferWithMemory>(new BufferWithMemory(vk, in descriptorSetLayoutBindingOrderingTest()
375 deUint32 *bufferPtr = (deUint32 *)buffer->getAllocation().getHostPtr(); in descriptorSetLayoutBindingOrderingTest()
388 buffer->get(), // VkBuffer buffer in descriptorSetLayoutBindingOrderingTest()
393 buffer->get(), // VkBuffer buffer in descriptorSetLayoutBindingOrderingTest()
398 buffer in descriptorSetLayoutBindingOrderingTest()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/robustness/
H A DvktRobustnessUtil.cpp155 bool isValueWithinBuffer (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes) in isValueWithinBuffer() argument
157 const deUint8* byteBuffer = reinterpret_cast<const deUint8*>(buffer); in isValueWithinBuffer()
171 bool isValueWithinBufferOrZero (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes) in isValueWithinBufferOrZero() argument
173 return isValueWithinBuffer(buffer, bufferSize, valuePtr, valueSizeInBytes) || isValueZero(valuePtr, valueSizeInBytes); in isValueWithinBufferOrZero()
221 void populateBufferWithTestValues (void* buffer, VkDeviceSize size, VkFormat format) in populateBufferWithTestValues() argument
230 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = valueIndex; in populateBufferWithTestValues()
234 reinterpret_cast<deInt32*>(buffer)[scalarNdx] = -deInt32(valueIndex); in populateBufferWithTestValues()
238 reinterpret_cast<float*>(buffer)[scalarNdx] = float(valueIndex); in populateBufferWithTestValues()
247 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = (a << 30) | (b << 20) | (g << 10) | r; in populateBufferWithTestValues()
309 // Create command buffer in TestEnvironment()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiDescriptorSetTests.cpp286 const Unique<VkBuffer> buffer (createDataBuffer(context, offset, addressableSize, 0x00, dataSize, 0x5A, &bufferMem)); in descriptorSetLayoutLifetimeComputeTest()
289 const Unique<VkDescriptorSet> descriptorSet (createDescriptorSet(context, *descriptorPool, *descriptorSetLayout, *buffer, offset, result.getBuffer())); in descriptorSetLayoutLifetimeComputeTest()
369 de::MovePtr<BufferWithMemory> buffer; in descriptorSetLayoutBindingOrderingTest() local
370 buffer = de::MovePtr<BufferWithMemory>(new BufferWithMemory(vk, in descriptorSetLayoutBindingOrderingTest()
375 deUint32 *bufferPtr = (deUint32 *)buffer->getAllocation().getHostPtr(); in descriptorSetLayoutBindingOrderingTest()
388 buffer->get(), // VkBuffer buffer in descriptorSetLayoutBindingOrderingTest()
393 buffer->get(), // VkBuffer buffer in descriptorSetLayoutBindingOrderingTest()
398 buffer in descriptorSetLayoutBindingOrderingTest()
[all...]
/third_party/skia/src/effects/imagefilters/
H A DSkArithmeticImageFilter.cpp55 void flatten(SkWriteBuffer& buffer) const override;
109 sk_sp<SkFlattenable> SkArithmeticImageFilter::CreateProc(SkReadBuffer& buffer) { in CreateProc() argument
113 k[i] = buffer.readScalar(); in CreateProc()
115 const bool enforcePMColor = buffer.readBool(); in CreateProc()
116 if (!buffer.isValid()) { in CreateProc()
123 void SkArithmeticImageFilter::flatten(SkWriteBuffer& buffer) const { in flatten()
124 this->INHERITED::flatten(buffer); in flatten()
126 buffer.writeScalar(fK[i]); in flatten()
128 buffer.writeBool(fEnforcePMColor); in flatten()
H A DSkBlendImageFilter.cpp99 sk_sp<SkFlattenable> SkBlendImageFilter::CreateProc(SkReadBuffer& buffer) { in CreateProc() argument
103 const uint32_t mode = buffer.read32(); in CreateProc()
105 blender = buffer.readBlender(); in CreateProc()
108 buffer.validate(false); in CreateProc()
117 void SkBlendImageFilter::flatten(SkWriteBuffer& buffer) const { in flatten()
118 this->INHERITED::flatten(buffer); in flatten()
120 buffer.write32((unsigned)bm.value()); in flatten()
122 buffer.write32(kCustom_SkBlendMode); in flatten()
123 buffer.writeFlattenable(fBlender.get()); in flatten()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/common/
H A DImage.hpp73 ClientBuffer(int width, int height, sw::Format format, void* buffer, size_t plane) in ClientBuffer() argument
74 : width(width), height(height), format(format), buffer(buffer), plane(plane) in ClientBuffer()
92 void* buffer; member in egl::ClientBuffer
150 // Back buffer from client buffer
236 void loadImageData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, GLenum format, GLenum type, const void *input, void *buffer);
237 void loadStencilData(GLsizei width, GLsizei height, GLsizei depth, int inputPitch, int inputHeight, GLenum format, GLenum type, const void *input, void *buffer);
319 if(nativeBuffer) // Unlock the buffer from ANativeWindowBuffer
348 void *buffer in lockNativeBuffer() local
[all...]
/third_party/skia/third_party/externals/libjpeg-turbo/
H A Drdtarga.c35 #define ReadOK(file, buffer, len) \
36 (JFREAD(file, buffer, len) == ((size_t)(len)))
174 ptr = source->pub.buffer[0]; in METHODDEF()
193 ptr = source->pub.buffer[0]; in METHODDEF()
215 ptr = source->pub.buffer[0]; in METHODDEF()
242 ptr = source->pub.buffer[0]; in METHODDEF()
280 source->pub.buffer = (*cinfo->mem->access_virt_sarray) in METHODDEF()
309 source->pub.buffer = (*cinfo->mem->access_virt_sarray) in METHODDEF()
426 /* Create a virtual array to buffer the upside-down image. */ in start_input_tga()
434 /* source->pub.buffer wil in start_input_tga()
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DUtilsD3D12.cpp268 Buffer* buffer, in RecordCopyTextureToBufferFromTextureCopySplit()
285 ComputeBufferLocationForCopyTextureRegion(texture, buffer->GetD3D12Resource(), in RecordCopyTextureToBufferFromTextureCopySplit()
301 Buffer* buffer, in Copy2DTextureToBufferWithCopySplit()
332 commandList, copySplitPerLayerBase, buffer, bufferOffsetForNextLayer, in Copy2DTextureToBufferWithCopySplit()
345 Buffer* buffer, in Copy3DTextureToBuffer()
356 RecordCopyTextureToBufferFromTextureCopySplit(commandList, copyRegions, buffer, 0, in Copy3DTextureToBuffer()
365 Buffer* buffer, in RecordCopyTextureToBuffer()
368 Copy3DTextureToBuffer(commandList, textureCopy, bufferCopy, texture, buffer, copySize); in RecordCopyTextureToBuffer()
371 buffer, copySize); in RecordCopyTextureToBuffer()
266 RecordCopyTextureToBufferFromTextureCopySplit(ID3D12GraphicsCommandList* commandList, const TextureCopySubresource& baseCopySplit, Buffer* buffer, uint64_t baseOffset, uint64_t bufferBytesPerRow, Texture* texture, uint32_t textureMiplevel, uint32_t textureLayer, Aspect aspect) RecordCopyTextureToBufferFromTextureCopySplit() argument
297 Copy2DTextureToBufferWithCopySplit(ID3D12GraphicsCommandList* commandList, const TextureCopy& textureCopy, const BufferCopy& bufferCopy, Texture* texture, Buffer* buffer, const Extent3D& copySize) Copy2DTextureToBufferWithCopySplit() argument
341 Copy3DTextureToBuffer(ID3D12GraphicsCommandList* commandList, const TextureCopy& textureCopy, const BufferCopy& bufferCopy, Texture* texture, Buffer* buffer, const Extent3D& copySize) Copy3DTextureToBuffer() argument
361 RecordCopyTextureToBuffer(ID3D12GraphicsCommandList* commandList, const TextureCopy& textureCopy, const BufferCopy& bufferCopy, Texture* texture, Buffer* buffer, const Extent3D& copySize) RecordCopyTextureToBuffer() argument
/third_party/toybox/toys/pending/
H A Dsyslogd.c30 -K Log to kernel printk buffer (use dmesg to read it)
411 char *temp, *buffer = (toybuf +2048), *last_buf = (toybuf + 3072); //these two buffs are of 1K each in syslogd_main() local
529 int len = read(sd, buffer, 1022); in syslogd_main()
534 (buffer[len - 1] == '\n' || buffer[len - 1] == '\0')) { in syslogd_main()
539 buffer[len++] = '\n'; in syslogd_main()
540 buffer[len] = '\0'; in syslogd_main()
542 if (!memcmp(last_buf, buffer, len)) break; in syslogd_main()
544 memcpy(last_buf, buffer, len); in syslogd_main()
546 logmsg(buffer, le in syslogd_main()
[all...]
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_iptc.cpp190 dng_memory_data buffer (length + 1); in ParseString()
192 char *c = buffer.Buffer_char (); in ParseString()
306 dng_memory_data buffer (dataSize + 1); in Parse()
308 char *s = buffer.Buffer_char (); in Parse()
669 dng_memory_data buffer; in SpoolString() local
671 uint32 len = ss.Get_SystemEncoding (buffer); in SpoolString()
688 len = sss.Get_SystemEncoding (buffer); in SpoolString()
708 len = ss.Get_SystemEncoding (buffer); in SpoolString()
714 stream.Put (buffer.Buffer_char (), len); in SpoolString()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java88 * thread local direct buffer. This means that each call will overwrite the buffer's contents from
89 * the previous call, so the calling code must be careful not to continue using a buffer returned
97 ByteBuffer buffer = ref == null ? null : ref.get();
98 if (buffer == null || buffer.capacity() < bytes.length) {
99 buffer = ByteBuffer.allocateDirect(bytes.length);
100 directBuffer.set(new SoftReference<ByteBuffer>(buffer));
102 buffer.clear();
103 buffer
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/robustness/
H A DvktRobustnessUtil.cpp180 bool isValueWithinBuffer (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes) in isValueWithinBuffer() argument
182 const deUint8* byteBuffer = reinterpret_cast<const deUint8*>(buffer); in isValueWithinBuffer()
196 bool isValueWithinBufferOrZero (const void* buffer, VkDeviceSize bufferSize, const void* valuePtr, size_t valueSizeInBytes) in isValueWithinBufferOrZero() argument
198 return isValueWithinBuffer(buffer, bufferSize, valuePtr, valueSizeInBytes) || isValueZero(valuePtr, valueSizeInBytes); in isValueWithinBufferOrZero()
246 void populateBufferWithTestValues (void* buffer, VkDeviceSize size, VkFormat format) in populateBufferWithTestValues() argument
255 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = valueIndex; in populateBufferWithTestValues()
259 reinterpret_cast<deInt32*>(buffer)[scalarNdx] = -deInt32(valueIndex); in populateBufferWithTestValues()
263 reinterpret_cast<float*>(buffer)[scalarNdx] = float(valueIndex); in populateBufferWithTestValues()
272 reinterpret_cast<deUint32*>(buffer)[scalarNdx] = (a << 30) | (b << 20) | (g << 10) | r; in populateBufferWithTestValues()
334 // Create command buffer in TestEnvironment()
[all...]
/kernel/linux/linux-5.10/tools/power/x86/intel-speed-select/
H A Disst-config.c353 char buffer[128]; in set_cpu_online_offline() local
356 snprintf(buffer, sizeof(buffer), in set_cpu_online_offline()
359 fd = open(buffer, O_WRONLY); in set_cpu_online_offline()
366 err(-1, "%s open failed", buffer); in set_cpu_online_offline()
518 char buffer[256]; in set_cpu_present_cpu_mask() local
520 snprintf(buffer, sizeof(buffer), in set_cpu_present_cpu_mask()
522 dir = opendir(buffer); in set_cpu_present_cpu_mask()
1419 char buffer[12 in set_cpufreq_scaling_min_max() local
1510 char buffer[128], min_freq[16]; set_cpufreq_scaling_min_max_from_cpuinfo() local
1958 char buffer[128], sibling_list[128], *cpu_str; set_fact_enable() local
[all...]
/kernel/liteos_a/kernel/common/
H A Dconsole.c305 STATIC INT32 ConsoleReadFifo(CHAR *buffer, CONSOLE_CB *console, size_t bufLen) in ConsoleReadFifo() argument
311 ret = memcpy_s(buffer, bufLen, console->fifo + console->fifoOut, readNum); in ConsoleReadFifo()
444 CHAR *buffer, size_t bufLen) in UserFilepRead()
457 ret = fops->read(filep, buffer, bufLen); in UserFilepRead()
460 /* ICANON mode: store data to console buffer, read data and stored data into console fifo */ in UserFilepRead()
477 ret = ConsoleReadFifo(buffer, consoleCB, bufLen); in UserFilepRead()
493 ret = ConsoleReadFifo(buffer, consoleCB, bufLen); in UserFilepRead()
499 INT32 FilepRead(struct file *filep, const struct file_operations_vfs *fops, CHAR *buffer, size_t bufLen) in FilepRead() argument
507 * and write data to buffer (filep is in FilepRead()
510 ret = fops->read(filep, buffer, bufLe in FilepRead()
443 UserFilepRead(CONSOLE_CB *consoleCB, struct file *filep, const struct file_operations_vfs *fops, CHAR *buffer, size_t bufLen) UserFilepRead() argument
514 FilepWrite(struct file *filep, const struct file_operations_vfs *fops, const CHAR *buffer, size_t bufLen) FilepWrite() argument
621 DoRead(CONSOLE_CB *consoleCB, CHAR *buffer, size_t bufLen, struct file *privFilep, const struct file_operations_vfs *fileOps) DoRead() argument
642 ConsoleRead(struct file *filep, CHAR *buffer, size_t bufLen) ConsoleRead() argument
708 DoWrite(CirBufSendCB *cirBufSendCB, CHAR *buffer, size_t bufLen) DoWrite() argument
744 ConsoleWrite(struct file *filep, const CHAR *buffer, size_t bufLen) ConsoleWrite() argument
1527 WriteToTerminal(const CONSOLE_CB *consoleCB, const CHAR *buffer, size_t bufLen) WriteToTerminal() argument
[all...]
/kernel/linux/linux-6.6/kernel/trace/
H A Dtrace_osnoise.c479 struct trace_buffer *buffer; \
483 buffer = inst->tr->array_buffer.buffer; \
484 trace_array_printk_buf(buffer, _THIS_IP_, msg); \
491 * Record an osnoise_sample into the tracer buffer.
494 __trace_osnoise_sample(struct osnoise_sample *sample, struct trace_buffer *buffer) in __trace_osnoise_sample() argument
500 event = trace_buffer_lock_reserve(buffer, TRACE_OSNOISE, sizeof(*entry), in __trace_osnoise_sample()
514 if (!call_filter_check_discard(call, entry, buffer, event)) in __trace_osnoise_sample()
515 trace_buffer_unlock_commit_nostack(buffer, event); in __trace_osnoise_sample()
524 struct trace_buffer *buffer; in trace_osnoise_sample() local
573 __trace_timerlat_sample(struct timerlat_sample *sample, struct trace_buffer *buffer) __trace_timerlat_sample() argument
598 struct trace_buffer *buffer; trace_timerlat_sample() local
649 __timerlat_dump_stack(struct trace_buffer *buffer, struct trace_stack *fstack, unsigned int size) __timerlat_dump_stack() argument
675 struct trace_buffer *buffer; timerlat_dump_stack() local
[all...]

Completed in 27 milliseconds

1...<<121122123124125126127128129130>>...464