Home
last modified time | relevance | path

Searched refs:bsize (Results 1 – 25 of 106) sorted by relevance

12345

/third_party/mksh/
Dshf.c54 ssize_t bsize = in shf_open() local
60 shf = alloc(sizeof(struct shf) + bsize, ATEMP); in shf_open()
63 shf->bsize = bsize; in shf_open()
131 ssize_t bsize = in shf_fdopen() local
137 if (bsize) { in shf_fdopen()
138 shf->buf = alloc(bsize, ATEMP); in shf_fdopen()
143 shf = alloc(sizeof(struct shf) + bsize, ATEMP); in shf_fdopen()
151 shf->rbsize = bsize; in shf_fdopen()
153 shf->wbsize = sflags & SHF_UNBUF ? 0 : bsize; in shf_fdopen()
156 shf->bsize = bsize; in shf_fdopen()
[all …]
/third_party/ltp/testcases/kernel/fs/doio/
Ddatapid.c84 int datapidgen(int pid, char *buffer, int bsize, int offset) in datapidgen() argument
97 num_full_words = bsize / NBPW; in datapidgen()
118 for (; boff < (NBPW - cnt) && boff < bsize; boff++, chr++) { in datapidgen()
127 num_full_words = (bsize - boff) / NBPW; in datapidgen()
153 if (cnt = ((bsize - boff) % NBPW)) { in datapidgen()
163 for (tmp = 0; tmp < cnt && boff < bsize; tmp++, chr++) { in datapidgen()
168 return bsize; in datapidgen()
181 int datapidchk(int pid, char *buffer, int bsize, int offset, char **errmsg) in datapidchk() argument
198 num_full_words = bsize / NBPW; in datapidchk()
213 for (; boff < (NBPW - cnt) && boff < bsize; boff++, chr++) { in datapidchk()
[all …]
Ddatabin.c44 void databingen(int mode, char *buffer, int bsize, int offset) in databingen() argument
51 memset(buffer, 0x55, bsize); in databingen()
55 memset(buffer, 0xf0, bsize); in databingen()
59 for (ind = 0; ind < bsize; ind++) in databingen()
65 memset(buffer, 0xff, bsize); in databingen()
69 memset(buffer, 0x0, bsize); in databingen()
73 for (ind = 0; ind < bsize; ind++) in databingen()
83 int databinchk(int mode, char *buffer, int bsize, int offset, char **errmsg) in databinchk() argument
106 for (cnt = 0; cnt < bsize; cnt++) { in databinchk()
116 sprintf(Errmsg, "all %d bytes match desired pattern", bsize); in databinchk()
[all …]
Ddataascii.c45 int dataasciigen(char *listofchars, char *buffer, int bsize, int offset) in dataasciigen() argument
55 total = offset + bsize; in dataasciigen()
70 return bsize; in dataasciigen()
73 int dataasciichk(char *listofchars, char *buffer, int bsize, in dataasciichk() argument
84 total = offset + bsize; in dataasciichk()
107 sprintf(Errmsg, "all %d bytes match desired pattern", bsize); in dataasciichk()
/third_party/node/deps/openssl/openssl/crypto/
Dparam_build.c237 const char *buf, size_t bsize) in OSSL_PARAM_BLD_push_utf8_string() argument
242 if (bsize == 0) { in OSSL_PARAM_BLD_push_utf8_string()
243 bsize = strlen(buf); in OSSL_PARAM_BLD_push_utf8_string()
244 } else if (bsize > INT_MAX) { in OSSL_PARAM_BLD_push_utf8_string()
249 pd = param_push(bld, key, bsize, bsize + 1, OSSL_PARAM_UTF8_STRING, secure); in OSSL_PARAM_BLD_push_utf8_string()
257 char *buf, size_t bsize) in OSSL_PARAM_BLD_push_utf8_ptr() argument
261 if (bsize == 0) { in OSSL_PARAM_BLD_push_utf8_ptr()
262 bsize = strlen(buf); in OSSL_PARAM_BLD_push_utf8_ptr()
263 } else if (bsize > INT_MAX) { in OSSL_PARAM_BLD_push_utf8_ptr()
267 pd = param_push(bld, key, bsize, sizeof(buf), OSSL_PARAM_UTF8_PTR, 0); in OSSL_PARAM_BLD_push_utf8_ptr()
[all …]
/third_party/openssl/crypto/
Dparam_build.c237 const char *buf, size_t bsize) in OSSL_PARAM_BLD_push_utf8_string() argument
242 if (bsize == 0) { in OSSL_PARAM_BLD_push_utf8_string()
243 bsize = strlen(buf); in OSSL_PARAM_BLD_push_utf8_string()
244 } else if (bsize > INT_MAX) { in OSSL_PARAM_BLD_push_utf8_string()
249 pd = param_push(bld, key, bsize, bsize + 1, OSSL_PARAM_UTF8_STRING, secure); in OSSL_PARAM_BLD_push_utf8_string()
257 char *buf, size_t bsize) in OSSL_PARAM_BLD_push_utf8_ptr() argument
261 if (bsize == 0) { in OSSL_PARAM_BLD_push_utf8_ptr()
262 bsize = strlen(buf); in OSSL_PARAM_BLD_push_utf8_ptr()
263 } else if (bsize > INT_MAX) { in OSSL_PARAM_BLD_push_utf8_ptr()
267 pd = param_push(bld, key, bsize, sizeof(buf), OSSL_PARAM_UTF8_PTR, 0); in OSSL_PARAM_BLD_push_utf8_ptr()
[all …]
/third_party/skia/third_party/externals/freetype/src/bdf/
Dbdfdrivr.c449 FT_Bitmap_Size* bsize = bdfface->available_sizes; in BDF_Face_Init() local
468 bsize->height = (FT_Short)( font->font_ascent + font->font_descent ); in BDF_Face_Init()
480 bsize->width = 0x7FFF; in BDF_Face_Init()
482 bsize->width )); in BDF_Face_Init()
485 bsize->width = FT_ABS( (FT_Short)( ( prop->value.l + 5 ) / 10 ) ); in BDF_Face_Init()
490 bsize->width = ( bsize->height * 2 + 1 ) / 3; in BDF_Face_Init()
504 bsize->size = 0x7FFF; in BDF_Face_Init()
506 bsize->size )); in BDF_Face_Init()
509 bsize->size = FT_MulDiv( FT_ABS( prop->value.l ), in BDF_Face_Init()
517 bsize->size = 0x7FFF; in BDF_Face_Init()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_dctdnoiz.c61 int bsize; // block size, 1<<n member
353 #define DEF_FILTER_FREQ_FUNCS(bsize) \ argument
354 static av_always_inline void filter_freq_##bsize(const float *src, int src_linesize, \
360 DECLARE_ALIGNED(32, float, tmp_block1)[bsize * bsize]; \
361 DECLARE_ALIGNED(32, float, tmp_block2)[bsize * bsize]; \
364 fdct##bsize##_1d(tmp_block1, src, 1, bsize, 1, src_linesize); \
365 fdct##bsize##_1d(tmp_block2, tmp_block1, bsize, 1, bsize, 1); \
367 for (i = 0; i < bsize*bsize; i++) { \
380 idct##bsize##_1d(tmp_block1, tmp_block2, 1, bsize, 1, bsize, 0); \
381 idct##bsize##_1d(dst, tmp_block1, dst_linesize, 1, bsize, 1, 1); \
[all …]
/third_party/gstreamer/gstplugins_good/gst/isomp4/
Dproperties.c48 prop_copy_ensure_buffer (guint8 ** buffer, guint64 * bsize, guint64 * offset, in prop_copy_ensure_buffer() argument
51 if (buffer && *bsize - *offset < size) { in prop_copy_ensure_buffer()
52 *bsize += size + 10 * 1024; in prop_copy_ensure_buffer()
53 *buffer = g_realloc (*buffer, *bsize); in prop_copy_ensure_buffer()
58 copy_func (void *prop, guint size, guint8 ** buffer, guint64 * bsize, in copy_func() argument
62 prop_copy_ensure_buffer (buffer, bsize, offset, size); in copy_func()
71 guint8 ** buffer, guint64 * bsize, guint64 * offset) { \
72 return copy_func (prop, sizeof (datatype) * size, buffer, bsize, offset);\
77 guint8 ** buffer, guint64 * bsize, guint64 * offset) { \
81 prop_copy_ ## name (prop[i], buffer, bsize, offset); \
Dproperties.h59 void prop_copy_ensure_buffer (guint8 ** buffer, guint64 * bsize, guint64 * offset, guin…
69 guint8 **buffer, guint64 *bsize, guint64 *offset);
71 guint8 **buffer, guint64 *bsize, guint64 *offset);
73 guint8 **buffer, guint64 *bsize, guint64 *offset);
75 guint8 **buffer, guint64 *bsize, guint64 *offset);
79 guint8 **buffer, guint64 *bsize, guint64 *offset);
/third_party/ffmpeg/libavcodec/
Dwmadec.c380 int block_len, bsize, n; in wma_window() local
385 bsize = s->frame_len_bits - s->block_len_bits; in wma_window()
387 s->fdsp->vector_fmul_add(out, in, s->windows[bsize], in wma_window()
392 bsize = s->frame_len_bits - s->prev_block_len_bits; in wma_window()
394 s->fdsp->vector_fmul_add(out + n, in + n, s->windows[bsize], in wma_window()
406 bsize = s->frame_len_bits - s->block_len_bits; in wma_window()
408 s->fdsp->vector_fmul_reverse(out, in, s->windows[bsize], block_len); in wma_window()
412 bsize = s->frame_len_bits - s->next_block_len_bits; in wma_window()
416 s->fdsp->vector_fmul_reverse(out + n, in + n, s->windows[bsize], in wma_window()
429 int n, v, a, ch, bsize; in wma_decode_block() local
[all …]
Dtwinvq.c332 int bsize = mtab->size / mtab->fmode[ftype].sub; in imdct_and_window() local
347 prev_buf = prev + (size - bsize) / 2; in imdct_and_window()
359 mdct->imdct_half(mdct, buf1 + bsize * j, in + bsize * j); in imdct_and_window()
361 tctx->fdsp->vector_fmul_window(out2, prev_buf + (bsize - wsize) / 2, in imdct_and_window()
362 buf1 + bsize * j, in imdct_and_window()
367 memcpy(out2, buf1 + bsize * j + wsize / 2, in imdct_and_window()
368 (bsize - wsize / 2) * sizeof(float)); in imdct_and_window()
370 out2 += ftype == TWINVQ_FT_MEDIUM ? (bsize - wsize) / 2 : bsize - wsize; in imdct_and_window()
372 prev_buf = buf1 + bsize * j + bsize / 2; in imdct_and_window()
544 int bsize = tctx->mtab->size / tctx->mtab->fmode[i].sub; in init_mdct_win() local
[all …]
/third_party/openssl/test/
Dpunycode_test.c151 unsigned int bsize = OSSL_NELEM(buffer); in test_punycode() local
155 buffer, &bsize))) in test_punycode()
160 if (!TEST_mem_eq(buffer, bsize * sizeof(*buffer), in test_punycode()
204 unsigned int bsize = OSSL_NELEM(buf) - 1; in test_puny_overrun() local
206 if (!TEST_false(ossl_punycode_decode(in, strlen(in), buf, &bsize))) { in test_puny_overrun()
207 if (TEST_mem_eq(buf, bsize * sizeof(*buf), out, sizeof(out))) in test_puny_overrun()
Dectest.c2613 int ret = 0, nid, bsize; in custom_generator_test() local
2632 bsize = (EC_GROUP_get_degree(group) + 7) / 8; in custom_generator_test()
2633 bsize = 1 + 2 * bsize; /* UNCOMPRESSED_POINT format */ in custom_generator_test()
2648 0, ctx), bsize) in custom_generator_test()
2649 || !TEST_ptr(b1 = OPENSSL_malloc(bsize)) in custom_generator_test()
2652 bsize, ctx), bsize) in custom_generator_test()
2665 0, ctx), bsize) in custom_generator_test()
2666 || !TEST_ptr(b2 = OPENSSL_malloc(bsize)) in custom_generator_test()
2669 bsize, ctx), bsize) in custom_generator_test()
2671 || !TEST_mem_eq(b1, bsize, b2, bsize)) in custom_generator_test()
[all …]
/third_party/ltp/testcases/kernel/syscalls/mlock2/
Dmlock203.c29 unsigned long bsize, asize1, asize2; in verify_mlock2() local
31 SAFE_FILE_LINES_SCANF("/proc/self/status", "VmLck: %lu", &bsize); in verify_mlock2()
47 if ((asize1 - bsize) * 1024 != pgsz) { in verify_mlock2()
50 (asize1 - bsize) * 1024, pgsz); in verify_mlock2()
/third_party/skia/third_party/externals/freetype/src/pcf/
Dpcfread.c1572 FT_Bitmap_Size* bsize = root->available_sizes; in pcf_load_font() local
1579 bsize->height = face->accel.maxbounds.ascent << 6; in pcf_load_font()
1589 bsize->height = 0x7FFF; in pcf_load_font()
1591 bsize->height )); in pcf_load_font()
1594 bsize->height = FT_ABS( (FT_Short)( face->accel.fontAscent + in pcf_load_font()
1606 bsize->width = 0x7FFF; in pcf_load_font()
1608 bsize->width )); in pcf_load_font()
1611 bsize->width = FT_ABS( (FT_Short)( ( prop->value.l + 5 ) / 10 ) ); in pcf_load_font()
1616 bsize->width = ( bsize->height * 2 + 1 ) / 3; in pcf_load_font()
1629 bsize->size = 0x7FFF; in pcf_load_font()
[all …]
/third_party/gstreamer/gstreamer/libs/gst/base/
Dgstadapter.c326 gsize bsize, csize; in copy_into_unchecked() local
338 bsize = gst_buffer_get_size (buf); in copy_into_unchecked()
339 while (G_UNLIKELY (skip >= bsize)) { in copy_into_unchecked()
340 skip -= bsize; in copy_into_unchecked()
342 bsize = gst_buffer_get_size (buf); in copy_into_unchecked()
345 csize = MIN (bsize - skip, size); in copy_into_unchecked()
347 G_GSIZE_FORMAT, bsize, skip, csize); in copy_into_unchecked()
357 bsize = gst_buffer_get_size (buf); in copy_into_unchecked()
358 if (G_LIKELY (bsize > 0)) { in copy_into_unchecked()
359 csize = MIN (bsize, size); in copy_into_unchecked()
[all …]
/third_party/openssl/include/openssl/
Dparam_build.h52 const char *buf, size_t bsize);
54 char *buf, size_t bsize);
56 const void *buf, size_t bsize);
58 void *buf, size_t bsize);
/third_party/node/deps/openssl/openssl/include/openssl/
Dparam_build.h52 const char *buf, size_t bsize);
54 char *buf, size_t bsize);
56 const void *buf, size_t bsize);
58 void *buf, size_t bsize);
/third_party/skia/third_party/externals/freetype/src/winfonts/
Dwinfnt.c809 FT_Bitmap_Size* bsize = root->available_sizes; in FNT_Face_Init() local
813 bsize->width = (FT_Short)font->header.avg_width; in FNT_Face_Init()
814 bsize->height = (FT_Short)( font->header.pixel_height + in FNT_Face_Init()
816 bsize->size = font->header.nominal_point_size << 6; in FNT_Face_Init()
826 bsize->y_ppem = FT_MulDiv( bsize->size, y_res, 72 ); in FNT_Face_Init()
827 bsize->y_ppem = FT_PIX_ROUND( bsize->y_ppem ); in FNT_Face_Init()
837 if ( bsize->y_ppem > ( font->header.pixel_height << 6 ) ) in FNT_Face_Init()
841 bsize->y_ppem = font->header.pixel_height << 6; in FNT_Face_Init()
842 bsize->size = FT_MulDiv( bsize->y_ppem, 72, y_res ); in FNT_Face_Init()
845 bsize->x_ppem = FT_MulDiv( bsize->size, x_res, 72 ); in FNT_Face_Init()
[all …]
/third_party/cups-filters/filter/pdftopdf/
Dqpdf_cm.cc19 const int bsize=2048; in load_file() local
24 ret.resize(pos+bsize); in load_file()
25 int res=fread(&ret[pos],1,bsize,f); in load_file()
27 if (res<bsize) { in load_file()
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtptheorapay.c427 guint bsize; in gst_rtp_theora_pay_finish_headers() local
429 bsize = gst_buffer_get_size (buf); in gst_rtp_theora_pay_finish_headers()
430 length += bsize; in gst_rtp_theora_pay_finish_headers()
439 bsize >>= 7; in gst_rtp_theora_pay_finish_headers()
440 } while (bsize); in gst_rtp_theora_pay_finish_headers()
478 guint bsize, size, temp; in gst_rtp_theora_pay_finish_headers() local
485 bsize = gst_buffer_get_size (buf); in gst_rtp_theora_pay_finish_headers()
491 bsize >>= 7; in gst_rtp_theora_pay_finish_headers()
492 } while (bsize); in gst_rtp_theora_pay_finish_headers()
495 bsize = gst_buffer_get_size (buf); in gst_rtp_theora_pay_finish_headers()
[all …]
Dgstrtpvorbispay.c423 guint bsize; in gst_rtp_vorbis_pay_finish_headers() local
425 bsize = gst_buffer_get_size (buf); in gst_rtp_vorbis_pay_finish_headers()
426 length += bsize; in gst_rtp_vorbis_pay_finish_headers()
435 bsize >>= 7; in gst_rtp_vorbis_pay_finish_headers()
436 } while (bsize); in gst_rtp_vorbis_pay_finish_headers()
474 guint bsize, size, temp; in gst_rtp_vorbis_pay_finish_headers() local
481 bsize = gst_buffer_get_size (buf); in gst_rtp_vorbis_pay_finish_headers()
487 bsize >>= 7; in gst_rtp_vorbis_pay_finish_headers()
488 } while (bsize); in gst_rtp_vorbis_pay_finish_headers()
491 bsize = gst_buffer_get_size (buf); in gst_rtp_vorbis_pay_finish_headers()
[all …]
/third_party/skia/third_party/externals/freetype/src/gzip/
Dzutil.c86 ulg bsize = (ulg)items*size; in zcalloc() local
91 if (bsize < 65520L) { in zcalloc()
92 buf = farmalloc(bsize); in zcalloc()
95 buf = farmalloc(bsize + 16L); in zcalloc()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dgsttagdemux.c378 guint out_size, bsize; in gst_tag_demux_trim_buffer() local
383 bsize = out_size = gst_buffer_get_size (buf); in gst_tag_demux_trim_buffer()
389 *buf_size = bsize; in gst_tag_demux_trim_buffer()
433 if (out_size != bsize || !is_writable) { in gst_tag_demux_trim_buffer()
439 bsize, boffset, out_size, out_offset); in gst_tag_demux_trim_buffer()
455 bsize, boffset, out_size, out_offset); in gst_tag_demux_trim_buffer()
462 bsize, boffset, out_size, out_offset); in gst_tag_demux_trim_buffer()
1055 gsize bsize; in gst_tag_demux_pull_end_tag() local
1084 bsize = gst_buffer_get_size (buffer); in gst_tag_demux_pull_end_tag()
1086 if (bsize < klass->min_end_size) { in gst_tag_demux_pull_end_tag()
[all …]

12345