Home
last modified time | relevance | path

Searched refs:esize (Results 1 – 15 of 15) sorted by relevance

/third_party/skia/experimental/lowp-basic/
DQMath.h60 const int esize = 16; in simulate_neon_vqrdmulhq_s16() local
62 const int64_t rounding = 1 << (esize - 1); in simulate_neon_vqrdmulhq_s16()
64 int64_t result = product >> esize; in simulate_neon_vqrdmulhq_s16()
67 if (int64_t limit = (1LL << (esize - 1)) - 1; result > limit) { result = limit; } in simulate_neon_vqrdmulhq_s16()
68 if (int64_t limit = -(1LL << (esize - 1)) ; result < limit) { result = limit; } in simulate_neon_vqrdmulhq_s16()
/third_party/ffmpeg/libavcodec/
Dpictordec.c129 int bits_per_plane, bpp, etype, esize, npal, pos_after_pal; in decode_frame() local
155 esize = bytestream2_get_le16(&s->g); in decode_frame()
156 if (bytestream2_get_bytes_left(&s->g) < esize) in decode_frame()
160 esize = 0; in decode_frame()
179 pos_after_pal = bytestream2_tell(&s->g) + esize; in decode_frame()
181 if (etype == 1 && esize > 1 && bytestream2_peek_byte(&s->g) < 6) { in decode_frame()
187 npal = FFMIN(esize, 16); in decode_frame()
193 npal = FFMIN(esize, 16); in decode_frame()
199 npal = FFMIN(esize / 3, 256); in decode_frame()
Dwmadec.c623 int i, j, n, n1, last_high_band, esize; in wma_decode_block() local
628 esize = s->exponents_bsize[ch]; in wma_decode_block()
637 exponents[i << bsize >> esize] * mult1; in wma_decode_block()
646 (s->high_band_start[bsize] << bsize >> esize); in wma_decode_block()
655 v = exponents[i << bsize >> esize]; in wma_decode_block()
662 exponents += n << bsize >> esize; in wma_decode_block()
666 exponents = s->exponents[ch] + (s->coefs_start << bsize >> esize); in wma_decode_block()
683 *coefs++ = noise * exponents[i << bsize >> esize] * mult1; in wma_decode_block()
685 exponents += n << bsize >> esize; in wma_decode_block()
692 exponents[i << bsize >> esize] * mult; in wma_decode_block()
[all …]
Daacdec.c293 int bits_consumed, esize, i; in latm_decode_audio_specific_config() local
331 esize = (asclen + 7) / 8; in latm_decode_audio_specific_config()
333 if (avctx->extradata_size < esize) { in latm_decode_audio_specific_config()
335 avctx->extradata = av_malloc(esize + AV_INPUT_BUFFER_PADDING_SIZE); in latm_decode_audio_specific_config()
340 avctx->extradata_size = esize; in latm_decode_audio_specific_config()
342 for (i = 0; i < esize; i++) { in latm_decode_audio_specific_config()
345 memset(avctx->extradata+esize, 0, AV_INPUT_BUFFER_PADDING_SIZE); in latm_decode_audio_specific_config()
/third_party/elfutils/tests/
Dnext_cfi.c115 size_t esize; in main() local
117 &esize); in main()
118 if (ident == NULL || esize < EI_NIDENT) in main()
/third_party/elfutils/libdw/
Ddwarf_next_lines.c169 size_t esize; in dwarf_next_lines() local
170 char *ident = elf_getident (dbg->elf, &esize); in dwarf_next_lines()
171 if (ident == NULL || esize < EI_NIDENT) in dwarf_next_lines()
/third_party/python/Modules/cjkcodecs/
Dmultibytecodec.c190 expand_encodebuffer(MultibyteEncodeBuffer *buf, Py_ssize_t esize) in expand_encodebuffer() argument
197 incsize = (esize < (orgsize >> 1) ? (orgsize >> 1) | 1 : esize); in expand_encodebuffer()
232 Py_ssize_t esize, start, end; in multibytecodec_encerror() local
237 esize = e; in multibytecodec_encerror()
246 esize = (Py_ssize_t)buf->inpos; in multibytecodec_encerror()
295 buf->inpos += esize; in multibytecodec_encerror()
300 end = start + esize; in multibytecodec_encerror()
388 Py_ssize_t esize, start, end; in multibytecodec_decerror() local
392 esize = e; in multibytecodec_decerror()
400 esize = (Py_ssize_t)(buf->inbuf_end - buf->inbuf); in multibytecodec_decerror()
[all …]
/third_party/alsa-lib/src/topology/
Ddata.c469 int size, esize, off, num; in tplg_parse_data_hex() local
493 esize = elem->size + size; in tplg_parse_data_hex()
494 priv = realloc(priv, esize); in tplg_parse_data_hex()
497 esize = sizeof(*priv) + size; in tplg_parse_data_hex()
498 priv = calloc(1, esize); in tplg_parse_data_hex()
506 elem->size = esize; in tplg_parse_data_hex()
/third_party/gstreamer/gst_libav/ext/libav/
Dgstavcodecmap.c3223 guint nalsize, esize;
3244 nal_escape (dstp + 2, srcp + 2, nalsize, &esize);
3245 dstp[0] = esize >> 8;
3246 dstp[1] = esize & 0xff;
3247 dstp += esize + 2;
3258 nal_escape (dstp + 2, srcp + 2, nalsize, &esize);
3259 dstp[0] = esize >> 8;
3260 dstp[1] = esize & 0xff;
3261 dstp += esize + 2;
/third_party/ffmpeg/libavformat/
Davidec.c740 unsigned esize; in avi_read_header() local
758 tag1 = ff_get_bmp_header(pb, st, &esize); in avi_read_header()
769 if (esize == size-1 && (esize&1)) { in avi_read_header()
770 st->codecpar->extradata_size = esize - 10 * 4; in avi_read_header()
/third_party/libffi/src/
Ddlmalloc.c3493 size_t esize = granularity_align(nb + TOP_FOOT_SIZE + SIZE_T_ONE - asize); in sys_alloc() local
3494 if (esize < HALF_MAX_SIZE_T) { in sys_alloc()
3495 char* end = (char*)CALL_MORECORE(esize); in sys_alloc()
3497 asize += esize; in sys_alloc()
/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/
DSDL_malloc.c3534 size_t esize = in sys_alloc() local
3538 if (esize < HALF_MAX_SIZE_T) { in sys_alloc()
3539 char *end = (char *) CALL_MORECORE(esize); in sys_alloc()
3541 asize += esize; in sys_alloc()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86InstrFormats.td234 class EVEX_CD8<int esize, CD8VForm form> {
235 int CD8_EltSize = !srl(esize, 3);
/third_party/toybox/toys/pending/
Dbc.c873 void bc_vec_init(BcVec *v, size_t esize, BcVecFree dtor) { in bc_vec_init() argument
874 v->size = esize; in bc_vec_init()
878 v->v = xmalloc(esize * BC_VEC_START_CAP); in bc_vec_init()
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h42156 unsigned int esize; member