Home
last modified time | relevance | path

Searched refs:size (Results 24001 - 24025 of 42648) sorted by relevance

1...<<961962963964965966967968969970>>...1706

/third_party/mesa3d/include/GL/
H A Dglcorearb.h268 typedef void (APIENTRYP PFNGLPOINTSIZEPROC) (GLfloat size);
317 GLAPI void APIENTRY glPointSize (GLfloat size);
659 typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
660 typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
661 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
679 GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
680 GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
681 GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
790 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
791 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenu
[all...]
/third_party/skia/third_party/externals/swiftshader/include/GL/
H A Dglcorearb.h267 typedef void (APIENTRYP PFNGLPOINTSIZEPROC) (GLfloat size);
316 GLAPI void APIENTRY glPointSize (GLfloat size);
659 typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
660 typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
661 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
679 GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
680 GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
681 GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
790 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
791 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenu
[all...]
/third_party/skia/third_party/externals/opengl-registry/api/GL/
H A Dglcorearb.h267 typedef void (APIENTRYP PFNGLPOINTSIZEPROC) (GLfloat size);
316 GLAPI void APIENTRY glPointSize (GLfloat size);
659 typedef void (APIENTRYP PFNGLBUFFERDATAPROC) (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
660 typedef void (APIENTRYP PFNGLBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
661 typedef void (APIENTRYP PFNGLGETBUFFERSUBDATAPROC) (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
679 GLAPI void APIENTRY glBufferData (GLenum target, GLsizeiptr size, const void *data, GLenum usage);
680 GLAPI void APIENTRY glBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, const void *data);
681 GLAPI void APIENTRY glGetBufferSubData (GLenum target, GLintptr offset, GLsizeiptr size, void *data);
790 typedef void (APIENTRYP PFNGLGETACTIVEATTRIBPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name);
791 typedef void (APIENTRYP PFNGLGETACTIVEUNIFORMPROC) (GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenu
[all...]
/kernel/linux/linux-6.6/fs/ext4/
H A Dinode.c1263 * We need to pick up the new inode size which generic_commit_write gave us
1357 unsigned start, size; in ext4_journalled_zero_new_buffers() local
1360 size = min(to, block_end) - start; in ext4_journalled_zero_new_buffers()
1362 folio_zero_range(folio, start, size); in ext4_journalled_zero_new_buffers()
1854 loff_t size; in mpage_submit_folio() local
1872 size = i_size_read(mpd->inode); in mpage_submit_folio()
1874 if (folio_pos(folio) + len > size && in mpage_submit_folio()
1876 len = size & ~PAGE_MASK; in mpage_submit_folio()
1889 * The rest of mballoc seems to handle chunks up to full group size.
2042 io_end_vec->size in mpage_process_folio()
2337 loff_t size = i_size_read(inode); mpage_journal_page_buffers() local
3844 loff_t size = i_size_read(inode); ext4_update_disksize_before_punch() local
4694 loff_t size; __ext4_iget() local
6071 loff_t size; ext4_page_mkwrite() local
[all...]
/kernel/linux/linux-6.6/io_uring/
H A Dio_uring.c2674 unsigned long uaddr, size_t size) in __io_uaddr_map()
2683 if (uaddr & (PAGE_SIZE - 1) || !size) in __io_uaddr_map()
2686 nr_pages = (size + PAGE_SIZE - 1) >> PAGE_SHIFT; in __io_uaddr_map()
2735 size_t size) in io_rings_map()
2738 size); in io_rings_map()
2742 size_t size) in io_sqes_map()
2745 size); in io_sqes_map()
2763 void *io_mem_alloc(size_t size) in io_mem_alloc() argument
2768 ret = (void *) __get_free_pages(gfp, get_order(size)); in io_mem_alloc()
3569 * EXT_ARG is set - ensure we agree on the size o in io_get_ext_arg()
2673 __io_uaddr_map(struct page ***pages, unsigned short *npages, unsigned long uaddr, size_t size) __io_uaddr_map() argument
2734 io_rings_map(struct io_ring_ctx *ctx, unsigned long uaddr, size_t size) io_rings_map() argument
2741 io_sqes_map(struct io_ring_ctx *ctx, unsigned long uaddr, size_t size) io_sqes_map() argument
3742 size_t size, sq_array_offset; io_allocate_scq_urings() local
4082 size_t size; io_probe() local
4139 size_t size; io_register_restrictions() local
[all...]
/third_party/ffmpeg/fftools/
H A Dffprobe.c461 int priv_size; ///< private size for the writer context
904 const uint8_t *data, int size) in writer_print_data()
911 while (size) { in writer_print_data()
913 l = FFMIN(size, 16); in writer_print_data()
925 size -= l; in writer_print_data()
932 const uint8_t *data, int size) in writer_print_data_hash()
939 av_hash_update(hash, data, size); in writer_print_data_hash()
947 uint8_t *data, int size, const char *format, in writer_print_integers()
955 while (size) { in writer_print_integers()
957 l = FFMIN(size, column in writer_print_integers()
903 writer_print_data(WriterContext *wctx, const char *name, const uint8_t *data, int size) writer_print_data() argument
931 writer_print_data_hash(WriterContext *wctx, const char *name, const uint8_t *data, int size) writer_print_data_hash() argument
946 writer_print_integers(WriterContext *wctx, const char *name, uint8_t *data, int size, const char *format, int columns, int bytes, int offset_add) writer_print_integers() argument
2502 size_t size; show_packet() local
3238 int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1; show_format() local
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dmkntfs.c157 /* Page size on ia32. Can change to 8192 on Alpha. */
225 long long num_sectors; /* size of device in sectors */
226 long cluster_size; /* -c, format with this cluster-size */
256 " -c, --cluster-size BYTES Specify the cluster size for the volume\n" in mkntfs_usage()
257 " -s, --sector-size BYTES Specify the sector size for the device\n" in mkntfs_usage()
307 static uint64_t crc64(uint64_t crc, const byte * data, size_t size) in crc64() argument
331 while (size) { in crc64()
333 size in crc64()
1000 make_room_for_attribute(MFT_RECORD *m, char *pos, const u32 size) make_room_for_attribute() argument
2577 make_room_for_index_entry_in_index_block(INDEX_BLOCK *idx, INDEX_ENTRY *pos, u32 size) make_room_for_index_entry_in_index_block() argument
4339 int size, e; create_backup_boot_sector() local
[all...]
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_cmd_buffer.c602 unsigned old_sz = array->size; in dzn_cmd_buffer_dynbitset_reserve()
609 memset(ptr, 0, array->size - old_sz); in dzn_cmd_buffer_dynbitset_reserve()
773 uint32_t size = dzn_query_pool_get_result_size(qpool, query_count); in dzn_cmd_buffer_collect_queries() local
784 size); in dzn_cmd_buffer_collect_queries()
1054 uint32_t size, in dzn_cmd_buffer_alloc_internal_buf()
1063 /* Align size on 64k (the default alignment) */ in dzn_cmd_buffer_alloc_internal_buf()
1064 size = ALIGN_POT(size, 64 * 1024); in dzn_cmd_buffer_alloc_internal_buf()
1070 .Width = size, in dzn_cmd_buffer_alloc_internal_buf()
2967 region->size); in dzn_CmdCopyBuffer2()
1053 dzn_cmd_buffer_alloc_internal_buf(struct dzn_cmd_buffer *cmdbuf, uint32_t size, D3D12_HEAP_TYPE heap_type, D3D12_RESOURCE_STATES init_state, ID3D12Resource **out) dzn_cmd_buffer_alloc_internal_buf() argument
3293 dzn_CmdFillBuffer(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize size, uint32_t data) dzn_CmdFillBuffer() argument
3327 dzn_CmdUpdateBuffer(VkCommandBuffer commandBuffer, VkBuffer dstBuffer, VkDeviceSize dstOffset, VkDeviceSize size, const void *data) dzn_CmdUpdateBuffer() argument
3824 dzn_CmdPushConstants(VkCommandBuffer commandBuffer, VkPipelineLayout layout, VkShaderStageFlags stageFlags, uint32_t offset, uint32_t size, const void *pValues) dzn_CmdPushConstants() argument
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/node/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/node/deps/openssl/config/archs/linux-x86_64/asm/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/asm/crypto/aes/
H A Daesni-x86_64.s28 .size aesni_encrypt,.-aesni_encrypt
55 .size aesni_decrypt, .-aesni_decrypt
86 .size _aesni_encrypt2,.-_aesni_encrypt2
117 .size _aesni_decrypt2,.-_aesni_decrypt2
153 .size _aesni_encrypt3,.-_aesni_encrypt3
189 .size _aesni_decrypt3,.-_aesni_decrypt3
231 .size _aesni_encrypt4,.-_aesni_encrypt4
273 .size _aesni_decrypt4,.-_aesni_decrypt4
329 .size _aesni_encrypt6,.-_aesni_encrypt6
385 .size _aesni_decrypt
[all...]
/third_party/python/Objects/
H A Dlongobject.c25 /* Is this PyLong of size 1, 0 or -1? */
28 /* convert a PyLong of size 1, 0 or -1 to a C integer */
138 /* Allocate a new int object with size digits.
145 _PyLong_New(Py_ssize_t size) in _PyLong_New() argument
148 if (size > (Py_ssize_t)MAX_LONG_DIGITS) { in _PyLong_New()
155 Py_ssize_t ndigits = size ? size : 1; in _PyLong_New()
157 sizeof(digit)*size. Previous incarnations of this code used in _PyLong_New()
167 _PyObject_InitVar((PyVarObject*)result, &PyLong_Type, size); in _PyLong_New()
1617 /* Divide long pin, w/ size digit
1639 inplace_divrem1(digit *pout, digit *pin, Py_ssize_t size, digit n) inplace_divrem1() argument
1663 const Py_ssize_t size = Py_ABS(Py_SIZE(a)); divrem1() local
1678 inplace_rem1(digit *pin, Py_ssize_t size, digit n) inplace_rem1() argument
1695 const Py_ssize_t size = Py_ABS(Py_SIZE(a)); rem1() local
1716 Py_ssize_t size, strlen, size_a, i, j; long_to_decimal_string_internal() local
3463 kmul_split(PyLongObject *n, Py_ssize_t size, PyLongObject **high, PyLongObject **low) kmul_split() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/
H A Devergreen_cs.c452 unsigned long tmp, nby, bsize, size, min = 0; in evergreen_cs_track_validate_cb() local
461 size = nby * surf.nbx * surf.bpe * surf.nsamples; in evergreen_cs_track_validate_cb()
462 if ((tmp + size * mslice) <= bsize) { in evergreen_cs_track_validate_cb()
479 dev_warn(p->dev, "%s:%d cb[%d] bo too small (layer size %d, " in evergreen_cs_track_validate_cb()
480 "offset %d, max layer %d, bo size %ld, slice %d)\n", in evergreen_cs_track_validate_cb()
500 unsigned long size; in evergreen_cs_track_validate_htile() local
548 /* size must be aligned on npipes * 2K boundary */ in evergreen_cs_track_validate_htile()
549 size = roundup(nbx * nby * 4, track->npipes * (2 << 10)); in evergreen_cs_track_validate_htile()
550 size += track->htile_offset; in evergreen_cs_track_validate_htile()
552 if (size > radeon_bo_siz in evergreen_cs_track_validate_htile()
2033 u64 size = pkt->opcode == PACKET3_DRAW_INDIRECT ? 16 : 20; evergreen_packet3_check() local
2114 u32 command, size, info; evergreen_packet3_check() local
2350 u32 size, offset, mip_address, tex_dim; evergreen_packet3_check() local
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dintel-pt.c196 ". ... Intel Processor Trace data: size %zu bytes\n", in intel_pt_dump()
249 intel_pt_dump(pt, sample->aux_sample.data, sample->aux_sample.size); in intel_pt_dump_sample()
276 start = intel_pt_find_overlap(a->data, a->size, b->data, b->size, in intel_pt_do_fix_overlap()
280 b->use_size = b->data + b->size - start; in intel_pt_do_fix_overlap()
311 b->len = buffer->size; in intel_pt_get_buffer()
470 off_t size; in intel_pt_cache_size() local
472 size = dso__data_size(dso, machine); in intel_pt_cache_size()
473 size /= intel_pt_cache_divisor(); in intel_pt_cache_size()
474 if (size < 100 in intel_pt_cache_size()
[all...]
/kernel/linux/linux-5.10/net/batman-adv/
H A Dtranslation-table.c100 * @size: the size of the hash table
105 static inline u32 batadv_choose_tt(const void *data, u32 size) in batadv_choose_tt() argument
114 return hash % size; in batadv_choose_tt()
140 index = batadv_choose_tt(&to_search, hash->size); in batadv_tt_hash_find()
315 * batadv_tt_local_size_mod() - change the size by v of the local table
319 * @v: the amount to sum to the local table size
336 * batadv_tt_local_size_inc() - increase by one the local table size for the
348 * batadv_tt_local_size_dec() - decrease by one the local table size for the
360 * batadv_tt_global_size_mod() - change the size b
3152 int i, size; batadv_send_tt_request() local
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/
H A Dsh_css_params.c1087 (size_t)data->size); in ia_css_params_store_ia_css_host_data()
1556 me->data_ptr = kvmalloc(isp_stats->size, GFP_KERNEL); in ia_css_isp_3a_statistics_map_allocate()
1564 me->size = isp_stats->size; in ia_css_isp_3a_statistics_map_allocate()
1597 hmm_load(isp_stats->data_ptr, map->data_ptr, isp_stats->size); in ia_css_get_3a_statistics()
2192 /* don't reallocate if single ref to buffer and same size */ in realloc_isp_css_mm_buf()
2267 me->size = me->dmem_size + me->vmem_size * 2 + me->hmem_size; in ia_css_isp_3a_statistics_allocate()
2268 me->data_ptr = hmm_alloc(me->size, HMM_BO_PRIVATE, 0, NULL, 0); in ia_css_isp_3a_statistics_allocate()
2309 if (metadata_info->size == 0) in ia_css_metadata_allocate()
2318 md->address = hmm_alloc(metadata_info->size, HMM_BO_PRIVAT in ia_css_metadata_allocate()
3124 size_t size = sizeof(params->uds); sh_css_update_isp_params_to_ddr() local
3134 sh_css_update_isp_mem_params_to_ddr( const struct ia_css_binary *binary, ia_css_ptr ddr_mem_ptr, size_t size, enum ia_css_isp_memories mem) sh_css_update_isp_mem_params_to_ddr() argument
3588 unsigned int size = sh_css_params_write_to_ddr_internal() local
3825 size_t size = isp_data->size; sh_css_params_write_to_ddr_internal() local
[all...]
/kernel/linux/linux-6.6/fs/ocfs2/
H A Ddir.c1186 int size, this_hole, largest_hole = 0; in ocfs2_find_max_rec_len() local
1191 size = ocfs2_dir_trailer_blk_off(sb); in ocfs2_find_max_rec_len()
1192 limit = start + size; in ocfs2_find_max_rec_len()
1592 unsigned int size = sb->s_blocksize; in __ocfs2_add_entry() local
1627 size = i_size_read(dir); in __ocfs2_add_entry()
1636 BUG_ON((char *)de >= (size + data_start)); in __ocfs2_add_entry()
1652 mlog_bug_on_msg(ocfs2_skip_dir_trailer(dir, de, offset, size), in __ocfs2_add_entry()
2154 unsigned int size) in ocfs2_fill_initial_dirents()
2167 de->rec_len = cpu_to_le16(size - OCFS2_DIR_REC_LEN(1)); in ocfs2_fill_initial_dirents()
2188 unsigned int size in ocfs2_fill_new_dir_id() local
2151 ocfs2_fill_initial_dirents(struct inode *inode, struct inode *parent, char *start, unsigned int size) ocfs2_fill_initial_dirents() argument
2221 unsigned int size = osb->sb->s_blocksize; ocfs2_fill_new_dir_el() local
2247 int size = le16_to_cpu(de->rec_len); ocfs2_fill_new_dir_el() local
3504 dx_leaf_sort_swap(void *a, void *b, int size) dx_leaf_sort_swap() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/
H A Devergreen_cs.c451 unsigned long tmp, nby, bsize, size, min = 0; in evergreen_cs_track_validate_cb() local
460 size = nby * surf.nbx * surf.bpe * surf.nsamples; in evergreen_cs_track_validate_cb()
461 if ((tmp + size * mslice) <= bsize) { in evergreen_cs_track_validate_cb()
478 dev_warn(p->dev, "%s:%d cb[%d] bo too small (layer size %d, " in evergreen_cs_track_validate_cb()
479 "offset %d, max layer %d, bo size %ld, slice %d)\n", in evergreen_cs_track_validate_cb()
499 unsigned long size; in evergreen_cs_track_validate_htile() local
547 /* size must be aligned on npipes * 2K boundary */ in evergreen_cs_track_validate_htile()
548 size = roundup(nbx * nby * 4, track->npipes * (2 << 10)); in evergreen_cs_track_validate_htile()
549 size += track->htile_offset; in evergreen_cs_track_validate_htile()
551 if (size > radeon_bo_siz in evergreen_cs_track_validate_htile()
2032 u64 size = pkt->opcode == PACKET3_DRAW_INDIRECT ? 16 : 20; evergreen_packet3_check() local
2113 u32 command, size, info; evergreen_packet3_check() local
2349 u32 size, offset, mip_address, tex_dim; evergreen_packet3_check() local
[all...]
/test/xts/hats/hdf/wlan/wifi/hal/
H A Dwifi_hal_test.cpp1596 uint32_t size = MAX_CHANNEL_NUM;
1602 ret = staFeature->baseFeature.getValidFreqsWithBand(nullptr, band, freqs, size, &num);
1620 uint32_t size = MAX_CHANNEL_NUM;
1626 ret = staFeature->baseFeature.getValidFreqsWithBand(nullptr, band, freqs, size, &num);
1629 band, nullptr, size, &num);
1670 uint32_t size = MAX_CHANNEL_NUM;
1676 band, freqs, size, nullptr);
1694 uint32_t size = MAX_CHANNEL_NUM;
1701 bandNotSupport, freqs, size, &num);
1719 uint32_t size
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvp9.c129 memset(f->extradata->data, 0, f->extradata->size); in vp9_frame_alloc()
503 const uint8_t *data, int size, int *ref) in decode_frame_header()
511 if ((ret = init_get_bits8(&s->gb, data, size)) < 0) { in decode_frame_header()
551 if (get_bits1(&s->gb)) // display size in decode_frame_header()
576 if (get_bits1(&s->gb)) // display size in decode_frame_header()
610 if (get_bits1(&s->gb)) // display size in decode_frame_header()
836 "Invalid ref frame dimensions %dx%d for frame size %dx%d\n", in decode_frame_header()
871 // next 16 bits is size of the rest of the header (arith-coded) in decode_frame_header()
876 if (size2 > size - (data2 - data)) { in decode_frame_header()
877 av_log(avctx, AV_LOG_ERROR, "Invalid compressed header size\ in decode_frame_header()
502 decode_frame_header(AVCodecContext *avctx, const uint8_t *data, int size, int *ref) decode_frame_header() argument
1258 decode_tiles(AVCodecContext *avctx, const uint8_t *data, int size) decode_tiles() argument
1557 int size = pkt->size; vp9_decode_frame() local
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Devaluate.c188 * If size(signed type) > size(unsigned type)
590 /* Get the size of whatever the pointer points to */ in evaluate_ptr_add()
851 info(expr->pos, " '%s' has a non-power-of-2 size: %lu", show_typename(lbase), value); in evaluate_ptr_sub()
2207 int size; in evaluate_sizeof() local
2213 size = type->bit_size; in evaluate_sizeof()
2215 if (size < 0 && is_void_type(type)) { in evaluate_sizeof()
2218 size = bits_in_char; in evaluate_sizeof()
2224 size = bits_to_bytes(bits_in_bool) * bits_in_char; in evaluate_sizeof()
2230 size in evaluate_sizeof()
2237 struct expression *base, *size; evaluate_sizeof() local
2281 int size; evaluate_ptrsizeof() local
[all...]
/third_party/node/deps/v8/src/codegen/s390/
H A Dconstants-s390.h1949 uint32_t size = (sizeof(T) == 8) ? 6 : sizeof(T); in InstructionBits()
1951 for (T i = 0; i < size; i++) { in InstructionBits()
2069 inline int size() const { return 2; } in size() function in v8::internal::TwoByteInstruction
2074 inline int size() const { return 4; } in size() function in v8::internal::FourByteInstruction
2079 inline int size() const { return 6; } in size() function in v8::internal::SixByteInstruction
2128 inline int size() const { return 2; } in size() function in v8::internal::RRInstruction
2138 inline int size() const { return 4; } in size() function in v8::internal::RREInstruction
2149 inline int size() const { return 4; } in size() function in v8::internal::RRFInstruction
2158 inline int size() const { return 4; } in size() function in v8::internal::RRDInstruction
2170 inline int size() cons in D2Value() function in v8::internal::RSInstruction
2181 inline int size() const { return 4; } size() function in v8::internal::RSIInstruction
2195 inline int size() const { return 6; } size() function in v8::internal::RSYInstruction
2207 inline int size() const { return 4; } size() function in v8::internal::RXInstruction
2221 inline int size() const { return 6; } size() function in v8::internal::RXYInstruction
2232 inline int size() const { return 6; } size() function in v8::internal::RILInstruction
2245 inline int size() const { return 4; } size() function in v8::internal::SIInstruction
2258 inline int size() const { return 6; } size() function in v8::internal::SIYInstruction
2267 inline int size() const { return 6; } size() function in v8::internal::SILInstruction
2278 inline int size() const { return 6; } size() function in v8::internal::SSInstruction
2288 inline int size() const { return 6; } size() function in v8::internal::RXEInstruction
2302 inline int size() const { return 6; } size() function in v8::internal::RIEInstruction
[all...]

Completed in 108 milliseconds

1...<<961962963964965966967968969970>>...1706