Home
last modified time | relevance | path

Searched refs:size (Results 26601 - 26625 of 48400) sorted by relevance

1...<<1061106210631064106510661067106810691070>>...1936

/kernel/linux/linux-6.6/tools/include/uapi/drm/
H A Ddrm.h224 unsigned long size; /**< Requested physical size (bytes) */ member
336 int count; /**< Number of buffers of this size */
337 int size; /**< Size in bytes */ member
376 int total; /**< Buffer size */
408 int request_size; /**< Desired size for buffers */
545 unsigned long size; /**< In bytes -- will round to page boundary */ member
586 unsigned long size; /**< In bytes -- will round to page boundary */ member
624 /** Returned size of the object */
625 __u64 size; member
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dsvghelper.c70 static double round_text_size(double size) in round_text_size() argument
75 if (size >= 10.0) in round_text_size()
76 return size; in round_text_size()
78 if (size >= target) in round_text_size()
82 return size; in round_text_size()
264 fprintf(svgfile, "<text x=\"%.8f\" y=\"%.8f\" font-size=\"%.8fpt\">%i</text>\n", in svg_running()
318 fprintf(svgfile, "<text transform=\"rotate(90)\" font-size=\"%.8fpt\"> %s</text>\n", in svg_waiting()
376 fprintf(svgfile, "<text transform=\"translate(%.8f,%.8f)\" font-size=\"1.25pt\">%s</text>\n", in svg_cpu_box()
410 fprintf(svgfile, "<text transform=\"rotate(90)\" font-size=\"%.8fpt\">%s</text>\n", in svg_process()
443 fprintf(svgfile, "<text x=\"%.8f\" y=\"%.8f\" font-size in svg_cstate()
[all...]
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/drm/
H A Ddrm.h121 unsigned long size; member
187 int size; member
307 unsigned long size; member
329 unsigned long size; member
355 __u64 size; member
/kernel/linux/linux-6.6/sound/pci/lola/
H A Dlola_pcm.c237 /* period size = multiple of chip->granularity (8, 16 or 32 frames)*/ in lola_pcm_open()
306 int ofs, int size) in setup_bdle()
310 while (size > 0) { in setup_bdle()
321 /* program the size field of the BDL entry */ in setup_bdle()
322 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size); in setup_bdle()
327 size -= chunk; in setup_bdle()
328 bdl[3] = size ? 0 : cpu_to_le32(0x01); in setup_bdle()
304 setup_bdle(struct snd_pcm_substream *substream, struct lola_stream *str, __le32 **bdlp, int ofs, int size) setup_bdle() argument
/kernel/linux/linux-6.6/tools/testing/selftests/drivers/net/mlxsw/
H A Dsch_red_core.sh12 # and maximum size are 1 byte apart, so there is a very clear border under which
211 local size=$(devlink_pool_size_thtype 0 | cut -d' ' -f 1)
213 devlink_port_pool_th_set $swp3 8 $size
360 # This sends traffic in an attempt to build a backlog of $size. Returns 0 on
362 # backlog size to stdout.
366 local size=$1; shift
377 local diff=$((size - cur))
380 if ((cur >= size)); then
/kernel/liteos_a/kernel/extended/cpup/
H A Dlos_cpup.c164 UINT32 size; in OsCpupInit() local
169 size = cpupMaxNum * sizeof(OsIrqCpupCB); in OsCpupInit()
170 g_irqCpup = (OsIrqCpupCB *)LOS_MemAlloc(m_aucSysMem0, size); in OsCpupInit()
176 (VOID)memset_s(g_irqCpup, size, 0, size); in OsCpupInit()
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/drm/
H A Ddrm.h131 unsigned long size; member
191 int size; member
309 unsigned long size; member
330 unsigned long size; member
350 __u64 size; member
/kernel/linux/linux-6.6/sound/hda/
H A Dhdac_stream.c445 int ofs, int size, int with_ioc) in setup_bdle()
449 while (size > 0) { in setup_bdle()
460 /* program the size field of the BDL entry */ in setup_bdle()
461 chunk = snd_sgbuf_get_chunk_size(dmab, ofs, size); in setup_bdle()
473 size -= chunk; in setup_bdle()
474 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01); in setup_bdle()
900 * @byte_size: data chunk byte size
903 * Allocate the buffer for the given size and set up the given stream for
442 setup_bdle(struct hdac_bus *bus, struct snd_dma_buffer *dmab, struct hdac_stream *azx_dev, __le32 **bdlp, int ofs, int size, int with_ioc) setup_bdle() argument
/kernel/liteos_m/kernel/src/
H A Dlos_swtmr.c385 UINT32 size; in OsSwtmrInit() local
395 size = sizeof(SWTMR_CTRL_S) * LOSCFG_BASE_CORE_SWTMR_LIMIT; in OsSwtmrInit()
396 SWTMR_CTRL_S *swtmr = (SWTMR_CTRL_S *)LOS_MemAlloc(m_aucSysMem0, size); in OsSwtmrInit()
401 (VOID)memset_s((VOID *)swtmr, size, 0, size); in OsSwtmrInit()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dfse_compress.c80 U16* cumul = (U16*)workSpace; /* size = maxSV1 */ in FSE_buildCTable_wksp()
81 FSE_FUNCTION_TYPE* const tableSymbol = (FSE_FUNCTION_TYPE*)(cumul + (maxSV1+1)); /* size = tableSize */ in FSE_buildCTable_wksp()
119 BYTE* const spread = tableSymbol + tableSize; /* size = tableSize + 8 (may write beyond tableSize) */ in FSE_buildCTable_wksp()
347 size_t size; in FSE_createCTable() local
349 size = FSE_CTABLE_SIZE_U32 (tableLog, maxSymbolValue) * sizeof(U32); in FSE_createCTable()
350 return (FSE_CTable*)ZSTD_malloc(size); in FSE_createCTable()
479 if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported size */ in FSE_normalizeCount()
480 if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); /* Unsupported size */ in FSE_normalizeCount()
549 if (nbBits < 1) return ERROR(GENERIC); /* min size */ in FSE_buildCTable_raw()
665 size_t FSE_compressBound(size_t size) { retur argument
[all...]
/kernel/linux/linux-6.6/net/core/
H A Ddev_ioctl.c35 * size eventually, and there is nothing I can do about it.
42 size_t size; in dev_ifconf() local
54 size = sizeof(struct compat_ifreq); in dev_ifconf()
63 size = sizeof(struct ifreq); in dev_ifconf()
70 done = inet_gifconf(dev, NULL, 0, size); in dev_ifconf()
73 len - total, size); in dev_ifconf()
/kernel/linux/linux-6.6/sound/soc/sof/amd/
H A Dacp.c539 sdev->dsp_box.size = BOX_SIZE_512; in amd_sof_acp_probe()
541 sdev->host_box.offset = sdev->dsp_box.offset + sdev->dsp_box.size; in amd_sof_acp_probe()
542 sdev->host_box.size = BOX_SIZE_512; in amd_sof_acp_probe()
544 sdev->debug_box.offset = sdev->host_box.offset + sdev->host_box.size; in amd_sof_acp_probe()
545 sdev->debug_box.size = BOX_SIZE_1024; in amd_sof_acp_probe()
/kernel/linux/linux-6.6/sound/soc/sof/
H A Dipc4.c215 dev_dbg(dev, "%s: %#x|%#x: %s|%s [data size: %zu]\n", in sof_ipc4_log_header()
223 dev_dbg(dev, "%s: %#x|%#x: %s [data size: %zu]\n", in sof_ipc4_log_header()
243 dev_dbg(dev, "%s: %#x|%#x [data size: %zu]\n", text, in sof_ipc4_log_header()
251 void *ipc_data, size_t size) in sof_ipc4_dump_payload()
254 16, 4, ipc_data, size, false); in sof_ipc4_dump_payload()
489 /* Verify the firmware reported total payload size */ in sof_ipc4_set_get_data()
512 /* Adjust the received data size if needed */ in sof_ipc4_set_get_data()
564 sdev->fw_info_box.size = sizeof(struct sof_ipc4_fw_registers); in ipc4_fw_ready()
566 sdev->dsp_box.size = inbox_size; in ipc4_fw_ready()
568 sdev->host_box.size in ipc4_fw_ready()
250 sof_ipc4_dump_payload(struct snd_sof_dev *sdev, void *ipc_data, size_t size) sof_ipc4_dump_payload() argument
[all...]
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/drm/
H A Ddrm.h131 unsigned long size; member
191 int size; member
309 unsigned long size; member
330 unsigned long size; member
350 __u64 size; member
/test/xts/acts/multimedia/av_codec/vcodec/encoder/src/
H A Dapi_test.cpp429 attr.size = -1; in HWTEST_F()
445 attr.size = 0; in HWTEST_F()
462 attr.size = 0; in HWTEST_F()
636 signal_->inCond_.wait(lock, [] { return signal_->inIdxQueue_.size() > 1; }); in HWTEST_F()
640 attr.size = 0; in HWTEST_F()
/test/xts/hats/hdf/light/hdiService/
H A Dhdf_light_hdiService_test.cpp94 printf("get light list num[%zu]\n\r", info.size()); in HWTEST_F()
115 printf("get light list num[%zu]\n\r", info.size()); in HWTEST_F()
147 printf("get light list num[%zu]\n\r", info.size()); in HWTEST_F()
176 printf("get light list num[%zu]\n\r", info.size()); in HWTEST_F()
210 printf("get light list num[%zu]\n\r", info.size()); in HWTEST_F()
/third_party/ffmpeg/libavcodec/
H A Ddpx.c157 int buf_size = avpkt->size; in decode_frame()
173 if (avpkt->size <= 1634) { in decode_frame()
193 if (avpkt->size <= offset) { in decode_frame()
485 if (need_align*avctx->height + (int64_t)offset > avpkt->size) { in decode_frame()
487 if (stride*avctx->height + (int64_t)offset > avpkt->size) { in decode_frame()
H A Dexrenc.c159 static void reorder_pixels(uint8_t *dst, const uint8_t *src, ptrdiff_t size) in reorder_pixels() argument
161 const ptrdiff_t half_size = (size + 1) / 2; in reorder_pixels()
171 static void predictor(uint8_t *src, ptrdiff_t size) in predictor() argument
175 for (ptrdiff_t i = 1; i < size; i++) { in predictor()
366 bytestream2_init_writer(pb, pkt->data, pkt->size); in encode_frame()
H A Dimm4.c365 if (avpkt->size <= 32) in decode_frame()
369 FFALIGN(avpkt->size, 4)); in decode_frame()
375 (avpkt->size + 3) >> 2); in decode_frame()
377 if ((ret = init_get_bits8(gb, s->bitstream, FFALIGN(avpkt->size, 4))) < 0) in decode_frame()
440 av_log(avctx, AV_LOG_ERROR, "Frame size change is unsupported.\n"); in decode_frame()
474 return avpkt->size; in decode_frame()
/third_party/elfutils/libdwfl/
H A Drelocate.c196 sym->st_value = 0; /* Value is size, not helpful. */ in relocate_getsym()
385 size_t size; in relocate() local
393 size = sizeof (GElf_##Name); \ in relocate()
401 if (offset > tdata->d_size || tdata->d_size - offset < size) in relocate()
411 .d_size = size, in relocate()
418 .d_size = size, in relocate()
/third_party/eudev/src/udev/
H A Dudev-event.c67 const char *src, char *dest, size_t size, in udev_event_apply_format()
119 l = size; in udev_event_apply_format()
635 ssize_t size; in spawn_wait() local
637 size = read(event->fd_signal, &fdsi, sizeof(struct signalfd_siginfo)); in spawn_wait()
638 if (size != sizeof(struct signalfd_siginfo)) in spawn_wait()
66 udev_event_apply_format(struct udev_event *event, const char *src, char *dest, size_t size, bool replace_whitespace) udev_event_apply_format() argument
/third_party/ffmpeg/libavfilter/
H A Dvaf_spectrumsynth.c62 int size; member
178 s->size = s->orientation == VERTICAL ? height / s->channels : width / s->channels; in config_output()
181 s->win_size = s->size * 2; in config_output()
182 s->nb_freq = s->size; in config_output()
187 "The window size might be too high.\n"); in config_output()
328 const int h = s->size; in synth_window()
H A Dvf_colorchannelmixer.c312 int i, j, size, *buffer = s->buffer; in config_output() local
316 size = 1 << depth; in config_output()
318 s->buffer = buffer = av_malloc(16 * size * sizeof(*s->buffer)); in config_output()
323 for (j = 0; j < 4; j++, buffer += size) in config_output()
327 for (i = 0; i < size; i++) { in config_output()
H A Dvf_selectivecolor.c190 size_t size; in parse_psfile() local
193 ret = av_file_map(fname, &buf, &size, 0, NULL); in parse_psfile()
198 if (size < 2) { \ in parse_psfile()
204 size -= 2; \ in parse_psfile()
234 av_file_unmap(buf, size); in parse_psfile()
/third_party/gn/src/gn/
H A Dbuilder.cc138 result.reserve(records_.size()); in GetAllRecords()
148 result.reserve(records_.size()); in GetAllResolvedItems()
164 result.reserve(records_.size()); in GetAllResolvedTargets()
626 for (size_t i = 0; i < cycle.size(); i++) { in CheckForCircularDependencies()
629 if (i != cycle.size() - 1) in CheckForCircularDependencies()

Completed in 50 milliseconds

1...<<1061106210631064106510661067106810691070>>...1936