Home
last modified time | relevance | path

Searched refs:snum (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_div.c268 BIGNUM *tmp, *snum, *sdiv, *res; in bn_div_fixed_top() local
283 snum = BN_CTX_get(ctx); in bn_div_fixed_top()
300 if (!(bn_lshift_fixed_top(snum, num, norm_shift))) in bn_div_fixed_top()
304 num_n = snum->top; in bn_div_fixed_top()
308 if (bn_wexpand(snum, div_n + 1) == NULL) in bn_div_fixed_top()
310 memset(&(snum->d[num_n]), 0, (div_n - num_n + 1) * sizeof(BN_ULONG)); in bn_div_fixed_top()
311 snum->top = num_n = div_n + 1; in bn_div_fixed_top()
319 wnum = &(snum->d[loop]); in bn_div_fixed_top()
320 wnumtop = &(snum->d[num_n - 1]); in bn_div_fixed_top()
446 snum->neg = num_neg; in bn_div_fixed_top()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11modes.c587 int snum, screen, screencount; in X11_InitModes() local
658 for (snum = 0; snum < screencount; ++snum) { in X11_InitModes()
669 if (snum == 0) { in X11_InitModes()
671 } else if (snum == DefaultScreen(data->display)) { in X11_InitModes()
674 screen = snum; in X11_InitModes()
/third_party/gstreamer/gstplugins_good/gst/matroska/
Dmatroska-parse.c1715 gint64 snum; in gst_matroska_parse_parse_blockgroup_or_simpleblock() local
1718 if ((r = gst_matroska_ebmlnum_sint (data, size, &snum)) < 0) in gst_matroska_parse_parse_blockgroup_or_simpleblock()
1722 lace_size[n] = lace_size[n - 1] + snum; in gst_matroska_parse_parse_blockgroup_or_simpleblock()
Dmatroska-demux.c4519 gint64 snum; in gst_matroska_demux_parse_blockgroup_or_simpleblock() local
4522 if ((r = gst_matroska_ebmlnum_sint (data, size, &snum)) < 0) in gst_matroska_demux_parse_blockgroup_or_simpleblock()
4526 lace_size[n] = lace_size[n - 1] + snum; in gst_matroska_demux_parse_blockgroup_or_simpleblock()
/third_party/ffmpeg/libavformat/
Dmatroskadec.c3172 int64_t snum; in matroska_parse_laces() local
3174 r = matroska_ebmlnum_sint(matroska, pb, &snum); in matroska_parse_laces()
3177 if (lace_size[n - 1] + snum > (uint64_t)INT_MAX) in matroska_parse_laces()
3180 lace_size[n] = lace_size[n - 1] + snum; in matroska_parse_laces()
/third_party/toybox/toys/pending/
Dbc.c2403 BcNum *dnum = bc_vec_item(d, i), *snum = bc_vec_item(s, i); in bc_array_copy() local
2404 bc_num_createCopy(dnum, snum); in bc_array_copy()